From 98d64b943026cf6d843df34374cf24b6763a237a Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Wed, 6 Aug 2025 12:23:26 +0100 Subject: [PATCH] added pps matrix to test data --- asset_list/hubspot/config.py | 2 +- asset_list/hubspot/prepare_for_hubspot.py | 45 +- backend/Funding.py | 332 +- backend/app/plan/schemas.py | 7 +- backend/tests/test_funding.py | 220 +- .../ECO4_Partial_Project_Scores_Matrix_v6.csv | 16565 ++++++++++++++++ 6 files changed, 17089 insertions(+), 82 deletions(-) create mode 100644 recommendations/tests/test_data/ECO4_Partial_Project_Scores_Matrix_v6.csv diff --git a/asset_list/hubspot/config.py b/asset_list/hubspot/config.py index 403bead4..981a8045 100644 --- a/asset_list/hubspot/config.py +++ b/asset_list/hubspot/config.py @@ -1,6 +1,6 @@ from enum import IntEnum, Enum -CRM_PIPELINE_NAME = 'Operations - Housing Associations' +CRM_PIPELINE_NAME = 'Operations - Social Housing' class HubspotProcessStatus(IntEnum): diff --git a/asset_list/hubspot/prepare_for_hubspot.py b/asset_list/hubspot/prepare_for_hubspot.py index 56ce37ed..03a746f5 100644 --- a/asset_list/hubspot/prepare_for_hubspot.py +++ b/asset_list/hubspot/prepare_for_hubspot.py @@ -44,26 +44,27 @@ def app(): """ # inputs: - reconcile_programme = True # If True, the hubspot upload will include all properties with a project code - customer_domain = "https://southend.gov.uk" - installer_name = "J & J CRUMP" + reconcile_programme = False # If True, the hubspot upload will include all properties with a project code + customer_domain = "https://shgroup.org.uk" + installer_name = "SCIS" asset_list_filepath = ( - "/Users/khalimconn-kowlessar/Documents/hestia/Customers/Southend/July 2025 Programme/SOUTHEND - RYAN - " - "Standardised 2.xlsx" + "/Users/khalimconn-kowlessar/Downloads/20250701 Optivo Southern - Standardised.xlsx" ) - asset_list_sheet_name = "Standardised Asset List" + asset_list_sheet_name = "Solar Route Revised (100)" asset_list_header = 0 - contact_details_filepath = None - contacts_sheet_name = "Sheet 1" - contacts_landlord_property_id = "UPRN" - contacts_phone_number_column = "phone_number" - contacts_secondary_phone_number_column = "secondary_phone_number" - contacts_secondary_contact_full_name = "secondary_contact_full_name" - contacts_email_column = "email" - contacts_fullname_column = "fullname" - contacts_firstname_column = "First Name" - contacts_lastname_column = "Last Name" + contact_details_filepath = ( + "/Users/khalimconn-kowlessar/Downloads/southern_optivo_solar_pv.xlsx" + ) + contacts_sheet_name = "Sheet1" + contacts_landlord_property_id = "landlord_property_id" + contacts_phone_number_column = "Primary phone number" + contacts_secondary_phone_number_column = "Secondary phone number" + contacts_secondary_contact_full_name = None + contacts_email_column = "Email Address" + contacts_fullname_column = None + contacts_firstname_column = "Name" + contacts_lastname_column = None existing_programme_filepath = None @@ -89,6 +90,18 @@ def app(): reconcile_programme=reconcile_programme ) + for x in asset_list.hubspot_data["Phone "].values: + normalize_uk_phone(x) + + asset_list.hubspot_data["Phone "] = ( + asset_list.hubspot_data["Phone "].astype("Int64").astype(str).apply(normalize_uk_phone) + ) + asset_list.hubspot_data["Secondary Phone "] = asset_list.hubspot_data[ + "Secondary Phone "].astype( + "Int64").astype( + str).apply( + normalize_uk_phone) + # Remove the existing programme # existing_programme = pd.read_csv(existing_programme_filepath, encoding="utf-8-sig") # asset_list.hubspot_data = asset_list.hubspot_data[ diff --git a/backend/Funding.py b/backend/Funding.py index 020cc20a..d3283982 100644 --- a/backend/Funding.py +++ b/backend/Funding.py @@ -3,13 +3,14 @@ import pandas as pd import numpy as np from typing import List -from backend.app.plan.schemas import HousingType +from backend.app.plan.schemas import HousingType, WALL_INSULATION_MEASURES, ROOF_INSULATION_MEASURES class EligibilityCaveats(Enum): TENANT_ON_BENEFITS_OR_LOW_INCOME = "tenant_on_benefits_or_low_income" INNOVATION_REQUIRED = "innovation_required" SOLAR_NEEDS_HEATING = "solar_needs_heating" + NEEDS_INSULATION_TO_MINIMUM_STANDARDS = "needs_insulation_to_minimum_standards" class Funding: @@ -46,6 +47,12 @@ class Funding: self.gbis_eligible = False self.gbis_eligibility_caveats = [] + # Funding calculation variables + self.full_project_abs = None + self.eco4_funding = None + + self.partial_project_abs = None + # ----------------------- # Utility Helpers # ----------------------- @@ -111,8 +118,10 @@ class Funding: # Private Rented Sector # ----------------------- - def eco4_prs_eligibility(self, starting_sap: int, ending_sap: int, measure_types: List, mainheat_description: str, - heating_control_description: str): + def eco4_prs_eligibility( + self, starting_sap: int, ending_sap: int, measure_types: List, has_solar: bool, solar_eligible: bool + ): + """ ECO4 PRS eligibility: - EPC E–G @@ -122,27 +131,30 @@ class Funding: meets_epc = starting_sap <= 54 # EPC E–G meets_upgrade_target = self._meets_upgrade_target(starting_sap, ending_sap) + if not meets_epc or not meets_upgrade_target: + self.eco4_eligible = False + self.eco4_eligibility_caveats = [] + return + + if has_solar and not solar_eligible: + self.eco4_eligible = False + self.eco4_eligibility_caveats.append(EligibilityCaveats.SOLAR_NEEDS_HEATING) + return + has_swi = "internal_wall_insulation" in measure_types or "external_wall_insulation" in measure_types has_renewable = "air_source_heat_pump" in measure_types or "ground_source_heat_pump" in measure_types has_ftch = "first_time_central_heating" in measure_types has_dhc = "district_heating_connection" in measure_types - has_eligible_electric_heating = ( - any(x in mainheat_description for x in [ - "air source heat pump", "ground source heat pump", "boiler and radiators, electric" - ]) or ( - ("electric storage heaters" in mainheat_description) - and (heating_control_description.lower() == "controls for high heat retention storage heaters") - ) - ) - - solar_counts_as_renewable = has_eligible_electric_heating and "solar_pv" in measure_types - if meets_upgrade_target and meets_epc and ( - has_swi or has_renewable or has_ftch or has_dhc or solar_counts_as_renewable + has_swi or has_renewable or has_ftch or has_dhc or solar_eligible ): self.eco4_eligible = True self.eco4_eligibility_caveats.append(EligibilityCaveats.TENANT_ON_BENEFITS_OR_LOW_INCOME) + return + + self.eco4_eligible = False + self.eco4_eligibility_caveats = [] def gbis_prs_eligibility(self, starting_sap: int, council_tax_band: str, measure_types: List): """ @@ -152,19 +164,26 @@ class Funding: """ gbis_measures = { "general": [ + # Cannot do CWI "internal_wall_insulation", "external_wall_insulation", "flat_roof_insulation", "suspended_floor_insulation", - "room_roof_insulation", "solid_floor_insulation", "park_home_insulation" + "room_roof_insulation", "solid_floor_insulation" ], "low_income": [ "internal_wall_insulation", "external_wall_insulation", "flat_roof_insulation", "suspended_floor_insulation", "room_roof_insulation", "solid_floor_insulation", - "cavity_wall_insulation", "loft_insulation", "park_home_insulation" + "cavity_wall_insulation", "loft_insulation" ] } meets_epc = starting_sap <= 69 # EPC D–G + is_single_measure = len(measure_types) == 1 + + if not is_single_measure or not meets_epc: + self.gbis_eligible = False + self.gbis_eligibility_caveats = [] + return # General route if meets_epc and council_tax_band in ["A", "B", "C", "D", "E"]: @@ -180,14 +199,24 @@ class Funding: # Social Housing # ----------------------- - def eco4_sh_eligibility(self, starting_sap: int, ending_sap: int, measure_types: List, has_innovation: bool, - innovation_measures: List): + def eco4_sh_eligibility( + self, + starting_sap: int, + ending_sap: int, + has_innovation: bool, + has_solar: bool, + solar_eligible: bool + ): """ ECO4 Social Housing eligibility. - EPC E–G: eligible, no income check. - EPC D: innovation measure required. If solar PV is the innovation measure, must also install ASHP or HHRSH. """ + if has_solar and not solar_eligible: + # The package contins solar PV but it doesn't meet the eligibility requirements + return + meets_epc = starting_sap <= 69 meets_upgrade_target = self._meets_upgrade_target(starting_sap, ending_sap) @@ -196,43 +225,53 @@ class Funding: # EPC D innovation rule if 55 <= starting_sap <= 68: # EPC D + + # If we don't meet the innovation requirements, we're not eligible if not has_innovation: self.eco4_eligible = False self.eco4_eligibility_caveats.append(EligibilityCaveats.INNOVATION_REQUIRED) return - if "solar_pv" in innovation_measures and not any( - m in measure_types for m in ["air_source_heat_pump", "high_heat_retention_storage_heater"] - ): - self.eco4_eligible = False - self.eco4_eligibility_caveats.append(EligibilityCaveats.SOLAR_NEEDS_HEATING) - return + self.eco4_eligible = True + self.eco4_eligibility_caveats = [] self.eco4_eligible = True + self.eco4_eligibility_caveats = [] - def gbis_sh_eligibility(self, starting_sap: int, measure_types: List, has_innovation: bool, - innovation_measures: List): + def gbis_sh_eligibility(self, starting_sap: int, measure_types: List, has_innovation: bool): """ GBIS Social Housing eligibility. - - EPC E–G: insulation measures OK. - - EPC D: innovation measure required (same solar PV + heating rule). + - EPC E–G: single insulation measure + - EPC D: single insulation, innovation measure """ - meets_epc = starting_sap <= 69 - if not meets_epc: + + meets_epc = starting_sap <= 69 # EPC D–G + is_single_measure = len(measure_types) == 1 + # Check if has a valid measure + insulation_measures = [ + 'internal_wall_insulation', 'external_wall_insulation', 'cavity_wall_insulation', + 'loft_insulation', 'flat_roof_insulation', 'room_roof_insulation', + 'suspended_floor_insulation', 'solid_floor_insulation', + ] + has_valid_measures = any(m in measure_types for m in insulation_measures) + + if not is_single_measure or not meets_epc or not has_valid_measures: + self.gbis_eligible = False + self.gbis_eligibility_caveats = [] return if 55 <= starting_sap <= 68: # EPC D + # Since it's single measure if has_innovation is true, the single insulation measure + # must be the innovation measure if not has_innovation: self.gbis_eligible = False self.gbis_eligibility_caveats.append(EligibilityCaveats.INNOVATION_REQUIRED) return - if "solar_pv" in innovation_measures and not any( - m in measure_types for m in ["air_source_heat_pump", "high_heat_retention_storage_heater"] - ): - self.gbis_eligible = False - self.gbis_eligibility_caveats.append(EligibilityCaveats.SOLAR_NEEDS_HEATING) - return + # If we don't have an innovation measure, we're not eligible + self.gbis_eligible = False + self.gbis_eligibility_caveats.append(EligibilityCaveats.SOLAR_NEEDS_HEATING) + return self.gbis_eligible = True @@ -253,27 +292,212 @@ class Funding: return data["Cost Savings"].values[0] + @staticmethod + def get_starting_ending_uvalues(current_uvalue: float) -> tuple[str, str]: + """ + Returns the closest starting U-value and appropriate ending U-value for solid wall insulation. + + - If current_uvalue is closest to 0.45, assume the improvement target is 0.21. + - Otherwise, assume the target is 0.30. + """ + possible_starting_u_values = [2.00, 1.70, 1.00, 0.60, 0.45] + closest_starting = min(possible_starting_u_values, key=lambda x: abs(x - current_uvalue)) + ending_uvalue = 0.21 if closest_starting == 0.45 else 0.30 + + return f"{closest_starting:.2f}", f"{ending_uvalue:.2f}" + + def calculate_partial_project_abs( + self, + measure_type: str, + current_wall_uvalue: float = None, + is_partial: bool = False, + existing_li_thickness: float = None, + # is_roof_insulated: bool = False + ): + """ + Calculate the partial project ABS score for a single measure. + """ + df = self.partial_project_scores_matrix[ + (self.partial_project_scores_matrix["Total Floor Area Band"] == self.floor_area_band) & + (self.partial_project_scores_matrix["Starting Band"] == self.starting_sap_band) + ] + + if measure_type == "internal_wall_insulation": + if current_wall_uvalue is None: + raise ValueError("current_wall_uvalue is required for IWI") + + starting_str, ending_str = self.get_starting_ending_uvalues(current_wall_uvalue) + measure_code = f"IWI_solid_{starting_str}_{ending_str}" + pps = df[df["Measure_Type"] == measure_code] + + if pps.shape[0] != 1: + raise ValueError(f"Invalid IWI category: {measure_code}") + return pps.squeeze()["Cost Savings"] + + if measure_type == "external_wall_insulation": + if current_wall_uvalue is None: + raise ValueError("current_wall_uvalue is required for EWI") + + starting_str, ending_str = self.get_starting_ending_uvalues(current_wall_uvalue) + measure_code = f"EWI_solid_{starting_str}_{ending_str}" + pps = df[df["Measure_Type"] == measure_code] + + if pps.shape[0] != 1: + raise ValueError(f"Invalid EWI category: {measure_code}") + return pps.squeeze()["Cost Savings"] + + if measure_type == "cavity_wall_insulation": + measure_code = "CWI_partial_fill" if is_partial else "CWI_0.033" + pps = df[df["Measure_Type"] == measure_code] + + if pps.shape[0] != 1: + raise ValueError(f"Invalid CWI category: {measure_code}") + return pps.squeeze()["Cost Savings"] + + if measure_type == "loft_insulation": + if existing_li_thickness is None: + raise ValueError("existing_li_thickness is required for LI") + + measure_code = "LI_lessequal100" if existing_li_thickness <= 100 else "LI_greater100" + pps = df[df["Measure_Type"] == measure_code] + + if pps.shape[0] != 1: + raise ValueError(f"Invalid LI category: {measure_code}") + return pps.squeeze()["Cost Savings"] + + if measure_type == "flat_roof_insulation": + pps = df[df["Measure_Type"] == "FRI"] + if pps.shape[0] != 1: + raise ValueError("Invalid FRI category") + return pps.squeeze()["Cost Savings"] + + if measure_type == "room_roof_insulation": + # Use the more conservative score (unin is usually lower) + # code = "RIRI_res_unin" if not is_roof_insulated else "RIRI_res_in" + code = "RIRI_res_unin" + pps = df[df["Measure_Type"] == code] + if pps.shape[0] != 1: + raise ValueError(f"Invalid RIRI category: {code}") + return pps.squeeze()["Cost Savings"] + + if measure_type == "suspended_floor_insulation": + pps = df[df["Measure_Type"] == "UFI"] + if pps.shape[0] != 1: + raise ValueError("Invalid UFI category") + return pps.squeeze()["Cost Savings"] + + if measure_type == "solid_floor_insulation": + pps = df[df["Measure_Type"] == "SFI"] + if pps.shape[0] != 1: + raise ValueError("Invalid SFI category") + return pps.squeeze()["Cost Savings"] + + raise ValueError(f"Invalid measure type for partial project ABS calculation: {measure_type}") + # ----------------------- # Main Entry Point # ----------------------- + @staticmethod + def check_solar_eligible_heating_system(mainheat_description, heating_control_description): + """ + Checks if the main heating system is eligible for solar PV funding. + :param mainheat_description: Describes the primary heating system + :param heating_control_description: Heating controls associated to the primary heating system + :return: + """ + + return ( + any(x in mainheat_description.lower() for x in [ + "air source heat pump", "ground source heat pump", "boiler and radiators, electric" + ]) or ( + ("electric storage heaters" in mainheat_description) + and (heating_control_description.lower() == "controls for high heat retention storage heaters") + ) + ) + + def check_solar_eligibility( + self, + measure_types, + mainheat_description, + heating_control_description, + has_wall_insulation_recommendation: bool = False, + has_roof_insulation_recommendation: bool = False, + ): + """ + Because of the various pre-requisites for solar, we have a self-contained function to check for + eligibility + + Returns a tuple of booleans (has_solar, solar_eligible) + """ + + if "solar_pv" not in measure_types: + return False, False + + # 1) We check if there is an eligible heating system in place + has_eligibile_heating = self.check_solar_eligible_heating_system( + mainheat_description, heating_control_description + ) + + if not has_eligibile_heating: + # We check if there is a recommendation for an ASHP or HHRSH + if ("air_source_heat_pump" not in measure_types) and ( + "high_heat_retention_storage_heater" not in measure_types): + return True, False + + # 2) We check if there is a wall insulation measure for this property. If so, we make sure + # we have a wall insulation recommendation in this package + if has_wall_insulation_recommendation: + # Make sure we have a wall insulation recommendation + if not any(m in measure_types for m in WALL_INSULATION_MEASURES): + return True, False + + # 3) We check if there is a roof insulation measure for this property. If so, we make sure + # we have a roof insulation recommendation in this package + if has_roof_insulation_recommendation: + # Make sure we have a roof insulation recommendation + if not any(m in measure_types for m in ROOF_INSULATION_MEASURES): + return True, False + + return True, True + def check_funding( - self, measures: List[dict], + self, + measures: List[dict], starting_sap: int, ending_sap: int, floor_area: float, mainheat_description: str, heating_control_description: str, is_cavity: bool, - council_tax_band: str = None + current_wall_uvalue: float, + is_partial: False, + existing_li_thickness: float, + council_tax_band: str = None, + has_wall_insulation_recommendation: bool = False, + has_roof_insulation_recommendation: bool = False, ): """ Given a list of measures, check ECO4/GBIS eligibility. + + Because measures like solar PV are subject to the minimum insulation requirements and we can get + exemptions on floor insulation recommendations, if has_wall_insulation_recommendation or + has_roof_insulation_recommendation are true, we check that the measures package contain a wall or roof + insulation measure otherwise solar PV isn't eligible """ # Normalize measures measure_types, has_innovation, innovation_measures = self._split_measures(measures) + # Determine if we have a solar eligible heating system + has_solar, solar_eligible = self.check_solar_eligibility( + measure_types, + mainheat_description, + heating_control_description, + has_wall_insulation_recommendation, + has_roof_insulation_recommendation, + ) + # Track EPC bands and floor area self.starting_sap_band = self.get_sap_band(starting_sap) self.ending_sap_band = self.get_sap_band(ending_sap) @@ -281,26 +505,36 @@ class Funding: if self.tenure == "Private": # ECO4 PRS - self.eco4_prs_eligibility(starting_sap, ending_sap, measure_types, mainheat_description, - heating_control_description) + self.eco4_prs_eligibility(starting_sap, ending_sap, measure_types, has_solar, solar_eligible) # GBIS PRS self.gbis_prs_eligibility(starting_sap, council_tax_band or "", measure_types) if self.eco4_eligible: - eco4_abs = self.calculate_full_project_abs() - eco4_funding = eco4_abs * (self.private_cavity_abs_rate if is_cavity else self.private_solid_abs_rate) - return {"eco4_funding": eco4_funding} + self.full_project_abs = self.calculate_full_project_abs() + self.eco4_funding = self.full_project_abs * ( + self.private_cavity_abs_rate if is_cavity else self.private_solid_abs_rate) + elif self.tenure == "Social": # ECO4 Social - self.eco4_sh_eligibility(starting_sap, ending_sap, measure_types, has_innovation, innovation_measures) + self.eco4_sh_eligibility(starting_sap, ending_sap, has_innovation, has_solar, solar_eligible) + # GBIS Social - self.gbis_sh_eligibility(starting_sap, measure_types, has_innovation, innovation_measures) + self.gbis_sh_eligibility(starting_sap, measure_types, has_innovation) if self.eco4_eligible: - eco4_abs = self.calculate_full_project_abs() - eco4_funding = eco4_abs * (self.social_cavity_abs_rate if is_cavity else self.social_solid_abs_rate) - return {"eco4_funding": eco4_funding} + # Calculate the full project ABS for ECO4 + self.full_project_abs = self.calculate_full_project_abs() + self.eco4_funding = self.full_project_abs * ( + self.social_cavity_abs_rate if is_cavity else self.social_solid_abs_rate + ) + + if self.gbis_eligible: + # Calculate the partial project score - this is dependent on the measure + self.partial_project_abs = self.calculate_partial_project_abs( + measure_types[0], current_wall_uvalue, is_partial, existing_li_thickness, + ) + else: raise NotImplementedError("Only 'Private' and 'Social' tenures are supported.") diff --git a/backend/app/plan/schemas.py b/backend/app/plan/schemas.py index 9ed6f978..36d847eb 100644 --- a/backend/app/plan/schemas.py +++ b/backend/app/plan/schemas.py @@ -8,9 +8,10 @@ TYPICAL_MEASURE_TYPES = [ "secondary_heating", "solar_pv" ] -SPECIFIC_MEASURES = [ - "internal_wall_insulation", "external_wall_insulation", "cavity_wall_insulation", - "loft_insulation", "flat_roof_insulation", "room_roof_insulation", +WALL_INSULATION_MEASURES = ["internal_wall_insulation", "external_wall_insulation", "cavity_wall_insulation"] +ROOF_INSULATION_MEASURES = ["loft_insulation", "flat_roof_insulation", "room_roof_insulation"] + +SPECIFIC_MEASURES = WALL_INSULATION_MEASURES + ROOF_INSULATION_MEASURES + [ "suspended_floor_insulation", "solid_floor_insulation", "boiler_upgrade", "high_heat_retention_storage_heater", "air_source_heat_pump", "secondary_heating", "solar_pv", "double_glazing", "secondary_glazing", diff --git a/backend/tests/test_funding.py b/backend/tests/test_funding.py index 7e9bc3b4..8df90f23 100644 --- a/backend/tests/test_funding.py +++ b/backend/tests/test_funding.py @@ -30,7 +30,11 @@ def mock_project_scores_matrix(): @pytest.fixture def mock_partial_scores_matrix(): - return pd.DataFrame([{"dummy": "data"}]) # not used for eligibility tests yet + df = pd.read_csv("recommendations/tests/test_data/ECO4_Partial_Project_Scores_Matrix_v6.csv") + df.columns = ['Measure category', 'Measure_Type', 'Pre_Main_Heating_Source', + 'Post_Main_Heating_Source', 'Total Floor Area Band', 'Starting Band', + 'Average Treatable Factor', 'Cost Savings', 'SAP Savings'] + return df @pytest.fixture @@ -69,7 +73,10 @@ def test_eco4_prs_eligible_with_swi(mock_project_scores_matrix, mock_partial_sco mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", is_cavity=True, - council_tax_band="B" + council_tax_band="B", + is_partial=False, + existing_li_thickness=0, + current_wall_uvalue=2 ) assert funding.eco4_eligible @@ -98,7 +105,10 @@ def test_eco4_prs_not_eligible_high_epc(mock_project_scores_matrix, mock_partial mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", is_cavity=True, - council_tax_band="B" + council_tax_band="B", + is_partial=False, + existing_li_thickness=0, + current_wall_uvalue=2, ) assert not funding.eco4_eligible @@ -126,7 +136,10 @@ def test_gbis_prs_general_eligibility(mock_project_scores_matrix, mock_partial_s mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", is_cavity=True, - council_tax_band="A" + council_tax_band="A", + is_partial=False, + existing_li_thickness=0, + current_wall_uvalue=2, ) assert funding.gbis_eligible @@ -154,7 +167,10 @@ def test_gbis_prs_low_income_caveat(mock_project_scores_matrix, mock_partial_sco mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", is_cavity=True, - council_tax_band="B" + council_tax_band="B", + is_partial=False, + existing_li_thickness=0, + current_wall_uvalue=2, ) assert funding.gbis_eligible @@ -186,7 +202,10 @@ def test_eco4_sh_epc_e_eligible(mock_project_scores_matrix, mock_partial_scores_ floor_area=80, mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", - is_cavity=True + is_cavity=True, + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, ) assert funding.eco4_eligible @@ -213,12 +232,169 @@ def test_eco4_sh_epc_d_requires_innovation(mock_project_scores_matrix, mock_part floor_area=80, mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", - is_cavity=True + is_cavity=True, + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, ) assert not funding.eco4_eligible assert EligibilityCaveats.INNOVATION_REQUIRED in funding.eco4_eligibility_caveats + # Test with an innovation measure + funding2 = Funding( + project_scores_matrix=mock_project_scores_matrix, + partial_project_scores_matrix=mock_partial_scores_matrix, + whlg_eligible_postcodes=mock_whlg_postcodes, + social_cavity_abs_rate=13.5, + social_solid_abs_rate=17, + private_cavity_abs_rate=13.5, + private_solid_abs_rate=17, + tenure="Social", + ) + measures2 = [{"type": "internal_wall_insulation", "is_innovation": True}] + funding2.check_funding( + measures=measures2, + starting_sap=60, # EPC D + ending_sap=69, + floor_area=80, + mainheat_description="Boiler and radiators, mains gas", + heating_control_description="Programmer, room thermostat and TRVs", + is_cavity=True, + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, + ) + + assert funding2.eco4_eligible + assert not funding2.eco4_eligibility_caveats + + # Test with innovation solar. If the measure is solar, we need to have an eligible heating system. + # If we don't have an eligible heating system in place, we need to have one as part of the measure + # package + # THIS SHOULD NOT BE ELIGIBLE + funding3 = Funding( + project_scores_matrix=mock_project_scores_matrix, + partial_project_scores_matrix=mock_partial_scores_matrix, + whlg_eligible_postcodes=mock_whlg_postcodes, + social_cavity_abs_rate=13.5, + social_solid_abs_rate=17, + private_cavity_abs_rate=13.5, + private_solid_abs_rate=17, + tenure="Social", + ) + measures3 = [{"type": "solar_pv", "is_innovation": True}] + funding3.check_funding( + measures=measures3, + starting_sap=60, # EPC D + ending_sap=69, + floor_area=80, + mainheat_description="Boiler and radiators, mains gas", + heating_control_description="Programmer, room thermostat and TRVs", + is_cavity=True, + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, + ) + + assert not funding3.eco4_eligible + assert EligibilityCaveats.SOLAR_NEEDS_HEATING in funding3.eco4_eligibility_caveats + + # Test with innovation solar and ASHP. This should be eligible + funding4 = Funding( + project_scores_matrix=mock_project_scores_matrix, + partial_project_scores_matrix=mock_partial_scores_matrix, + whlg_eligible_postcodes=mock_whlg_postcodes, + social_cavity_abs_rate=13.5, + social_solid_abs_rate=17, + private_cavity_abs_rate=13.5, + private_solid_abs_rate=17, + tenure="Social", + ) + + measures4 = [{"type": "solar_pv", "is_innovation": True}] + funding4.check_funding( + measures=measures4, + starting_sap=60, # EPC D + ending_sap=69, + floor_area=80, + mainheat_description="Air source heat pump, radiators", + heating_control_description="Programmer, room thermostat and TRVs", + is_cavity=True, + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, + ) + + assert funding4.eco4_eligible + assert not funding4.eco4_eligibility_caveats + + # Test with innovation solar, a non-eligible heating system but a heating upgrade + funding5 = Funding( + project_scores_matrix=mock_project_scores_matrix, + partial_project_scores_matrix=mock_partial_scores_matrix, + whlg_eligible_postcodes=mock_whlg_postcodes, + social_cavity_abs_rate=13.5, + social_solid_abs_rate=17, + private_cavity_abs_rate=13.5, + private_solid_abs_rate=17, + tenure="Social", + ) + + measures5 = [ + {"type": "solar_pv", "is_innovation": True}, + {"type": "high_heat_retention_storage_heater", "is_innovation": False} + ] + funding5.check_funding( + measures=measures5, + starting_sap=60, # EPC D + ending_sap=69, + floor_area=80, + mainheat_description="Electric storage heaters", + heating_control_description="Manual charge control", + is_cavity=True, + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, + ) + + assert funding5.eco4_eligible + assert not funding5.eco4_eligibility_caveats + + # Test with innovation solar, an eligible heating system but a package that excludes the required + # fabric upgrades + funding6 = Funding( + project_scores_matrix=mock_project_scores_matrix, + partial_project_scores_matrix=mock_partial_scores_matrix, + whlg_eligible_postcodes=mock_whlg_postcodes, + social_cavity_abs_rate=13.5, + social_solid_abs_rate=17, + private_cavity_abs_rate=13.5, + private_solid_abs_rate=17, + tenure="Social", + ) + + measures6 = [ + {"type": "solar_pv", "is_innovation": True}, + ] + funding6.check_funding( + measures=measures6, + starting_sap=60, # EPC D + ending_sap=69, + floor_area=80, + mainheat_description="Electric storage heaters", + heating_control_description="controls for high heat retention storage heaters", + is_cavity=True, + has_wall_insulation_recommendation=True, + has_roof_insulation_recommendation=False, + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, + ) + + assert not funding6.eco4_eligible + assert not funding6.eco4_eligibility_caveats + def test_eco4_sh_solar_pv_requires_heating(mock_project_scores_matrix, mock_partial_scores_matrix, mock_whlg_postcodes): """Solar PV as innovation measure requires ASHP or HHRSH.""" @@ -241,7 +417,10 @@ def test_eco4_sh_solar_pv_requires_heating(mock_project_scores_matrix, mock_part floor_area=80, mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", - is_cavity=True + is_cavity=True, + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, ) assert not funding.eco4_eligible @@ -273,7 +452,10 @@ def test_eco4_sh_solar_pv_with_heating_is_ok(mock_project_scores_matrix, mock_pa floor_area=80, mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", - is_cavity=True + is_cavity=True, + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, ) assert funding.eco4_eligible @@ -305,7 +487,10 @@ def test_eco4_upgrade_requirement_e_to_c_pass(mock_project_scores_matrix, mock_p mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", is_cavity=True, - council_tax_band="B" + council_tax_band="B", + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, ) assert funding.eco4_eligible @@ -336,7 +521,10 @@ def test_eco4_upgrade_requirement_e_to_d_fail(mock_project_scores_matrix, mock_p mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", is_cavity=True, - council_tax_band="B" + council_tax_band="B", + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, ) assert not funding.eco4_eligible @@ -367,7 +555,10 @@ def test_eco4_upgrade_requirement_f_to_d_pass(mock_project_scores_matrix, mock_p mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", is_cavity=True, - council_tax_band="B" + council_tax_band="B", + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, ) assert funding.eco4_eligible @@ -398,7 +589,10 @@ def test_eco4_upgrade_requirement_f_to_e_fail(mock_project_scores_matrix, mock_p mainheat_description="Boiler and radiators, mains gas", heating_control_description="Programmer, room thermostat and TRVs", is_cavity=True, - council_tax_band="B" + council_tax_band="B", + current_wall_uvalue=2, + is_partial=False, + existing_li_thickness=0, ) assert not funding.eco4_eligible diff --git a/recommendations/tests/test_data/ECO4_Partial_Project_Scores_Matrix_v6.csv b/recommendations/tests/test_data/ECO4_Partial_Project_Scores_Matrix_v6.csv new file mode 100644 index 00000000..cb2e55f7 --- /dev/null +++ b/recommendations/tests/test_data/ECO4_Partial_Project_Scores_Matrix_v6.csv @@ -0,0 +1,16565 @@ +Measure category,Measure_Type,Pre_Main_Heating_Source,Post_Main_Heating_Source,Total Floor Area Band ,Starting Band,Average Treatable Factor,Cost Savings,SAP Savings +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,High_D,0.96,499,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,Low_D,0.96,557,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,High_E,0.96,702,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,Low_E,0.96,841.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,High_F,0.96,1037,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,Low_F,0.96,1255.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,High_G,0.96,1561.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,Low_G,0.96,1911.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,High_D,0.96,488,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,Low_D,0.96,613.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,High_E,0.96,765.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,Low_E,0.96,912.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,High_F,0.96,1118.8,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,Low_F,0.96,1348.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,High_G,0.96,1671.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,Low_G,0.96,2040.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,High_D,0.96,579.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,Low_D,0.96,718.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,High_E,0.96,889,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,Low_E,0.96,1052.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,High_F,0.96,1281.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,Low_F,0.96,1537.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,High_G,0.96,1897.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,Low_G,0.96,2308,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,200,High_D,0.96,1124.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,200,Low_D,0.96,1362.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,200,High_E,0.96,1659.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,200,Low_E,0.96,1945.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,200,High_F,0.96,2345.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,200,Low_F,0.96,2793,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,200,High_G,0.96,3420.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Fuel Cell mCHP,200,Low_G,0.96,4138,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,High_D,0.96,425.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,541.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,High_E,0.96,682.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,818.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,High_F,0.96,1009.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1223,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1522.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1864.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,High_D,0.96,468.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,589.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,High_E,0.96,736.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,878.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,High_F,0.96,1078,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1300.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1612.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1969.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,High_D,0.96,548.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,681.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,High_E,0.96,843.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,999.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,High_F,0.96,1218.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1462.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1805.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,2197.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,High_D,0.96,1057.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,Low_D,0.96,1283.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,High_E,0.96,1564.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,Low_E,0.96,1834.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,High_F,0.96,2213.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,Low_F,0.96,2636.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,High_G,0.96,3230.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,Low_G,0.96,3909.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,High_D,0.96,387.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,Low_D,0.96,496.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,High_E,0.96,628.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,Low_E,0.96,755.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,High_F,0.96,933.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,Low_F,0.96,1132.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,High_G,0.96,1411.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,Low_G,0.96,1730.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,High_D,0.96,411.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,Low_D,0.96,521.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,High_E,0.96,654.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,Low_E,0.96,782.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,High_F,0.96,963,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,Low_F,0.96,1163.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,High_G,0.96,1445.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,Low_G,0.96,1768.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,High_D,0.96,459.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,Low_D,0.96,574.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,High_E,0.96,715,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,Low_E,0.96,849.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,High_F,0.96,1039,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,Low_F,0.96,1250.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,High_G,0.96,1546.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,Low_G,0.96,1885.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,200,High_D,0.96,870.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,200,Low_D,0.96,1060.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,200,High_E,0.96,1295.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,200,Low_E,0.96,1522.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,200,High_F,0.96,1840.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,200,Low_F,0.96,2195.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,200,High_G,0.96,2693.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Fuel Cell mCHP,200,Low_G,0.96,3263,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,High_D,0.96,370.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,474.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,High_E,0.96,602.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,725,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,High_F,0.96,897.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1089.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1358.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1666.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,High_D,0.96,385.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,489.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,High_E,0.96,615.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,737.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,High_F,0.96,908.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1099.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1366.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1673,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,High_D,0.96,417.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,524.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,High_E,0.96,654.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,778.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,High_F,0.96,954.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1149.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1423.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1737.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,High_D,0.96,782.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,Low_D,0.96,954.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,High_E,0.96,1168.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,Low_E,0.96,1374.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,High_F,0.96,1664,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,Low_F,0.96,1986.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,High_G,0.96,2439.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,Low_G,0.96,2957.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,High_D,0.96,402.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,509.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,High_E,0.96,640.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,766.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,High_F,0.96,943,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1139.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1416.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1732.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,High_D,0.96,429.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,536.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,High_E,0.96,668.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,795,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,High_F,0.96,972.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1170.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1448.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1766.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,High_D,0.96,478,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,590.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,High_E,0.96,728,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,860,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,High_F,0.96,1045.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1252.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1542.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1874.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,200,High_D,0.96,880.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,200,Low_D,0.96,1065.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,200,High_E,0.96,1295.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,200,Low_E,0.96,1516.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,200,High_F,0.96,1826.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,200,Low_F,0.96,2172.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,200,High_G,0.96,2658.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Fuel Cell mCHP,200,Low_G,0.96,3213.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,0-72,High_D,0.96,388,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,0-72,Low_D,0.96,491.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,0-72,High_E,0.96,617.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,0-72,Low_E,0.96,738.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,0-72,High_F,0.96,908.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,0-72,Low_F,0.96,1098.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,0-72,High_G,0.96,1364.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,0-72,Low_G,0.96,1669.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,73-97,High_D,0.96,405.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,73-97,Low_D,0.96,507.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,73-97,High_E,0.96,632.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,73-97,Low_E,0.96,752.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,73-97,High_F,0.96,920.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,73-97,Low_F,0.96,1107.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,73-97,High_G,0.96,1370.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,73-97,Low_G,0.96,1671.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,98-199,High_D,0.96,439.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,98-199,Low_D,0.96,543.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,98-199,High_E,0.96,669.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,98-199,Low_E,0.96,791.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,98-199,High_F,0.96,961.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,98-199,Low_F,0.96,1152.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,98-199,High_G,0.96,1419.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,98-199,Low_G,0.96,1724.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,200,High_D,0.96,794.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,200,Low_D,0.96,960.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,200,High_E,0.96,1168.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,200,Low_E,0.96,1367.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,200,High_F,0.96,1647.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,200,Low_F,0.96,1959.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,200,High_G,0.96,2397.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Fuel Cell mCHP,200,Low_G,0.96,2898.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,High_D,0.96,379.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,Low_D,0.96,480.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,High_E,0.96,603.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,Low_E,0.96,721.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,High_F,0.96,888.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,Low_F,0.96,1073.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,High_G,0.96,1334,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,Low_G,0.96,1631.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,High_D,0.96,392,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,Low_D,0.96,490.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,High_E,0.96,610.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,Low_E,0.96,726.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,High_F,0.96,888.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,Low_F,0.96,1069.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,High_G,0.96,1323.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,Low_G,0.96,1614.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,High_D,0.96,416.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,Low_D,0.96,515,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,High_E,0.96,634.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,Low_E,0.96,750,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,High_F,0.96,911.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,Low_F,0.96,1092.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,High_G,0.96,1345.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,Low_G,0.96,1634.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,High_D,0.96,742.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,Low_D,0.96,898,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,High_E,0.96,1091.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,Low_E,0.96,1278,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,High_F,0.96,1539.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,Low_F,0.96,1831.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,High_G,0.96,2240.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,Low_G,0.96,2708.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_D,0.96,366,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,463.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_E,0.96,582.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,696.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_F,0.96,857.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1036.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1287.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1575,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_D,0.96,371.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,464.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_E,0.96,578.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,687.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_F,0.96,841.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1012.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1253.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1528.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_D,0.96,382.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,472.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_E,0.96,582.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,688.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_F,0.96,836.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1002,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1234.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1499.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,High_D,0.96,664.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,Low_D,0.96,803.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,High_E,0.96,977.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,Low_E,0.96,1144,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,High_F,0.96,1378.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,Low_F,0.96,1639.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,High_G,0.96,2005.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,Low_G,0.96,2424.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_D,0.96,347,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,439.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_E,0.96,552.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,660.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_F,0.96,812.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,982.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1220.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1493.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_D,0.96,341,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,426.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_E,0.96,531.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,631.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_F,0.96,773.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,930.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1151.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1404.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_D,0.96,332.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,411.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_E,0.96,506.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,598.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_F,0.96,727.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,871.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1074,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1305.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,High_D,0.96,552.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,Low_D,0.96,667.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,High_E,0.96,812,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,Low_E,0.96,950.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,High_F,0.96,1144.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,Low_F,0.96,1361.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,High_G,0.96,1666.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,Low_G,0.96,2014.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Biomass Boiler,200,Low_G,0.96,0,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,0-72,High_D,0.96,426.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,0-72,Low_D,0.96,543.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,0-72,High_E,0.96,685.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,0-72,Low_E,0.96,821.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,0-72,High_F,0.96,1013.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,0-72,Low_F,0.96,1227.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,0-72,High_G,0.96,1527.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,0-72,Low_G,0.96,1870.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,73-97,High_D,0.96,470.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,73-97,Low_D,0.96,592.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,73-97,High_E,0.96,740.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,73-97,Low_E,0.96,883.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,73-97,High_F,0.96,1083.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,73-97,Low_F,0.96,1307,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,73-97,High_G,0.96,1620.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,73-97,Low_G,0.96,1979,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,98-199,High_D,0.96,552.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,98-199,Low_D,0.96,686.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,98-199,High_E,0.96,849.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,98-199,Low_E,0.96,1006.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,98-199,High_F,0.96,1227.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,98-199,Low_F,0.96,1473.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,98-199,High_G,0.96,1818.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,98-199,Low_G,0.96,2212.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,200,High_D,0.96,1067.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,200,Low_D,0.96,1294.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,200,High_E,0.96,1577.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,200,Low_E,0.96,1849.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,200,High_F,0.96,2232.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,200,Low_F,0.96,2658.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,200,High_G,0.96,3256.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Fuel Cell mCHP,200,Low_G,0.96,3941,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,High_D,0.96,380.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,Low_D,0.96,486,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,High_E,0.96,615.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,Low_E,0.96,739.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,High_F,0.96,913.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,Low_F,0.96,1107.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,High_G,0.96,1380.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,Low_G,0.96,1691.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,High_D,0.96,399.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,Low_D,0.96,504.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,High_E,0.96,633.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,Low_E,0.96,757.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,High_F,0.96,931.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,Low_F,0.96,1125.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,High_G,0.96,1398.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,Low_G,0.96,1709.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,High_D,0.96,438,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,Low_D,0.96,547.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,High_E,0.96,680.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,Low_E,0.96,808.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,High_F,0.96,988.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,Low_F,0.96,1188.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,High_G,0.96,1470.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,Low_G,0.96,1792.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,High_D,0.96,818.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,Low_D,0.96,996.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,High_E,0.96,1217.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,Low_E,0.96,1430.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,High_F,0.96,1729.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,Low_F,0.96,2062.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,High_G,0.96,2530.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,Low_G,0.96,3064.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,0-72,High_D,0.96,428.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,545.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,0-72,High_E,0.96,687.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,824,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,0-72,High_F,0.96,1015.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1229.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1529.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1872.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,73-97,High_D,0.96,473.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,595,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,73-97,High_E,0.96,743.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,886,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,73-97,High_F,0.96,1086.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1309.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1623.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1981.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,98-199,High_D,0.96,555.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,689.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,98-199,High_E,0.96,852.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,1009.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,98-199,High_F,0.96,1230.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1476.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1821.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,2215.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,200,High_D,0.96,1070.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,200,Low_D,0.96,1298.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,200,High_E,0.96,1581.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,200,Low_E,0.96,1853.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,200,High_F,0.96,2235.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,200,Low_F,0.96,2662,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,200,High_G,0.96,3260.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Fuel Cell mCHP,200,Low_G,0.96,3944.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_D,0.96,381,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,487.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_E,0.96,618,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,743.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_F,0.96,919,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1115.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1390.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1705.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_D,0.96,401.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,508.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_E,0.96,639.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,764.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_F,0.96,941.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1138.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1414.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1730.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_D,0.96,443.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,554.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_E,0.96,690.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,821.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_F,0.96,1005.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1210.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1497.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1826.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,High_D,0.96,835.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,Low_D,0.96,1018.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,High_E,0.96,1245.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,Low_E,0.96,1463.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,High_F,0.96,1770.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,Low_F,0.96,2112.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,High_G,0.96,2592.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,Low_G,0.96,3141.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_D,0.96,369.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,473.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_E,0.96,600.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,722.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_F,0.96,894.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1086.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1354.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1662.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_D,0.96,383.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,486.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_E,0.96,613,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,734.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_F,0.96,904.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1094.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1361.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1666.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_D,0.96,414.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,520.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_E,0.96,649.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,773.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_F,0.96,948.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1142.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1415.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1726.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,High_D,0.96,776,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,Low_D,0.96,946.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,High_E,0.96,1159.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,Low_E,0.96,1364.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,High_F,0.96,1651.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,Low_F,0.96,1971.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,High_G,0.96,2421.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,Low_G,0.96,2935.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_D,0.96,420,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,533.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_E,0.96,671.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,804.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_F,0.96,991.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1199.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1491.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1825.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_D,0.96,458.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,575.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_E,0.96,718,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,855.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_F,0.96,1047.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1262.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1564.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1909,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_D,0.96,529.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,656,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_E,0.96,810.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,959.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_F,0.96,1167.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1400.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1727.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,2100.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,High_D,0.96,1006.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,Low_D,0.96,1219.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,High_E,0.96,1484.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,Low_E,0.96,1739.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,High_F,0.96,2097.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,Low_F,0.96,2496.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,High_G,0.96,3057.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,Low_G,0.96,3698.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_D,0.96,410.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,521.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_E,0.96,656.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,786.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_F,0.96,969.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1173.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1459.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1787,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_D,0.96,443.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,556.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_E,0.96,695.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,828.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_F,0.96,1015.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1223.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1516.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1851,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_D,0.96,505.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,626.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_E,0.96,774.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,916.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_F,0.96,1116.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1339.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1652.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,2010,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,High_D,0.96,953.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,Low_D,0.96,1155.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,High_E,0.96,1407.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,Low_E,0.96,1649.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,High_F,0.96,1989.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,Low_F,0.96,2368.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,High_G,0.96,2900.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,Low_G,0.96,3508.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,High_B,0.96,375.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,Low_B,0.96,375.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,High_C,0.96,375.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,Low_C,0.96,375.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,High_D,0.96,375.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,Low_D,0.96,422.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,High_E,0.96,538.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,Low_E,0.96,650.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,High_F,0.96,807.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,Low_F,0.96,983.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,High_G,0.96,1229,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,0-72,Low_G,0.96,1510.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,High_B,0.96,341.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,Low_B,0.96,341.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,High_C,0.96,341.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,Low_C,0.96,341.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,High_D,0.96,381.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,Low_D,0.96,485,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,High_E,0.96,610.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,Low_E,0.96,731.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,High_F,0.96,901.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,Low_F,0.96,1091,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,High_G,0.96,1356.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,73-97,Low_G,0.96,1660.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,High_B,0.96,307.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,Low_B,0.96,307.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,High_C,0.96,307.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,Low_C,0.96,354.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,High_D,0.96,478.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,Low_D,0.96,596.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,High_E,0.96,741.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,Low_E,0.96,880.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,High_F,0.96,1076.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,Low_F,0.96,1294.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,High_G,0.96,1600.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,98-199,Low_G,0.96,1950.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,High_B,0.96,307.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,Low_B,0.96,366.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,High_C,0.96,565.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,Low_C,0.96,739.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,High_D,0.96,963.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,Low_D,0.96,1170.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,High_E,0.96,1428.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,Low_E,0.96,1676.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,High_F,0.96,2025.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,Low_F,0.96,2413.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,High_G,0.96,2959,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS non-CHP,200,Low_G,0.96,3582.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,High_B,0.96,202.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,Low_B,0.96,202.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,High_C,0.96,202.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,Low_C,0.96,202.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,High_D,0.96,274.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,Low_D,0.96,359.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,High_E,0.96,462.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,Low_E,0.96,561.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,High_F,0.96,700.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,Low_F,0.96,855.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,High_G,0.96,1073.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,0-72,Low_G,0.96,1322.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,High_B,0.96,184.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,Low_B,0.96,184.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,High_C,0.96,184.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,Low_C,0.96,230.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,High_D,0.96,324.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,Low_D,0.96,416.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,High_E,0.96,527.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,Low_E,0.96,634.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,High_F,0.96,784.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,Low_F,0.96,952.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,High_G,0.96,1187.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,73-97,Low_G,0.96,1457,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,High_B,0.96,165.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,Low_B,0.96,165.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,High_C,0.96,217,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,Low_C,0.96,302,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,High_D,0.96,411.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,Low_D,0.96,516.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,High_E,0.96,644.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,Low_E,0.96,767.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,High_F,0.96,940.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,Low_F,0.96,1133.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,High_G,0.96,1404.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,98-199,Low_G,0.96,1714.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,High_B,0.96,172,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,Low_B,0.96,312.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,High_C,0.96,488.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,Low_C,0.96,643,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,High_D,0.96,840.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,Low_D,0.96,1024.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,High_E,0.96,1252.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,Low_E,0.96,1472.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,High_F,0.96,1780.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,Low_F,0.96,2124.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,High_G,0.96,2607.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS non-CHP,200,Low_G,0.96,3159.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,High_C,0.96,30.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,Low_C,0.96,73.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,High_D,0.96,127.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,Low_D,0.96,181.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,High_E,0.96,246.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,Low_E,0.96,309.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,High_F,0.96,397.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,Low_F,0.96,495.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,High_G,0.96,633.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,0-72,Low_G,0.96,791.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,Low_B,0.96,4.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,High_C,0.96,57.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,Low_C,0.96,104,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,High_D,0.96,163.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,Low_D,0.96,221.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,High_E,0.96,292,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,Low_E,0.96,359.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,High_F,0.96,455.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,Low_F,0.96,561.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,High_G,0.96,710.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,73-97,Low_G,0.96,881,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,Low_B,0.96,37.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,High_C,0.96,99.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,Low_C,0.96,153.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,High_D,0.96,222.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,Low_D,0.96,289.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,High_E,0.96,370.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,Low_E,0.96,448.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,High_F,0.96,558.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,Low_F,0.96,680.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,High_G,0.96,852,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,98-199,Low_G,0.96,1048.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,High_B,0.96,71,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,Low_B,0.96,159.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,High_C,0.96,271.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,Low_C,0.96,369.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,High_D,0.96,494.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,Low_D,0.96,611,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,High_E,0.96,755.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,Low_E,0.96,894.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,High_F,0.96,1090.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,Low_F,0.96,1308.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,High_G,0.96,1614.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS non-CHP,200,Low_G,0.96,1963.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_C,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_C,0.96,18.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_D,0.96,58.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_D,0.96,97,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_E,0.96,144.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_E,0.96,190,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_F,0.96,254.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_F,0.96,325.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_G,0.96,425.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_G,0.96,540.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_C,0.96,10.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_C,0.96,44,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_D,0.96,87.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_D,0.96,129.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_E,0.96,180.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_E,0.96,229.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_F,0.96,299.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_F,0.96,376.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_G,0.96,484.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_G,0.96,608.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_C,0.96,43.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_C,0.96,83.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_D,0.96,133.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_D,0.96,181.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_E,0.96,240.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_E,0.96,297.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_F,0.96,377.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_F,0.96,465.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_G,0.96,590.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_G,0.96,733.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,High_B,0.96,23.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_B,0.96,87.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,High_C,0.96,168.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_C,0.96,240,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,High_D,0.96,331.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_D,0.96,415.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,High_E,0.96,520.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_E,0.96,621.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,High_F,0.96,763.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_F,0.96,922,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,High_G,0.96,1144.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_G,0.96,1398.3,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,High_B,0.96,56.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,Low_B,0.96,56.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,High_C,0.96,96.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,Low_C,0.96,135.3,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,High_D,0.96,185.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,Low_D,0.96,235.4,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,High_E,0.96,295.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,Low_E,0.96,353.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,High_F,0.96,435.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,Low_F,0.96,526.4,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,High_G,0.96,654.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,0-72,Low_G,0.96,800.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,High_B,0.96,51.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,Low_B,0.96,66,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,High_C,0.96,115,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,Low_C,0.96,157.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,High_D,0.96,212.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,Low_D,0.96,266.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,High_E,0.96,331.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,Low_E,0.96,394.6,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,High_F,0.96,482.7,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,Low_F,0.96,581,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,High_G,0.96,719,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,73-97,Low_G,0.96,876.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,High_B,0.96,46,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,Low_B,0.96,90.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,High_C,0.96,147.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,Low_C,0.96,197.4,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,High_D,0.96,261.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,Low_D,0.96,323,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,High_E,0.96,398.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,Low_E,0.96,470.4,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,High_F,0.96,571.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,Low_F,0.96,685,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,High_G,0.96,843.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,98-199,Low_G,0.96,1025.4,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,High_B,0.96,121.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,Low_B,0.96,203.3,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,High_C,0.96,306.6,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,Low_C,0.96,397.3,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,High_D,0.96,513.3,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,Low_D,0.96,620.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,High_E,0.96,754.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,Low_E,0.96,883.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,High_F,0.96,1064.3,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,Low_F,0.96,1266,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,High_G,0.96,1549,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS non-CHP,200,Low_G,0.96,1872.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,High_B,0.96,26.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,Low_B,0.96,35.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,High_C,0.96,66.2,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,Low_C,0.96,93.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,High_D,0.96,128,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,Low_D,0.96,162,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,High_E,0.96,203.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,Low_E,0.96,243.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,High_F,0.96,299.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,Low_F,0.96,362.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,High_G,0.96,450.2,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,0-72,Low_G,0.96,550.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,High_B,0.96,24.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,Low_B,0.96,45.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,High_C,0.96,79.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,Low_C,0.96,108.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,High_D,0.96,146.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,Low_D,0.96,183.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,High_E,0.96,228.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,Low_E,0.96,271.5,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,High_F,0.96,332.2,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,Low_F,0.96,399.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,High_G,0.96,494.8,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,73-97,Low_G,0.96,603.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,High_B,0.96,31.2,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,Low_B,0.96,62.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,High_C,0.96,101.5,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,Low_C,0.96,135.8,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,High_D,0.96,179.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,Low_D,0.96,222.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,High_E,0.96,274.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,Low_E,0.96,323.8,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,High_F,0.96,393.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,Low_F,0.96,471.5,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,High_G,0.96,580.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,98-199,Low_G,0.96,705.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,High_B,0.96,83.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,Low_B,0.96,139.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,High_C,0.96,211,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,Low_C,0.96,273.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,High_D,0.96,353.2,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,Low_D,0.96,427.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,High_E,0.96,519.5,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,Low_E,0.96,608.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,High_F,0.96,732.5,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,Low_F,0.96,871.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,High_G,0.96,1066.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS non-CHP,200,Low_G,0.96,1288.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,High_B,0.96,15.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,Low_B,0.96,25.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,High_C,0.96,48.2,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,Low_C,0.96,67.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,High_D,0.96,93.2,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,Low_D,0.96,118,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,High_E,0.96,148.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,Low_E,0.96,177.4,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,High_F,0.96,218.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,Low_F,0.96,263.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,High_G,0.96,327.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,0-72,Low_G,0.96,401,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,High_B,0.96,13.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,Low_B,0.96,33.1,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,High_C,0.96,57.6,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,Low_C,0.96,79.1,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,High_D,0.96,106.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,Low_D,0.96,133.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,High_E,0.96,166.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,Low_E,0.96,197.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,High_F,0.96,241.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,Low_F,0.96,291.2,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,High_G,0.96,360.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,73-97,Low_G,0.96,439.4,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,High_B,0.96,22.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,Low_B,0.96,45.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,High_C,0.96,73.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,Low_C,0.96,98.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,High_D,0.96,131,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,Low_D,0.96,161.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,High_E,0.96,199.6,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,Low_E,0.96,235.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,High_F,0.96,286.6,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,Low_F,0.96,343.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,High_G,0.96,422.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,98-199,Low_G,0.96,513.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,High_B,0.96,60.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,Low_B,0.96,101.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,High_C,0.96,153.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,Low_C,0.96,199.1,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,High_D,0.96,257.2,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,Low_D,0.96,311.1,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,High_E,0.96,378.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,Low_E,0.96,442.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,High_F,0.96,533.4,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,Low_F,0.96,634.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,High_G,0.96,776.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS non-CHP,200,Low_G,0.96,938.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,High_C,0.96,18.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,Low_C,0.96,53,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,High_D,0.96,97.6,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,Low_D,0.96,141.3,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,High_E,0.96,194.6,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,Low_E,0.96,245.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,High_F,0.96,317.7,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,Low_F,0.96,397.9,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,High_G,0.96,510.6,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,0-72,Low_G,0.96,639.3,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,High_C,0.96,41,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,Low_C,0.96,78.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,High_D,0.96,127.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,Low_D,0.96,174.7,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,High_E,0.96,232.3,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,Low_E,0.96,287.6,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,High_F,0.96,365.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,Low_F,0.96,452.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,High_G,0.96,573.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,73-97,Low_G,0.96,713,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,Low_B,0.96,25.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,High_C,0.96,75.7,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,Low_C,0.96,119.7,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,High_D,0.96,176.3,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,Low_D,0.96,230.6,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,High_E,0.96,296.9,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,Low_E,0.96,360.6,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,High_F,0.96,450.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,Low_F,0.96,549.9,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,High_G,0.96,690,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,98-199,Low_G,0.96,850.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,High_B,0.96,52.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,Low_B,0.96,125,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,High_C,0.96,216.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,Low_C,0.96,296.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,High_D,0.96,398.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,Low_D,0.96,493.2,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,High_E,0.96,611.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,Low_E,0.96,725,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,High_F,0.96,884.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,Low_F,0.96,1062.3,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,High_G,0.96,1312,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS non-CHP,200,Low_G,0.96,1597.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,High_B,0.96,229.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,Low_B,0.96,229.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,High_C,0.96,229.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,Low_C,0.96,229.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,High_D,0.96,290.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,Low_D,0.96,376.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,High_E,0.96,481.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,Low_E,0.96,582,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,High_F,0.96,723.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,Low_F,0.96,881.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,High_G,0.96,1103.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,0-72,Low_G,0.96,1356.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,High_B,0.96,208.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,Low_B,0.96,208.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,High_C,0.96,208.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,Low_C,0.96,244.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,High_D,0.96,340.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,Low_D,0.96,433,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,High_E,0.96,546.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,Low_E,0.96,655.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,High_F,0.96,808.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,Low_F,0.96,979.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,High_G,0.96,1218.7,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,73-97,Low_G,0.96,1492.7,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,High_B,0.96,187.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,Low_B,0.96,187.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,High_C,0.96,229.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,Low_C,0.96,316,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,High_D,0.96,427.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,Low_D,0.96,534.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,High_E,0.96,664.8,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,Low_E,0.96,790.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,High_F,0.96,966.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,Low_F,0.96,1162.7,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,High_G,0.96,1438.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,98-199,Low_G,0.96,1753.7,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,High_B,0.96,187.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,Low_B,0.96,326.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,High_C,0.96,505.7,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,Low_C,0.96,663.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,High_D,0.96,864.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,Low_D,0.96,1051.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,High_E,0.96,1283.9,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,Low_E,0.96,1507.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,High_F,0.96,1821.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,Low_F,0.96,2171.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,High_G,0.96,2662.8,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS non-CHP,200,Low_G,0.96,3224.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,High_B,0.96,221.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,Low_B,0.96,221.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,High_C,0.96,221.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,Low_C,0.96,221.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,High_D,0.96,282.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,Low_D,0.96,368.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,High_E,0.96,473,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,Low_E,0.96,573.8,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,High_F,0.96,715.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,Low_F,0.96,873.3,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,High_G,0.96,1095,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,0-72,Low_G,0.96,1348.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,High_B,0.96,201.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,Low_B,0.96,201.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,High_C,0.96,201.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,Low_C,0.96,236.9,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,High_D,0.96,332.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,Low_D,0.96,425.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,High_E,0.96,539.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,Low_E,0.96,648,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,High_F,0.96,801.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,Low_F,0.96,971.8,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,High_G,0.96,1211.3,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,73-97,Low_G,0.96,1485.3,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,High_B,0.96,181,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,Low_B,0.96,181,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,High_C,0.96,222.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,Low_C,0.96,309.3,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,High_D,0.96,420.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,Low_D,0.96,527.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,High_E,0.96,658.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,Low_E,0.96,783.5,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,High_F,0.96,959.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,Low_F,0.96,1156.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,High_G,0.96,1431.8,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,98-199,Low_G,0.96,1747,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,High_B,0.96,181,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,Low_B,0.96,319.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,High_C,0.96,499,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,Low_C,0.96,656.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,High_D,0.96,857.8,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,Low_D,0.96,1044.5,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,High_E,0.96,1277.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,Low_E,0.96,1500.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,High_F,0.96,1814.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,Low_F,0.96,2164.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,High_G,0.96,2656.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS non-CHP,200,Low_G,0.96,3218,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_C,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_C,0.96,14.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_D,0.96,53.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_D,0.96,91,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_E,0.96,137.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_E,0.96,181.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_F,0.96,243.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_F,0.96,313.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_G,0.96,410.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_G,0.96,522.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_C,0.96,7,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_C,0.96,39.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_D,0.96,81.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_D,0.96,122.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_E,0.96,172.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_E,0.96,220.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_F,0.96,287.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_F,0.96,363,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_G,0.96,468.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_G,0.96,588.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_C,0.96,39.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_C,0.96,78,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_D,0.96,127,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_D,0.96,174,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_E,0.96,231.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_E,0.96,286.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_F,0.96,364.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_F,0.96,450.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_G,0.96,571.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_G,0.96,710.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,High_B,0.96,19.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_B,0.96,82.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,High_C,0.96,161.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_C,0.96,230.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,High_D,0.96,319.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_D,0.96,401.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,High_E,0.96,503.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_E,0.96,602.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,High_F,0.96,740.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_F,0.96,894.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,High_G,0.96,1110.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_G,0.96,1357.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_C,0.96,13.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_C,0.96,51.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_D,0.96,100.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_D,0.96,147.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_E,0.96,206,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_E,0.96,262,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_F,0.96,340.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_F,0.96,428.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_G,0.96,551.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_G,0.96,691.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_C,0.96,38.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_C,0.96,80.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_D,0.96,133.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_D,0.96,184.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_E,0.96,247.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_E,0.96,308.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_F,0.96,393.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_F,0.96,487.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_G,0.96,620.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_G,0.96,772.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_B,0.96,22.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_C,0.96,77.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_C,0.96,125.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_D,0.96,187.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_D,0.96,246.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_E,0.96,319,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_E,0.96,388.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_F,0.96,486.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_F,0.96,595.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_G,0.96,748.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_G,0.96,923.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_B,0.96,52,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_B,0.96,131.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_C,0.96,230.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_C,0.96,318,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_D,0.96,429.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_D,0.96,533.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_E,0.96,662.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_E,0.96,786.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_F,0.96,960.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_F,0.96,1154.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_G,0.96,1427.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_G,0.96,1739.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_B,0.96,133.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_B,0.96,133.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_C,0.96,133.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_C,0.96,179.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_D,0.96,254.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_D,0.96,328.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_E,0.96,418.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_E,0.96,504.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_F,0.96,626,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_F,0.96,761.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_G,0.96,951.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_G,0.96,1168.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_B,0.96,121.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_B,0.96,121.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_C,0.96,151,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_C,0.96,214.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_D,0.96,296.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_D,0.96,376.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_E,0.96,473.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_E,0.96,567.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_F,0.96,698.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_F,0.96,844.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_G,0.96,1049.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_G,0.96,1284.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_B,0.96,109.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_B,0.96,116.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_C,0.96,201.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_C,0.96,275.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_D,0.96,371,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_D,0.96,462.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_E,0.96,574.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_E,0.96,682,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_F,0.96,833,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_F,0.96,1001.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_G,0.96,1237.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_G,0.96,1507.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_B,0.96,162.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_B,0.96,284.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_C,0.96,438.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_C,0.96,573.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_D,0.96,745.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_D,0.96,905.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_E,0.96,1105.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_E,0.96,1296.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_F,0.96,1565.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_F,0.96,1865.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_G,0.96,2287,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_G,0.96,2768.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_B,0.96,80.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_B,0.96,80.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_C,0.96,99.3,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_C,0.96,150.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_D,0.96,216.3,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_D,0.96,280.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_E,0.96,359.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_E,0.96,435.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_F,0.96,541.3,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_F,0.96,659.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_G,0.96,826.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_G,0.96,1016.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_B,0.96,73.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_B,0.96,73.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_C,0.96,126.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_C,0.96,182,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_D,0.96,253.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_D,0.96,323.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_E,0.96,408.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_E,0.96,490.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_F,0.96,605.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_F,0.96,733.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_G,0.96,913,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_G,0.96,1118.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_B,0.96,65.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_B,0.96,96.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_C,0.96,170.9,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_C,0.96,235.9,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_D,0.96,319.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_D,0.96,399.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_E,0.96,497.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_E,0.96,591.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_F,0.96,723.7,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_F,0.96,871.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_G,0.96,1077.9,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_G,0.96,1314.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,High_B,0.96,136.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_B,0.96,243.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,High_C,0.96,378.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_C,0.96,496.3,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,High_D,0.96,647.3,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_D,0.96,787.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,High_E,0.96,962,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_E,0.96,1129.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,High_F,0.96,1365.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_F,0.96,1627.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,High_G,0.96,1996.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_G,0.96,2418,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,High_B,0.96,425.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,Low_B,0.96,425.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,High_C,0.96,425.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,Low_C,0.96,425.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,High_D,0.96,425.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,Low_D,0.96,476.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,High_E,0.96,604.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,Low_E,0.96,727.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,High_F,0.96,899.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,Low_F,0.96,1092.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,High_G,0.96,1362.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,0-72,Low_G,0.96,1671.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,High_B,0.96,386.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,Low_B,0.96,386.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,High_C,0.96,386.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,Low_C,0.96,386.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,High_D,0.96,430.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,Low_D,0.96,543.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,High_E,0.96,682.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,Low_E,0.96,815,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,High_F,0.96,1001.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,Low_F,0.96,1209.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,High_G,0.96,1501.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,73-97,Low_G,0.96,1835.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,High_B,0.96,347.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,Low_B,0.96,347.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,High_C,0.96,347.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,Low_C,0.96,399.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,High_D,0.96,535.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,Low_D,0.96,665.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,High_E,0.96,824.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,Low_E,0.96,977.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,High_F,0.96,1192.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,Low_F,0.96,1431.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,High_G,0.96,1767.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,98-199,Low_G,0.96,2151.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,High_B,0.96,347.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,Low_B,0.96,412.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,High_C,0.96,630.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,Low_C,0.96,822.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,High_D,0.96,1068.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,Low_D,0.96,1295.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,High_E,0.96,1579.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,Low_E,0.96,1851.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,High_F,0.96,2234.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,Low_F,0.96,2661,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,High_G,0.96,3259.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,DHS CHP,200,Low_G,0.96,3944.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,High_B,0.96,252.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,Low_B,0.96,252.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,High_C,0.96,252.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,Low_C,0.96,252.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,High_D,0.96,335.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,Low_D,0.96,432.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,High_E,0.96,550.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,Low_E,0.96,664.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,High_F,0.96,824.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,Low_F,0.96,1002.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,High_G,0.96,1253.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,0-72,Low_G,0.96,1539.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,High_B,0.96,229.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,Low_B,0.96,229.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,High_C,0.96,229.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,Low_C,0.96,282.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,High_D,0.96,390.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,Low_D,0.96,495.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,High_E,0.96,623.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,Low_E,0.96,746.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,High_F,0.96,919.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,Low_F,0.96,1112.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,High_G,0.96,1383.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,73-97,Low_G,0.96,1692.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,High_B,0.96,206.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,Low_B,0.96,206.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,High_C,0.96,265,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,Low_C,0.96,362.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,High_D,0.96,488.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,Low_D,0.96,609.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,High_E,0.96,756.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,Low_E,0.96,898.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,High_F,0.96,1097.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,Low_F,0.96,1319.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,High_G,0.96,1630.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,98-199,Low_G,0.96,1986.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,High_B,0.96,213.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,Low_B,0.96,374.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,High_C,0.96,577.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,Low_C,0.96,754.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,High_D,0.96,982.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,Low_D,0.96,1193.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,High_E,0.96,1456.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,Low_E,0.96,1708.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,High_F,0.96,2063.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,Low_F,0.96,2458.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,High_G,0.96,3013.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,DHS CHP,200,Low_G,0.96,3648.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,High_B,0.96,43.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,Low_B,0.96,43.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,High_C,0.96,95.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,Low_C,0.96,154.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,High_D,0.96,232,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,Low_D,0.96,307.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,High_E,0.96,399.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,Low_E,0.96,487.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,High_F,0.96,612.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,Low_F,0.96,750.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,High_G,0.96,945.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,0-72,Low_G,0.96,1167.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,High_B,0.96,39.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,Low_B,0.96,53.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,High_C,0.96,128.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,Low_C,0.96,193.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,High_D,0.96,277.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,Low_D,0.96,359.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,High_E,0.96,458.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,Low_E,0.96,554.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,High_F,0.96,688.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,Low_F,0.96,838.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,High_G,0.96,1048.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,73-97,Low_G,0.96,1289.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,High_B,0.96,35.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,Low_B,0.96,95.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,High_C,0.96,182.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,Low_C,0.96,258.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,High_D,0.96,356.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,Low_D,0.96,450.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,High_E,0.96,564.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,Low_E,0.96,674.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,High_F,0.96,829.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,Low_F,0.96,1001.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,High_G,0.96,1243.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,98-199,Low_G,0.96,1520.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,High_B,0.96,142.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,Low_B,0.96,267.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,High_C,0.96,425.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,Low_C,0.96,563.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,High_D,0.96,740,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,Low_D,0.96,903.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,High_E,0.96,1107.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,Low_E,0.96,1304,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,High_F,0.96,1579.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,Low_F,0.96,1886.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,High_G,0.96,2317.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,DHS CHP,200,Low_G,0.96,2810.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_B,0.96,6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,High_C,0.96,65.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_C,0.96,116.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,High_D,0.96,183.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_D,0.96,248.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,High_E,0.96,328,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_E,0.96,404.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,High_F,0.96,511.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_F,0.96,631.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,High_G,0.96,799.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_G,0.96,991.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_B,0.96,30.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,High_C,0.96,95.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_C,0.96,151.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,High_D,0.96,224.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_D,0.96,294.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,High_E,0.96,380.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_E,0.96,463.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,High_F,0.96,579.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_F,0.96,708.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,High_G,0.96,890.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_G,0.96,1098.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,High_B,0.96,9.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_B,0.96,68.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,High_C,0.96,143.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_C,0.96,209.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,High_D,0.96,293.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_D,0.96,374.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,High_E,0.96,473.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_E,0.96,568.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,High_F,0.96,702.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_F,0.96,851.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,High_G,0.96,1060.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_G,0.96,1299.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,High_B,0.96,109,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,Low_B,0.96,217.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,High_C,0.96,353.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,Low_C,0.96,472.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,High_D,0.96,625.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,Low_D,0.96,766.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,High_E,0.96,943.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,Low_E,0.96,1112.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,High_F,0.96,1350.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,Low_F,0.96,1616.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,High_G,0.96,1988.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,DHS CHP,200,Low_G,0.96,2414.7,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,High_B,0.96,21,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,Low_B,0.96,24.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,High_C,0.96,86.6,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,Low_C,0.96,140.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,High_D,0.96,210.9,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,Low_D,0.96,279.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,High_E,0.96,363.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,Low_E,0.96,443.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,High_F,0.96,556.3,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,Low_F,0.96,682.2,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,High_G,0.96,859,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,0-72,Low_G,0.96,1061,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,High_B,0.96,19.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,Low_B,0.96,49,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,High_C,0.96,116.9,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,Low_C,0.96,176.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,High_D,0.96,252.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,Low_D,0.96,326.6,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,High_E,0.96,417,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,Low_E,0.96,503.9,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,High_F,0.96,625.9,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,Low_F,0.96,762,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,High_G,0.96,953,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,73-97,Low_G,0.96,1171.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,High_B,0.96,24.7,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,Low_B,0.96,87.2,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,High_C,0.96,166.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,Low_C,0.96,235.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,High_D,0.96,323.9,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,Low_D,0.96,409.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,High_E,0.96,513.2,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,Low_E,0.96,613.2,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,High_F,0.96,753.6,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,Low_F,0.96,910.2,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,High_G,0.96,1130,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,98-199,Low_G,0.96,1381.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,High_B,0.96,129.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,Low_B,0.96,243.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,High_C,0.96,386.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,Low_C,0.96,511.9,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,High_D,0.96,672.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,Low_D,0.96,821.3,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,High_E,0.96,1006.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,Low_E,0.96,1185,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,High_F,0.96,1435.3,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,Low_F,0.96,1714.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,High_G,0.96,2106.2,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,DHS CHP,200,Low_G,0.96,2554.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,High_B,0.96,276.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,Low_B,0.96,276.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,High_C,0.96,276.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,Low_C,0.96,276.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,High_D,0.96,345.8,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,Low_D,0.96,444,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,High_E,0.96,563.8,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,Low_E,0.96,678.9,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,High_F,0.96,840.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,Low_F,0.96,1020.9,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,High_G,0.96,1274,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,0-72,Low_G,0.96,1563.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,High_B,0.96,251.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,Low_B,0.96,251.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,High_C,0.96,251.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,Low_C,0.96,292.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,High_D,0.96,401.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,Low_D,0.96,507.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,High_E,0.96,637.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,Low_E,0.96,761.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,High_F,0.96,936.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,Low_F,0.96,1131.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,High_G,0.96,1404.8,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,73-97,Low_G,0.96,1717.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,High_B,0.96,226,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,Low_B,0.96,226,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,High_C,0.96,273.7,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,Low_C,0.96,372.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,High_D,0.96,499.7,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,Low_D,0.96,621.8,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,High_E,0.96,770.9,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,Low_E,0.96,914.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,High_F,0.96,1115.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,Low_F,0.96,1339.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,High_G,0.96,1654.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,98-199,Low_G,0.96,2014.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,High_B,0.96,226,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,Low_B,0.96,384.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,High_C,0.96,589.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,Low_C,0.96,769,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,High_D,0.96,998.9,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,Low_D,0.96,1212.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,High_E,0.96,1477.8,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,Low_E,0.96,1733,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,High_F,0.96,2091.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,Low_F,0.96,2491.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,High_G,0.96,3052.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,DHS CHP,200,Low_G,0.96,3694,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,High_B,0.96,270.5,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,Low_B,0.96,270.5,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,High_C,0.96,270.5,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,Low_C,0.96,270.5,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,High_D,0.96,340.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,Low_D,0.96,438.3,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,High_E,0.96,558.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,Low_E,0.96,673.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,High_F,0.96,834.9,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,Low_F,0.96,1015.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,High_G,0.96,1268.3,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,0-72,Low_G,0.96,1557.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,High_B,0.96,246,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,Low_B,0.96,246,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,High_C,0.96,246,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,Low_C,0.96,286.9,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,High_D,0.96,396.3,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,Low_D,0.96,502.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,High_E,0.96,631.9,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,Low_E,0.96,756.3,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,High_F,0.96,931.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,Low_F,0.96,1126,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,High_G,0.96,1399.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,73-97,Low_G,0.96,1712.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,High_B,0.96,221.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,Low_B,0.96,221.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,High_C,0.96,269,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,Low_C,0.96,367.9,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,High_D,0.96,495,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,Low_D,0.96,617.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,High_E,0.96,766.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,Low_E,0.96,909.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,High_F,0.96,1110.5,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,Low_F,0.96,1334.8,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,High_G,0.96,1649.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,98-199,Low_G,0.96,2009.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,High_B,0.96,221.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,Low_B,0.96,379.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,High_C,0.96,584.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,Low_C,0.96,764.3,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,High_D,0.96,994.3,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,Low_D,0.96,1207.5,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,High_E,0.96,1473.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,Low_E,0.96,1728.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,High_F,0.96,2086.8,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,Low_F,0.96,2486.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,High_G,0.96,3047.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,DHS CHP,200,Low_G,0.96,3689.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_B,0.96,22.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_B,0.96,22.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_C,0.96,83.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_C,0.96,139.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_D,0.96,212.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_D,0.96,284,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_E,0.96,371.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_E,0.96,454.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_F,0.96,572.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_F,0.96,703.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_G,0.96,887.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_G,0.96,1097.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_B,0.96,20.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_B,0.96,44.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_C,0.96,115.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_C,0.96,177.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_D,0.96,256.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_D,0.96,333.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_E,0.96,427.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_E,0.96,518.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_F,0.96,645.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_F,0.96,787,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_G,0.96,985.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_G,0.96,1213.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_B,0.96,20,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_B,0.96,85.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_C,0.96,167.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_C,0.96,239.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_D,0.96,331.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_D,0.96,420.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_E,0.96,528.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_E,0.96,632.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_F,0.96,778.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_F,0.96,942,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_G,0.96,1170.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_G,0.96,1432.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,High_B,0.96,129.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_B,0.96,247.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,High_C,0.96,396.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_C,0.96,527.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,High_D,0.96,694.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_D,0.96,849.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,High_E,0.96,1042.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_E,0.96,1228.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,High_F,0.96,1488.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_F,0.96,1779.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,High_G,0.96,2187.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_G,0.96,2653.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_B,0.96,4.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,High_C,0.96,62.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_C,0.96,113.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,High_D,0.96,179.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_D,0.96,244.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,High_E,0.96,322.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_E,0.96,398.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,High_F,0.96,504.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_F,0.96,622.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,High_G,0.96,789.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_G,0.96,979,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_B,0.96,29.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,High_C,0.96,93,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_C,0.96,148.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,High_D,0.96,220.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_D,0.96,290.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,High_E,0.96,375.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_E,0.96,456.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,High_F,0.96,571.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_F,0.96,699.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,High_G,0.96,879.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_G,0.96,1084.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,High_B,0.96,8.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_B,0.96,66.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,High_C,0.96,141,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_C,0.96,205.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,High_D,0.96,289.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_D,0.96,369.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,High_E,0.96,467.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_E,0.96,561.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,High_F,0.96,693.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_F,0.96,840.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,High_G,0.96,1047.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_G,0.96,1283.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,High_B,0.96,106.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,Low_B,0.96,213.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,High_C,0.96,348.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,Low_C,0.96,466.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,High_D,0.96,617.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,Low_D,0.96,757,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,High_E,0.96,931.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,Low_E,0.96,1099,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,High_F,0.96,1334.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,Low_F,0.96,1596.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,High_G,0.96,1965.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,DHS CHP,200,Low_G,0.96,2386.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_B,0.96,188.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_B,0.96,188.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_C,0.96,188.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_C,0.96,244.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_D,0.96,336.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_D,0.96,425.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_E,0.96,535.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_E,0.96,640.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_F,0.96,787.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_F,0.96,952.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_G,0.96,1183.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_G,0.96,1447.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_B,0.96,171.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_B,0.96,171.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_C,0.96,208,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_C,0.96,285.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_D,0.96,385.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_D,0.96,482,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_E,0.96,600.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_E,0.96,713.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_F,0.96,873.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_F,0.96,1051,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_G,0.96,1300.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_G,0.96,1586,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_B,0.96,154.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_B,0.96,163.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_C,0.96,266.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_C,0.96,357,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_D,0.96,472.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_D,0.96,584.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_E,0.96,720.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_E,0.96,851,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_F,0.96,1034.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_F,0.96,1239.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_G,0.96,1526.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_G,0.96,1854.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,High_B,0.96,219,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_B,0.96,367.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,High_C,0.96,554.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_C,0.96,718.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,High_D,0.96,928.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_D,0.96,1122.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,High_E,0.96,1365.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_E,0.96,1598.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,High_F,0.96,1925.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_F,0.96,2289.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,High_G,0.96,2801.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_G,0.96,3387.3,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,High_B,0.96,119,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_B,0.96,119,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,High_C,0.96,143.3,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_C,0.96,209.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,High_D,0.96,294,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_D,0.96,377.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,High_E,0.96,478.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_E,0.96,576.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,High_F,0.96,713,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_F,0.96,865.7,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,High_G,0.96,1080,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_G,0.96,1325.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,High_B,0.96,108.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_B,0.96,108.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,High_C,0.96,176.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_C,0.96,248.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,High_D,0.96,341,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_D,0.96,430.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,High_E,0.96,540.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_E,0.96,645.9,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,High_F,0.96,793.9,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_F,0.96,958.9,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,High_G,0.96,1190.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_G,0.96,1455.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,High_B,0.96,97.3,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_B,0.96,137,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,High_C,0.96,232.7,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_C,0.96,316.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,High_D,0.96,424.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_D,0.96,527.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,High_E,0.96,653.7,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_E,0.96,775,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,High_F,0.96,945.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_F,0.96,1135.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,High_G,0.96,1401.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_G,0.96,1706.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,High_B,0.96,188.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,Low_B,0.96,326.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,High_C,0.96,499.9,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,Low_C,0.96,652.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,High_D,0.96,846.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,Low_D,0.96,1027.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,High_E,0.96,1252.3,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,Low_E,0.96,1468.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,High_F,0.96,1772,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,Low_F,0.96,2110.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,High_G,0.96,2585.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,DHS CHP,200,Low_G,0.96,3129,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,High_B,0.96,82.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,Low_B,0.96,82.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,High_C,0.96,141.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,Low_C,0.96,198.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,High_D,0.96,272.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,Low_D,0.96,345.4,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,High_E,0.96,434,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,Low_E,0.96,519.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,High_F,0.96,638.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,Low_F,0.96,772.3,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,High_G,0.96,959.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,0-72,Low_G,0.96,1173.6,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,High_B,0.96,75,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,Low_B,0.96,96.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,High_C,0.96,168.7,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,Low_C,0.96,231.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,High_D,0.96,312.4,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,Low_D,0.96,390.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,High_E,0.96,486.7,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,Low_E,0.96,578.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,High_F,0.96,708.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,Low_F,0.96,852.3,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,High_G,0.96,1054.7,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,73-97,Low_G,0.96,1286.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,High_B,0.96,67.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,Low_B,0.96,132.7,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,High_C,0.96,216.3,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,Low_C,0.96,289.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,High_D,0.96,383.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,Low_D,0.96,473.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,High_E,0.96,584.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,Low_E,0.96,690.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,High_F,0.96,838.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,Low_F,0.96,1004.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,High_G,0.96,1237.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,98-199,Low_G,0.96,1504.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,High_B,0.96,177.6,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,Low_B,0.96,298.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,High_C,0.96,449.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,Low_C,0.96,582.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,High_D,0.96,752.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,Low_D,0.96,910.6,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,High_E,0.96,1107.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,Low_E,0.96,1296,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,High_F,0.96,1561.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,Low_F,0.96,1857,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,High_G,0.96,2272.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,DHS CHP,200,Low_G,0.96,2746.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,High_B,0.96,48.2,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,Low_B,0.96,64,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,High_C,0.96,120.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,Low_C,0.96,169,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,High_D,0.96,232.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,Low_D,0.96,294,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,High_E,0.96,369.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,Low_E,0.96,441.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,High_F,0.96,543.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,Low_F,0.96,657.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,High_G,0.96,816.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,0-72,Low_G,0.96,998.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,High_B,0.96,43.8,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,Low_B,0.96,82.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,High_C,0.96,143.5,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,Low_C,0.96,197,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,High_D,0.96,265.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,Low_D,0.96,332.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,High_E,0.96,414.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,Low_E,0.96,492.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,High_F,0.96,602.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,Low_F,0.96,725.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,High_G,0.96,897.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,73-97,Low_G,0.96,1094.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,High_B,0.96,56.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,Low_B,0.96,113,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,High_C,0.96,184.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,Low_C,0.96,246.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,High_D,0.96,326.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,Low_D,0.96,403.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,High_E,0.96,497.2,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,Low_E,0.96,587.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,High_F,0.96,714,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,Low_F,0.96,855.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,High_G,0.96,1053.5,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,98-199,Low_G,0.96,1280.2,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,High_B,0.96,151.2,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,Low_B,0.96,253.8,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,High_C,0.96,382.8,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,Low_C,0.96,496,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,High_D,0.96,640.8,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,Low_D,0.96,775.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,High_E,0.96,942.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,Low_E,0.96,1103.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,High_F,0.96,1328.8,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,Low_F,0.96,1580.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,High_G,0.96,1933.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,DHS CHP,200,Low_G,0.96,2338,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,High_B,0.96,34.2,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,Low_B,0.96,57.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,High_C,0.96,107.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,Low_C,0.96,151.2,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,High_D,0.96,207.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,Low_D,0.96,263.1,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,High_E,0.96,330.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,Low_E,0.96,395.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,High_F,0.96,486.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,Low_F,0.96,588.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,High_G,0.96,731,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,0-72,Low_G,0.96,894.1,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,High_B,0.96,31.1,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,Low_B,0.96,73.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,High_C,0.96,128.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,Low_C,0.96,176.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,High_D,0.96,238,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,Low_D,0.96,297.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,High_E,0.96,370.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,Low_E,0.96,440.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,High_F,0.96,539.4,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,Low_F,0.96,649.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,High_G,0.96,803.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,73-97,Low_G,0.96,979.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,High_B,0.96,50.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,Low_B,0.96,101.1,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,High_C,0.96,164.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,Low_C,0.96,220.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,High_D,0.96,292.2,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,Low_D,0.96,361,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,High_E,0.96,445,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,Low_E,0.96,525.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,High_F,0.96,639.1,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,Low_F,0.96,765.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,High_G,0.96,943,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,98-199,Low_G,0.96,1145.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,High_B,0.96,135.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,Low_B,0.96,227.2,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,High_C,0.96,342.6,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,Low_C,0.96,443.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,High_D,0.96,573.6,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,Low_D,0.96,693.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,High_E,0.96,843.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,Low_E,0.96,987.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,High_F,0.96,1189.4,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,Low_F,0.96,1414.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,High_G,0.96,1731,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,DHS CHP,200,Low_G,0.96,2092.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_B,0.96,19.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_B,0.96,47.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_C,0.96,88.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_C,0.96,124.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_D,0.96,171.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_D,0.96,216.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_E,0.96,272.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_E,0.96,326,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_F,0.96,401.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_F,0.96,484.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_G,0.96,602.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_G,0.96,736.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_B,0.96,25.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_B,0.96,60.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_C,0.96,105.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_C,0.96,145.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_D,0.96,196.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_D,0.96,245.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_E,0.96,305.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_E,0.96,363.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_F,0.96,444.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_F,0.96,535.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_G,0.96,662.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_G,0.96,807.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_B,0.96,41.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_B,0.96,83.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_C,0.96,135.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_C,0.96,181.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_D,0.96,240.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_D,0.96,297.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_E,0.96,366.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_E,0.96,433.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_F,0.96,526.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_F,0.96,630.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_G,0.96,777.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_G,0.96,944.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,High_B,0.96,111.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_B,0.96,187.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,High_C,0.96,282.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_C,0.96,365.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,High_D,0.96,472.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_D,0.96,571.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,High_E,0.96,695.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_E,0.96,813.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,High_F,0.96,980.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_F,0.96,1165.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,High_G,0.96,1426.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_G,0.96,1724.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,High_B,0.96,10.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_B,0.96,32.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,High_C,0.96,61.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_C,0.96,86.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,High_D,0.96,118.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_D,0.96,150,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,High_E,0.96,188.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_E,0.96,225.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,High_F,0.96,277.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_F,0.96,335.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,High_G,0.96,416.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_G,0.96,509.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,High_B,0.96,17.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_B,0.96,42,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,High_C,0.96,73.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_C,0.96,100.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,High_D,0.96,135.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_D,0.96,169.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,High_E,0.96,211.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_E,0.96,251.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,High_F,0.96,307.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_F,0.96,370.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,High_G,0.96,458,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_G,0.96,558.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,High_B,0.96,28.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_B,0.96,57.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,High_C,0.96,93.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_C,0.96,125.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,High_D,0.96,166.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_D,0.96,205.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,High_E,0.96,253.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_E,0.96,299.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,High_F,0.96,364.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_F,0.96,436.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,High_G,0.96,537.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_G,0.96,653.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,High_B,0.96,77.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,Low_B,0.96,129.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,High_C,0.96,195.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,Low_C,0.96,253.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,High_D,0.96,327,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,Low_D,0.96,395.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,High_E,0.96,480.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,Low_E,0.96,562.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,High_F,0.96,678,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,Low_F,0.96,806.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,High_G,0.96,986.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS CHP,200,Low_G,0.96,1193,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,0-72,High_D,0.96,487.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,0-72,Low_D,0.96,532.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,0-72,High_E,0.96,645.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,0-72,Low_E,0.96,754.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,0-72,High_F,0.96,906.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,0-72,Low_F,0.96,1076.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,0-72,High_G,0.96,1315.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,0-72,Low_G,0.96,1587.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,73-97,High_D,0.96,591.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,73-97,Low_D,0.96,591.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,73-97,High_E,0.96,704.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,73-97,Low_E,0.96,821.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,73-97,High_F,0.96,986.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,73-97,Low_F,0.96,1170,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,73-97,High_G,0.96,1427.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,73-97,Low_G,0.96,1722.8,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,98-199,High_D,0.96,705,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,98-199,Low_D,0.96,705,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,98-199,High_E,0.96,820,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,98-199,Low_E,0.96,955,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,98-199,High_F,0.96,1144.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,98-199,Low_F,0.96,1356,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,98-199,High_G,0.96,1652.8,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,98-199,Low_G,0.96,1992.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,200,High_D,0.96,1314,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,200,Low_D,0.96,1314,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,200,High_E,0.96,1486.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,200,Low_E,0.96,1727,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,200,High_F,0.96,2064.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,200,Low_F,0.96,2441.8,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,200,High_G,0.96,2970.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,GSHP,200,Low_G,0.96,3575.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,0-72,High_D,0.96,383.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,0-72,Low_D,0.96,463.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,0-72,High_E,0.96,562.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,0-72,Low_E,0.96,656.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,0-72,High_F,0.96,789.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,0-72,Low_F,0.96,937.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,0-72,High_G,0.96,1145.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,0-72,Low_G,0.96,1382.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,73-97,High_D,0.96,419.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,73-97,Low_D,0.96,506.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,73-97,High_E,0.96,613.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,73-97,Low_E,0.96,715.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,73-97,High_F,0.96,858.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,73-97,Low_F,0.96,1018.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,73-97,High_G,0.96,1243.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,73-97,Low_G,0.96,1500.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,98-199,High_D,0.96,491.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,98-199,Low_D,0.96,591.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,98-199,High_E,0.96,714.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,98-199,Low_E,0.96,831.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,98-199,High_F,0.96,996.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,98-199,Low_F,0.96,1180.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,98-199,High_G,0.96,1439.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,98-199,Low_G,0.96,1734.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,200,High_D,0.96,901.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,200,Low_D,0.96,1076.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,200,High_E,0.96,1294.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,200,Low_E,0.96,1503.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,200,High_F,0.96,1798.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,200,Low_F,0.96,2126.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,200,High_G,0.96,2586.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,GSHP,200,Low_G,0.96,3113.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,0-72,High_D,0.96,222.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,0-72,Low_D,0.96,269.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,0-72,High_E,0.96,326.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,0-72,Low_E,0.96,381.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,0-72,High_F,0.96,458.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,0-72,Low_F,0.96,544.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,0-72,High_G,0.96,665.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,0-72,Low_G,0.96,803.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,73-97,High_D,0.96,243.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,73-97,Low_D,0.96,294.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,73-97,High_E,0.96,356.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,73-97,Low_E,0.96,415.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,73-97,High_F,0.96,498.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,73-97,Low_F,0.96,591.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,73-97,High_G,0.96,722.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,73-97,Low_G,0.96,871.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,98-199,High_D,0.96,285.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,98-199,Low_D,0.96,343.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,98-199,High_E,0.96,414.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,98-199,Low_E,0.96,483.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,98-199,High_F,0.96,579,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,98-199,Low_F,0.96,685.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,98-199,High_G,0.96,836.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,98-199,Low_G,0.96,1007.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,200,High_D,0.96,523.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,200,Low_D,0.96,625.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,200,High_E,0.96,751.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,200,Low_E,0.96,873.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,200,High_F,0.96,1044.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,200,Low_F,0.96,1235.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,200,High_G,0.96,1502.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,GSHP,200,Low_G,0.96,1808.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,0-72,High_D,0.96,222.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,0-72,Low_D,0.96,269.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,0-72,High_E,0.96,326.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,0-72,Low_E,0.96,381.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,0-72,High_F,0.96,458.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,0-72,Low_F,0.96,544.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,0-72,High_G,0.96,665.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,0-72,Low_G,0.96,803.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,73-97,High_D,0.96,243.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,73-97,Low_D,0.96,294.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,73-97,High_E,0.96,356.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,73-97,Low_E,0.96,415.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,73-97,High_F,0.96,498.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,73-97,Low_F,0.96,591.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,73-97,High_G,0.96,722.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,73-97,Low_G,0.96,871.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,98-199,High_D,0.96,285.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,98-199,Low_D,0.96,343.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,98-199,High_E,0.96,414.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,98-199,Low_E,0.96,483.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,98-199,High_F,0.96,579,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,98-199,Low_F,0.96,685.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,98-199,High_G,0.96,836.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,98-199,Low_G,0.96,1007.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,200,High_D,0.96,523.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,200,Low_D,0.96,625.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,200,High_E,0.96,751.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,200,Low_E,0.96,873.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,200,High_F,0.96,1044.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,200,Low_F,0.96,1235.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,200,High_G,0.96,1502.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,GSHP,200,Low_G,0.96,1808.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,0-72,High_D,0.96,361.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,0-72,Low_D,0.96,429.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,0-72,High_E,0.96,513.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,0-72,Low_E,0.96,594.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,0-72,High_F,0.96,708,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,0-72,Low_F,0.96,834.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,0-72,High_G,0.96,1011.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,0-72,Low_G,0.96,1214.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,73-97,High_D,0.96,389.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,73-97,Low_D,0.96,463.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,73-97,High_E,0.96,554.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,73-97,Low_E,0.96,641.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,73-97,High_F,0.96,764.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,73-97,Low_F,0.96,901,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,73-97,High_G,0.96,1092.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,73-97,Low_G,0.96,1312.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,98-199,High_D,0.96,447.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,98-199,Low_D,0.96,533,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,98-199,High_E,0.96,637.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,98-199,Low_E,0.96,737.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,98-199,High_F,0.96,879,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,98-199,Low_F,0.96,1036.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,98-199,High_G,0.96,1257,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,98-199,Low_G,0.96,1509.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,200,High_D,0.96,797.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,200,Low_D,0.96,947,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,200,High_E,0.96,1133.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,200,Low_E,0.96,1312.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,200,High_F,0.96,1563.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,200,Low_F,0.96,1843.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,200,High_G,0.96,2237.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,GSHP,200,Low_G,0.96,2687.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,0-72,High_D,0.96,319.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,0-72,Low_D,0.96,378,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,0-72,High_E,0.96,449.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,0-72,Low_E,0.96,518.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,0-72,High_F,0.96,615.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,0-72,Low_F,0.96,723.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,0-72,High_G,0.96,875.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,0-72,Low_G,0.96,1048.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,73-97,High_D,0.96,342.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,73-97,Low_D,0.96,405.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,73-97,High_E,0.96,483.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,73-97,Low_E,0.96,558,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,73-97,High_F,0.96,662.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,73-97,Low_F,0.96,779.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,73-97,High_G,0.96,943.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,73-97,Low_G,0.96,1130.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,98-199,High_D,0.96,391,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,98-199,Low_D,0.96,464.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,98-199,High_E,0.96,553.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,98-199,Low_E,0.96,639.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,98-199,High_F,0.96,759.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,98-199,Low_F,0.96,894.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,98-199,High_G,0.96,1082.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,98-199,Low_G,0.96,1298.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,200,High_D,0.96,690.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,200,Low_D,0.96,817.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,200,High_E,0.96,976.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,200,Low_E,0.96,1129.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,200,High_F,0.96,1344.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,200,Low_F,0.96,1584,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,200,High_G,0.96,1920.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,GSHP,200,Low_G,0.96,2304.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,0-72,High_D,0.96,192.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,0-72,Low_D,0.96,232.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,0-72,High_E,0.96,282.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,0-72,Low_E,0.96,329.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,0-72,High_F,0.96,396.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,0-72,Low_F,0.96,470.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,0-72,High_G,0.96,575.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,0-72,Low_G,0.96,694.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,73-97,High_D,0.96,210.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,73-97,Low_D,0.96,254.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,73-97,High_E,0.96,308,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,73-97,Low_E,0.96,359.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,73-97,High_F,0.96,431.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,73-97,Low_F,0.96,511.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,73-97,High_G,0.96,624.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,73-97,Low_G,0.96,753.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,98-199,High_D,0.96,246.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,98-199,Low_D,0.96,297.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,98-199,High_E,0.96,358.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,98-199,Low_E,0.96,417.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,98-199,High_F,0.96,500.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,98-199,Low_F,0.96,593,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,98-199,High_G,0.96,722.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,98-199,Low_G,0.96,871.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,200,High_D,0.96,452.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,200,Low_D,0.96,540.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,200,High_E,0.96,650,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,200,Low_E,0.96,755.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,200,High_F,0.96,903,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,200,Low_F,0.96,1067.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,200,High_G,0.96,1299.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,GSHP,200,Low_G,0.96,1563.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,0-72,High_D,0.96,141.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,0-72,Low_D,0.96,170.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,0-72,High_E,0.96,207.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,0-72,Low_E,0.96,241.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,0-72,High_F,0.96,290.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,0-72,Low_F,0.96,345.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,0-72,High_G,0.96,421.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,0-72,Low_G,0.96,509.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,73-97,High_D,0.96,154.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,73-97,Low_D,0.96,186.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,73-97,High_E,0.96,225.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,73-97,Low_E,0.96,263.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,73-97,High_F,0.96,316.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,73-97,Low_F,0.96,375.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,73-97,High_G,0.96,458.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,73-97,Low_G,0.96,552.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,98-199,High_D,0.96,181.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,98-199,Low_D,0.96,218,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,98-199,High_E,0.96,263.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,98-199,Low_E,0.96,306.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,98-199,High_F,0.96,367.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,98-199,Low_F,0.96,435,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,98-199,High_G,0.96,530.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,98-199,Low_G,0.96,639.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,200,High_D,0.96,332,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,200,Low_D,0.96,396.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,200,High_E,0.96,476.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,200,Low_E,0.96,554.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,200,High_F,0.96,662.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,200,Low_F,0.96,783.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,200,High_G,0.96,953.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,GSHP,200,Low_G,0.96,1147.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,0-72,High_D,0.96,45.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,0-72,Low_D,0.96,24.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,73-97,High_D,0.96,22.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,GSHP,200,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,0-72,High_D,0.96,127.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,0-72,Low_D,0.96,128.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,0-72,High_E,0.96,128.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,0-72,Low_E,0.96,129,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,0-72,High_F,0.96,129.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,0-72,Low_F,0.96,130.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,0-72,High_G,0.96,131,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,0-72,Low_G,0.96,132,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,73-97,High_D,0.96,116.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,73-97,Low_D,0.96,117,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,73-97,High_E,0.96,117.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,73-97,Low_E,0.96,117.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,73-97,High_F,0.96,118.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,73-97,Low_F,0.96,119,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,73-97,High_G,0.96,119.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,73-97,Low_G,0.96,121,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,98-199,High_D,0.96,105.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,98-199,Low_D,0.96,105.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,98-199,High_E,0.96,106.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,98-199,Low_E,0.96,106.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,98-199,High_F,0.96,107.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,98-199,Low_F,0.96,108.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,98-199,High_G,0.96,109.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,98-199,Low_G,0.96,110.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,200,High_D,0.96,107.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,200,Low_D,0.96,107.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,200,High_E,0.96,108.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,200,Low_E,0.96,109.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,200,High_F,0.96,110.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,200,Low_F,0.96,112,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,200,High_G,0.96,113.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,GSHP,200,Low_G,0.96,116,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,0-72,High_D,0.96,286.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,0-72,Low_D,0.96,328.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,0-72,High_E,0.96,380.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,0-72,Low_E,0.96,430.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,0-72,High_F,0.96,500.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,0-72,Low_F,0.96,578.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,0-72,High_G,0.96,687.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,0-72,Low_G,0.96,812.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,73-97,High_D,0.96,297.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,73-97,Low_D,0.96,343.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,73-97,High_E,0.96,399.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,73-97,Low_E,0.96,453.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,73-97,High_F,0.96,529,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,73-97,Low_F,0.96,613.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,73-97,High_G,0.96,731.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,73-97,Low_G,0.96,866.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,98-199,High_D,0.96,327.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,98-199,Low_D,0.96,380.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,98-199,High_E,0.96,445.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,98-199,Low_E,0.96,507,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,98-199,High_F,0.96,594,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,98-199,Low_F,0.96,691,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,98-199,High_G,0.96,827.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,98-199,Low_G,0.96,982.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,200,High_D,0.96,543.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,200,Low_D,0.96,635.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,200,High_E,0.96,750.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,200,Low_E,0.96,861.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,200,High_F,0.96,1016.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,200,Low_F,0.96,1189,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,200,High_G,0.96,1431.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,GSHP,200,Low_G,0.96,1709.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,0-72,High_D,0.96,222.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,0-72,Low_D,0.96,248.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,0-72,High_E,0.96,279.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,0-72,Low_E,0.96,309.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,0-72,High_F,0.96,351.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,0-72,Low_F,0.96,398.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,0-72,High_G,0.96,464.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,0-72,Low_G,0.96,540.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,73-97,High_D,0.96,225.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,73-97,Low_D,0.96,253,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,73-97,High_E,0.96,286.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,73-97,Low_E,0.96,319.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,73-97,High_F,0.96,364.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,73-97,Low_F,0.96,415.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,73-97,High_G,0.96,486.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,73-97,Low_G,0.96,568.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,98-199,High_D,0.96,238.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,98-199,Low_D,0.96,270.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,98-199,High_E,0.96,309.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,98-199,Low_E,0.96,346.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,98-199,High_F,0.96,399.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,98-199,Low_F,0.96,457.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,98-199,High_G,0.96,540,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,98-199,Low_G,0.96,633.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,200,High_D,0.96,369,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,200,Low_D,0.96,424.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,200,High_E,0.96,493.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,200,Low_E,0.96,560.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,200,High_F,0.96,654,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,200,Low_F,0.96,758.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,200,High_G,0.96,904.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,GSHP,200,Low_G,0.96,1071.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,0-72,High_D,0.96,184.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,0-72,Low_D,0.96,200.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,0-72,High_E,0.96,219.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,0-72,Low_E,0.96,237.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,0-72,High_F,0.96,263,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,0-72,Low_F,0.96,291.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,0-72,High_G,0.96,331.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,0-72,Low_G,0.96,377,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,73-97,High_D,0.96,181.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,73-97,Low_D,0.96,198.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,73-97,High_E,0.96,219,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,73-97,Low_E,0.96,238.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,73-97,High_F,0.96,266.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,73-97,Low_F,0.96,297,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,73-97,High_G,0.96,340.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,73-97,Low_G,0.96,389.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,98-199,High_D,0.96,185.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,98-199,Low_D,0.96,204.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,98-199,High_E,0.96,228.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,98-199,Low_E,0.96,250.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,98-199,High_F,0.96,282.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,98-199,Low_F,0.96,318,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,98-199,High_G,0.96,367.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,98-199,Low_G,0.96,424.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,200,High_D,0.96,264.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,200,Low_D,0.96,297.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,200,High_E,0.96,339.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,200,Low_E,0.96,380.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,200,High_F,0.96,436.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,200,Low_F,0.96,499.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,200,High_G,0.96,588.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,GSHP,200,Low_G,0.96,689.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,0-72,High_D,0.96,400,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,0-72,Low_D,0.96,482.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,0-72,High_E,0.96,582.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,0-72,Low_E,0.96,679.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,0-72,High_F,0.96,814.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,0-72,Low_F,0.96,965.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,0-72,High_G,0.96,1177.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,0-72,Low_G,0.96,1420.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,73-97,High_D,0.96,436.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,73-97,Low_D,0.96,525.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,73-97,High_E,0.96,634,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,73-97,Low_E,0.96,738.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,73-97,High_F,0.96,884.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,73-97,Low_F,0.96,1047.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,73-97,High_G,0.96,1277.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,73-97,Low_G,0.96,1539.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,98-199,High_D,0.96,508.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,98-199,Low_D,0.96,611.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,98-199,High_E,0.96,736,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,98-199,Low_E,0.96,856,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,98-199,High_F,0.96,1024.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,98-199,Low_F,0.96,1212.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,98-199,High_G,0.96,1476.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,98-199,Low_G,0.96,1777.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,200,High_D,0.96,927.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,200,Low_D,0.96,1105.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,200,High_E,0.96,1328.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,200,Low_E,0.96,1542.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,200,High_F,0.96,1842.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,200,Low_F,0.96,2177.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,200,High_G,0.96,2647.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,GSHP,200,Low_G,0.96,3184.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,High_D,0.96,189.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,Low_D,0.96,225.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,High_E,0.96,269.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,Low_E,0.96,312.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,High_F,0.96,371.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,Low_F,0.96,437.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,High_G,0.96,530.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,Low_G,0.96,637.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,High_D,0.96,204.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,Low_D,0.96,243.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,High_E,0.96,291,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,Low_E,0.96,336.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,High_F,0.96,401,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,Low_F,0.96,472.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,High_G,0.96,573.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,Low_G,0.96,688.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,High_D,0.96,234.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,Low_D,0.96,279.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,High_E,0.96,334.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,Low_E,0.96,387.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,High_F,0.96,461,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,Low_F,0.96,543.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,High_G,0.96,659.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,Low_G,0.96,791.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,High_D,0.96,418.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,Low_D,0.96,496.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,High_E,0.96,594.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,Low_E,0.96,688.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,High_F,0.96,819.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,Low_F,0.96,966.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,High_G,0.96,1173,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,Low_G,0.96,1408.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,0-72,High_D,0.96,391.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,0-72,Low_D,0.96,473.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,0-72,High_E,0.96,573.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,0-72,Low_E,0.96,670.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,0-72,High_F,0.96,805.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,0-72,Low_F,0.96,956.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,0-72,High_G,0.96,1168.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,0-72,Low_G,0.96,1411.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,73-97,High_D,0.96,428.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,73-97,Low_D,0.96,517.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,73-97,High_E,0.96,625.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,73-97,Low_E,0.96,730.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,73-97,High_F,0.96,876.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,73-97,Low_F,0.96,1039.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,73-97,High_G,0.96,1269,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,73-97,Low_G,0.96,1531.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,98-199,High_D,0.96,501.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,98-199,Low_D,0.96,603.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,98-199,High_E,0.96,728.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,98-199,Low_E,0.96,848.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,98-199,High_F,0.96,1017.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,98-199,Low_F,0.96,1205.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,98-199,High_G,0.96,1468.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,98-199,Low_G,0.96,1770.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,200,High_D,0.96,919.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,200,Low_D,0.96,1098.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,200,High_E,0.96,1321,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,200,Low_E,0.96,1534.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,200,High_F,0.96,1835.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,200,Low_F,0.96,2170,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,200,High_G,0.96,2640.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,GSHP,200,Low_G,0.96,3177.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,0-72,High_D,0.96,462.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,0-72,Low_D,0.96,505.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,0-72,High_E,0.96,612.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,0-72,Low_E,0.96,715.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,0-72,High_F,0.96,860.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,0-72,Low_F,0.96,1021.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,0-72,High_G,0.96,1248.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,0-72,Low_G,0.96,1507.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,73-97,High_D,0.96,561.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,73-97,Low_D,0.96,561.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,73-97,High_E,0.96,668.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,73-97,Low_E,0.96,779.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,73-97,High_F,0.96,936.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,73-97,Low_F,0.96,1110.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,73-97,High_G,0.96,1355.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,73-97,Low_G,0.96,1635.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,98-199,High_D,0.96,669.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,98-199,Low_D,0.96,669.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,98-199,High_E,0.96,778.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,98-199,Low_E,0.96,906.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,98-199,High_F,0.96,1086.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,98-199,Low_F,0.96,1287.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,98-199,High_G,0.96,1569,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,98-199,Low_G,0.96,1891.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,200,High_D,0.96,1247.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,200,Low_D,0.96,1247.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,200,High_E,0.96,1411.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,200,Low_E,0.96,1639.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,200,High_F,0.96,1960.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,200,Low_F,0.96,2318,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,200,High_G,0.96,2820.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Air to Water ASHP,200,Low_G,0.96,3394.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,High_D,0.96,353.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,Low_D,0.96,427.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,High_E,0.96,518,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,Low_E,0.96,605.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,High_F,0.96,727.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,Low_F,0.96,863.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,High_G,0.96,1055.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,Low_G,0.96,1274.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,High_D,0.96,386.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,Low_D,0.96,467.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,High_E,0.96,565.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,Low_E,0.96,659.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,High_F,0.96,791.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,Low_F,0.96,938.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,High_G,0.96,1145.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,Low_G,0.96,1382.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,High_D,0.96,452.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,Low_D,0.96,545.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,High_E,0.96,658,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,Low_E,0.96,766.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,High_F,0.96,918.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,Low_F,0.96,1088.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,High_G,0.96,1326.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,Low_G,0.96,1598.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,200,High_D,0.96,830.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,200,Low_D,0.96,991.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,200,High_E,0.96,1192.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,200,Low_E,0.96,1385.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,200,High_F,0.96,1656.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,200,Low_F,0.96,1959.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,200,High_G,0.96,2383.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Air to Water ASHP,200,Low_G,0.96,2869.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,0-72,High_D,0.96,171.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,0-72,Low_D,0.96,207.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,0-72,High_E,0.96,251.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,0-72,Low_E,0.96,293.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,0-72,High_F,0.96,352.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,0-72,Low_F,0.96,418.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,0-72,High_G,0.96,511.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,0-72,Low_G,0.96,617.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,73-97,High_D,0.96,187.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,73-97,Low_D,0.96,226.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,73-97,High_E,0.96,273.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,73-97,Low_E,0.96,319.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,73-97,High_F,0.96,383.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,73-97,Low_F,0.96,455,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,73-97,High_G,0.96,555.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,73-97,Low_G,0.96,670,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,98-199,High_D,0.96,219.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,98-199,Low_D,0.96,264.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,98-199,High_E,0.96,318.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,98-199,Low_E,0.96,371.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,98-199,High_F,0.96,445.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,98-199,Low_F,0.96,527.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,98-199,High_G,0.96,642.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,98-199,Low_G,0.96,774.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,200,High_D,0.96,402.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,200,Low_D,0.96,480.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,200,High_E,0.96,578.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,200,Low_E,0.96,671.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,200,High_F,0.96,803.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,200,Low_F,0.96,949.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,200,High_G,0.96,1155.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Air to Water ASHP,200,Low_G,0.96,1390.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,High_D,0.96,84.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,Low_D,0.96,101.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,High_E,0.96,123.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,Low_E,0.96,144,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,High_F,0.96,173.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,Low_F,0.96,205.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,High_G,0.96,251.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,Low_G,0.96,303.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,High_D,0.96,92.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,Low_D,0.96,111.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,High_E,0.96,134.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,Low_E,0.96,156.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,High_F,0.96,188.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,Low_F,0.96,223.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,High_G,0.96,272.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,Low_G,0.96,329.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,High_D,0.96,107.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,Low_D,0.96,129.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,High_E,0.96,156.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,Low_E,0.96,182.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,High_F,0.96,218.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,Low_F,0.96,259,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,High_G,0.96,315.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,Low_G,0.96,380.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,200,High_D,0.96,197.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,200,Low_D,0.96,236.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,200,High_E,0.96,283.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,200,Low_E,0.96,329.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,200,High_F,0.96,394.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,200,Low_F,0.96,466.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,200,High_G,0.96,567.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Air to Water ASHP,200,Low_G,0.96,682.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,High_D,0.96,328.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,Low_D,0.96,389.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,High_E,0.96,463.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,Low_E,0.96,535.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,High_F,0.96,635.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,Low_F,0.96,747.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,High_G,0.96,905.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,Low_G,0.96,1084.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,High_D,0.96,352.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,Low_D,0.96,418.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,High_E,0.96,499,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,Low_E,0.96,576.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,High_F,0.96,684.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,Low_F,0.96,806,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,High_G,0.96,976,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,Low_G,0.96,1170.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,High_D,0.96,403.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,Low_D,0.96,479.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,High_E,0.96,571.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,Low_E,0.96,660.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,High_F,0.96,785.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,Low_F,0.96,925.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,High_G,0.96,1120.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,Low_G,0.96,1344.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,High_D,0.96,713.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,Low_D,0.96,846,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,High_E,0.96,1011.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,Low_E,0.96,1169.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,High_F,0.96,1392.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,Low_F,0.96,1640.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,High_G,0.96,1989.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,Low_G,0.96,2388.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,High_D,0.96,280.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,Low_D,0.96,330.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,High_E,0.96,391,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,Low_E,0.96,449.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,High_F,0.96,530.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,Low_F,0.96,622,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,High_G,0.96,749.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,Low_G,0.96,896.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,High_D,0.96,299.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,Low_D,0.96,352.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,High_E,0.96,418.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,Low_E,0.96,481.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,High_F,0.96,569.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,Low_F,0.96,668.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,High_G,0.96,806.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,Low_G,0.96,964.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,High_D,0.96,339.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,Low_D,0.96,401,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,High_E,0.96,476.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,Low_E,0.96,548.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,High_F,0.96,650.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,Low_F,0.96,763.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,High_G,0.96,922.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,Low_G,0.96,1104.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,200,High_D,0.96,591.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,200,Low_D,0.96,699.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,200,High_E,0.96,833.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,200,Low_E,0.96,962.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,200,High_F,0.96,1143.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,200,Low_F,0.96,1345.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,200,High_G,0.96,1629.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Air to Water ASHP,200,Low_G,0.96,1953.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,High_D,0.96,136.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,Low_D,0.96,165.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,High_E,0.96,200.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,Low_E,0.96,234.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,High_F,0.96,282,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,Low_F,0.96,334.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,High_G,0.96,409.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,Low_G,0.96,493.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,High_D,0.96,150,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,Low_D,0.96,181.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,High_E,0.96,219.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,Low_E,0.96,255.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,High_F,0.96,306.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,Low_F,0.96,364,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,High_G,0.96,444.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,Low_G,0.96,535.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,High_D,0.96,175.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,Low_D,0.96,211.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,High_E,0.96,255.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,Low_E,0.96,297.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,High_F,0.96,356,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,Low_F,0.96,421.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,High_G,0.96,514.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,Low_G,0.96,619.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,High_D,0.96,322,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,Low_D,0.96,384.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,High_E,0.96,462.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,Low_E,0.96,537.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,High_F,0.96,642.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,Low_F,0.96,759.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,High_G,0.96,924.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,Low_G,0.96,1112.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,High_D,0.96,78.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,Low_D,0.96,95.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,High_E,0.96,115.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,Low_E,0.96,134.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,High_F,0.96,162.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,Low_F,0.96,192.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,High_G,0.96,235.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,Low_G,0.96,283.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,High_D,0.96,86.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,Low_D,0.96,104.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,High_E,0.96,125.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,Low_E,0.96,146.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,High_F,0.96,176.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,Low_F,0.96,209.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,High_G,0.96,255.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,Low_G,0.96,308.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,High_D,0.96,100.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,Low_D,0.96,121.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,High_E,0.96,146.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,Low_E,0.96,170.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,High_F,0.96,204.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,Low_F,0.96,242.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,High_G,0.96,295.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,Low_G,0.96,356.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,200,High_D,0.96,185.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,200,Low_D,0.96,221,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,200,High_E,0.96,265.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,200,Low_E,0.96,308.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,200,High_F,0.96,369.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,200,Low_F,0.96,436.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,200,High_G,0.96,531.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Air to Water ASHP,200,Low_G,0.96,639.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,High_D,0.96,63.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,Low_D,0.96,46.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,High_E,0.96,26.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,Low_E,0.96,6.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,High_D,0.96,43,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,Low_D,0.96,24.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,High_E,0.96,2.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,High_D,0.96,15,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,Air to Water ASHP,200,Low_G,0.96,0,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,0-72,High_D,0.96,243.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,0-72,Low_D,0.96,274.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,0-72,High_E,0.96,312.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,0-72,Low_E,0.96,348.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,0-72,High_F,0.96,399.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,0-72,Low_F,0.96,456.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,0-72,High_G,0.96,536.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,0-72,Low_G,0.96,628.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,73-97,High_D,0.96,248.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,73-97,Low_D,0.96,282.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,73-97,High_E,0.96,323.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,73-97,Low_E,0.96,362.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,73-97,High_F,0.96,417.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,73-97,Low_F,0.96,479.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,73-97,High_G,0.96,565.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,73-97,Low_G,0.96,664.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,98-199,High_D,0.96,267.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,98-199,Low_D,0.96,306.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,98-199,High_E,0.96,353.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,98-199,Low_E,0.96,398.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,98-199,High_F,0.96,462.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,98-199,Low_F,0.96,533.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,98-199,High_G,0.96,632.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,98-199,Low_G,0.96,746.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,200,High_D,0.96,425.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,200,Low_D,0.96,492.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,200,High_E,0.96,576.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,200,Low_E,0.96,657.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,200,High_F,0.96,770.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,200,Low_F,0.96,897.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,200,High_G,0.96,1074.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Air to Water ASHP,200,Low_G,0.96,1277.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,0-72,High_D,0.96,171.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,0-72,Low_D,0.96,183.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,0-72,High_E,0.96,197.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,0-72,Low_E,0.96,211.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,0-72,High_F,0.96,231.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,0-72,Low_F,0.96,253.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,0-72,High_G,0.96,284,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,0-72,Low_G,0.96,319.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,73-97,High_D,0.96,166.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,73-97,Low_D,0.96,179.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,73-97,High_E,0.96,195,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,73-97,Low_E,0.96,210.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,73-97,High_F,0.96,231.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,73-97,Low_F,0.96,254.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,73-97,High_G,0.96,288.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,73-97,Low_G,0.96,326,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,98-199,High_D,0.96,166.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,98-199,Low_D,0.96,181.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,98-199,High_E,0.96,199.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,98-199,Low_E,0.96,216.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,98-199,High_F,0.96,241.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,98-199,Low_F,0.96,268.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,98-199,High_G,0.96,306.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,98-199,Low_G,0.96,350.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,200,High_D,0.96,227.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,200,Low_D,0.96,252.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,200,High_E,0.96,285.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,200,Low_E,0.96,316.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,200,High_F,0.96,359.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,200,Low_F,0.96,408.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,200,High_G,0.96,476.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Air to Water ASHP,200,Low_G,0.96,553.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,High_D,0.96,128.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,Low_D,0.96,128.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,High_E,0.96,129.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,Low_E,0.96,129.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,High_F,0.96,130.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,Low_F,0.96,131.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,High_G,0.96,132.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,Low_G,0.96,133.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,High_D,0.96,117,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,Low_D,0.96,117.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,High_E,0.96,118.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,Low_E,0.96,118.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,High_F,0.96,119.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,Low_F,0.96,120.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,High_G,0.96,121.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,Low_G,0.96,122.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,High_D,0.96,105.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,Low_D,0.96,106.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,High_E,0.96,107.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,Low_E,0.96,107.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,High_F,0.96,108.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,Low_F,0.96,109.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,High_G,0.96,110.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,Low_G,0.96,112.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,High_D,0.96,108.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,Low_D,0.96,109,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,High_E,0.96,110.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,Low_E,0.96,111.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,High_F,0.96,112.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,Low_F,0.96,114.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,High_G,0.96,117,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,Low_G,0.96,119.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,High_D,0.96,133.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,Low_D,0.96,157.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,High_E,0.96,186.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,Low_E,0.96,214.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,High_F,0.96,253.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,Low_F,0.96,297.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,High_G,0.96,358.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,Low_G,0.96,429,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,High_D,0.96,142.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,Low_D,0.96,168.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,High_E,0.96,199.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,Low_E,0.96,230,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,High_F,0.96,272.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,Low_F,0.96,319.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,High_G,0.96,386,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,Low_G,0.96,461.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,High_D,0.96,162,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,Low_D,0.96,191.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,High_E,0.96,227.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,Low_E,0.96,262.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,High_F,0.96,311.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,Low_F,0.96,365.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,High_G,0.96,442,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,Low_G,0.96,529.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,High_D,0.96,283,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,Low_D,0.96,334.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,High_E,0.96,399.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,Low_E,0.96,461,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,High_F,0.96,547.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,Low_F,0.96,644.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,High_G,0.96,780.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,Low_G,0.96,936.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,0-72,High_D,0.96,372.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,0-72,Low_D,0.96,448.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,0-72,High_E,0.96,541.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,0-72,Low_E,0.96,631.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,0-72,High_F,0.96,756.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,0-72,Low_F,0.96,896.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,0-72,High_G,0.96,1093.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,0-72,Low_G,0.96,1317.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,73-97,High_D,0.96,406.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,73-97,Low_D,0.96,488.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,73-97,High_E,0.96,589.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,73-97,Low_E,0.96,685.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,73-97,High_F,0.96,821.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,73-97,Low_F,0.96,972.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,73-97,High_G,0.96,1185.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,73-97,Low_G,0.96,1428.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,98-199,High_D,0.96,473.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,98-199,Low_D,0.96,567.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,98-199,High_E,0.96,683.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,98-199,Low_E,0.96,794.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,98-199,High_F,0.96,951,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,98-199,Low_F,0.96,1125.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,98-199,High_G,0.96,1369.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,98-199,Low_G,0.96,1649.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,200,High_D,0.96,860.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,200,Low_D,0.96,1026.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,200,High_E,0.96,1232.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,200,Low_E,0.96,1430.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,200,High_F,0.96,1709,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,200,Low_F,0.96,2019.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,200,High_G,0.96,2455.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Air to Water ASHP,200,Low_G,0.96,2953.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,0-72,High_D,0.96,362.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,0-72,Low_D,0.96,438.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,0-72,High_E,0.96,531.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,0-72,Low_E,0.96,621.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,0-72,High_F,0.96,746.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,0-72,Low_F,0.96,886.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,0-72,High_G,0.96,1083.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,0-72,Low_G,0.96,1307.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,73-97,High_D,0.96,397.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,73-97,Low_D,0.96,479.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,73-97,High_E,0.96,580.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,73-97,Low_E,0.96,676.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,73-97,High_F,0.96,812.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,73-97,Low_F,0.96,963.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,73-97,High_G,0.96,1176.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,73-97,Low_G,0.96,1419,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,98-199,High_D,0.96,464.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,98-199,Low_D,0.96,559.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,98-199,High_E,0.96,675.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,98-199,Low_E,0.96,786.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,98-199,High_F,0.96,942.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,98-199,Low_F,0.96,1116.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,98-199,High_G,0.96,1361.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,98-199,Low_G,0.96,1640.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,200,High_D,0.96,852.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,200,Low_D,0.96,1018,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,200,High_E,0.96,1224.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,200,Low_E,0.96,1422.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,200,High_F,0.96,1700.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,200,Low_F,0.96,2011.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,200,High_G,0.96,2446.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Air to Water ASHP,200,Low_G,0.96,2945,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,0-72,High_D,0.96,483.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,0-72,Low_D,0.96,528.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,0-72,High_E,0.96,640.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,0-72,Low_E,0.96,748.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,0-72,High_F,0.96,899.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,0-72,Low_F,0.96,1068.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,0-72,High_G,0.96,1305.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,0-72,Low_G,0.96,1575.8,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,73-97,High_D,0.96,587.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,73-97,Low_D,0.96,587.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,73-97,High_E,0.96,698.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,73-97,Low_E,0.96,815.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,73-97,High_F,0.96,978.8,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,73-97,Low_F,0.96,1161.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,73-97,High_G,0.96,1417.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,73-97,Low_G,0.96,1709.8,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,98-199,High_D,0.96,699.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,98-199,Low_D,0.96,699.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,98-199,High_E,0.96,813.8,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,98-199,Low_E,0.96,947.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,98-199,High_F,0.96,1135.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,98-199,Low_F,0.96,1345.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,98-199,High_G,0.96,1640.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,98-199,Low_G,0.96,1977.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,200,High_D,0.96,1304,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,200,Low_D,0.96,1304,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,200,High_E,0.96,1475.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,200,Low_E,0.96,1713.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,200,High_F,0.96,2049.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,200,Low_F,0.96,2423.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,200,High_G,0.96,2948.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Biomass Boiler,200,Low_G,0.96,3548.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,0-72,High_D,0.96,378.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,0-72,Low_D,0.96,458.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,0-72,High_E,0.96,555.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,0-72,Low_E,0.96,648.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,0-72,High_F,0.96,780.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,0-72,Low_F,0.96,926.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,0-72,High_G,0.96,1131.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,0-72,Low_G,0.96,1366.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,73-97,High_D,0.96,414.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,73-97,Low_D,0.96,501,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,73-97,High_E,0.96,606.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,73-97,Low_E,0.96,707,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,73-97,High_F,0.96,848.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,73-97,Low_F,0.96,1006.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,73-97,High_G,0.96,1228.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,73-97,Low_G,0.96,1482.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,98-199,High_D,0.96,485.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,98-199,Low_D,0.96,584.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,98-199,High_E,0.96,705.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,98-199,Low_E,0.96,821.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,98-199,High_F,0.96,985,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,98-199,Low_F,0.96,1167,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,98-199,High_G,0.96,1422.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,98-199,Low_G,0.96,1714.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,200,High_D,0.96,890.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,200,Low_D,0.96,1063.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,200,High_E,0.96,1279.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,200,Low_E,0.96,1486.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,200,High_F,0.96,1777,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,200,Low_F,0.96,2101.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,200,High_G,0.96,2556.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Biomass Boiler,200,Low_G,0.96,3077.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,0-72,High_D,0.96,214.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,0-72,Low_D,0.96,260,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,0-72,High_E,0.96,315.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,0-72,Low_E,0.96,368.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,0-72,High_F,0.96,442.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,0-72,Low_F,0.96,525.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,0-72,High_G,0.96,641.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,0-72,Low_G,0.96,775.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,73-97,High_D,0.96,235.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,73-97,Low_D,0.96,284.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,73-97,High_E,0.96,343.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,73-97,Low_E,0.96,401,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,73-97,High_F,0.96,481.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,73-97,Low_F,0.96,571.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,73-97,High_G,0.96,697,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,73-97,Low_G,0.96,841,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,98-199,High_D,0.96,275.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,98-199,Low_D,0.96,331.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,98-199,High_E,0.96,400.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,98-199,Low_E,0.96,466.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,98-199,High_F,0.96,558.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,98-199,Low_F,0.96,661.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,98-199,High_G,0.96,806.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,98-199,Low_G,0.96,972.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,200,High_D,0.96,505.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,200,Low_D,0.96,603.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,200,High_E,0.96,725.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,200,Low_E,0.96,843,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,200,High_F,0.96,1007.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,200,Low_F,0.96,1191.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,200,High_G,0.96,1450.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Biomass Boiler,200,Low_G,0.96,1745.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,0-72,High_D,0.96,137.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,0-72,Low_D,0.96,166.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,0-72,High_E,0.96,201.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,0-72,Low_E,0.96,235.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,0-72,High_F,0.96,282.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,0-72,Low_F,0.96,335.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,0-72,High_G,0.96,410.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,0-72,Low_G,0.96,495.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,73-97,High_D,0.96,150.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,73-97,Low_D,0.96,181.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,73-97,High_E,0.96,219.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,73-97,Low_E,0.96,256.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,73-97,High_F,0.96,307.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,73-97,Low_F,0.96,365,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,73-97,High_G,0.96,445.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,73-97,Low_G,0.96,537.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,98-199,High_D,0.96,176,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,98-199,Low_D,0.96,212,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,98-199,High_E,0.96,255.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,98-199,Low_E,0.96,297.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,98-199,High_F,0.96,357,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,98-199,Low_F,0.96,423,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,98-199,High_G,0.96,515.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,98-199,Low_G,0.96,621.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,200,High_D,0.96,322.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,200,Low_D,0.96,385.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,200,High_E,0.96,463.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,200,Low_E,0.96,538.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,200,High_F,0.96,644.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,200,Low_F,0.96,761.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,200,High_G,0.96,926.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Biomass Boiler,200,Low_G,0.96,1115.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,0-72,High_D,0.96,279.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,0-72,Low_D,0.96,320.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,0-72,High_E,0.96,370.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,0-72,Low_E,0.96,417.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,0-72,High_F,0.96,484.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,0-72,Low_F,0.96,559.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,0-72,High_G,0.96,664.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,0-72,Low_G,0.96,784.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,73-97,High_D,0.96,290.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,73-97,Low_D,0.96,334.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,73-97,High_E,0.96,388.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,73-97,Low_E,0.96,439.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,73-97,High_F,0.96,512.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,73-97,Low_F,0.96,593,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,73-97,High_G,0.96,706.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,73-97,Low_G,0.96,836.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,98-199,High_D,0.96,318.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,98-199,Low_D,0.96,369.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,98-199,High_E,0.96,431.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,98-199,Low_E,0.96,490.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,98-199,High_F,0.96,574,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,98-199,Low_F,0.96,667,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,98-199,High_G,0.96,797.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,98-199,Low_G,0.96,947,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,200,High_D,0.96,525.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,200,Low_D,0.96,614.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,200,High_E,0.96,724.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,200,Low_E,0.96,830.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,200,High_F,0.96,979,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,200,Low_F,0.96,1144.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,200,High_G,0.96,1377.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Biomass Boiler,200,Low_G,0.96,1643.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,0-72,High_D,0.96,215.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,0-72,Low_D,0.96,238.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,0-72,High_E,0.96,267.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,0-72,Low_E,0.96,294.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,0-72,High_F,0.96,333.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,0-72,Low_F,0.96,376.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,0-72,High_G,0.96,437.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,0-72,Low_G,0.96,506.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,73-97,High_D,0.96,216.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,73-97,Low_D,0.96,241.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,73-97,High_E,0.96,272.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,73-97,Low_E,0.96,302.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,73-97,High_F,0.96,344.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,73-97,Low_F,0.96,391.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,73-97,High_G,0.96,456.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,73-97,Low_G,0.96,531.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,98-199,High_D,0.96,227.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,98-199,Low_D,0.96,257.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,98-199,High_E,0.96,292.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,98-199,Low_E,0.96,327.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,98-199,High_F,0.96,375.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,98-199,Low_F,0.96,429.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,98-199,High_G,0.96,504.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,98-199,Low_G,0.96,590.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,200,High_D,0.96,347.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,200,Low_D,0.96,398.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,200,High_E,0.96,462.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,200,Low_E,0.96,523.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,200,High_F,0.96,609.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,200,Low_F,0.96,705.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,200,High_G,0.96,839.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Biomass Boiler,200,Low_G,0.96,993.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,High_D,0.96,176.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,Low_D,0.96,189.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,High_E,0.96,205.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,Low_E,0.96,221.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,High_F,0.96,242.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,Low_F,0.96,267.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,High_G,0.96,301.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,Low_G,0.96,340.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,High_D,0.96,172,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,Low_D,0.96,186.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,High_E,0.96,203.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,Low_E,0.96,220.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,High_F,0.96,244,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,Low_F,0.96,270.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,High_G,0.96,307,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,Low_G,0.96,349.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,High_D,0.96,173.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,Low_D,0.96,189.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,High_E,0.96,209.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,Low_E,0.96,229.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,High_F,0.96,256.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,Low_F,0.96,286.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,High_G,0.96,328.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,Low_G,0.96,377.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,High_D,0.96,240.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,Low_D,0.96,269.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,High_E,0.96,305,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,Low_E,0.96,339.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,High_F,0.96,387.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,Low_F,0.96,441.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,High_G,0.96,516.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,Low_G,0.96,603.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,High_D,0.96,181.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,Low_D,0.96,215.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,High_E,0.96,257.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,Low_E,0.96,297.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,High_F,0.96,353.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,Low_F,0.96,416.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,High_G,0.96,504.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,Low_G,0.96,605.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,High_D,0.96,195.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,Low_D,0.96,232.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,High_E,0.96,277.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,Low_E,0.96,320.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,High_F,0.96,381.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,Low_F,0.96,449.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,High_G,0.96,544.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,Low_G,0.96,653.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,High_D,0.96,223.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,Low_D,0.96,266.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,High_E,0.96,318.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,Low_E,0.96,368.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,High_F,0.96,438.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,Low_F,0.96,516.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,High_G,0.96,626.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,Low_G,0.96,751.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,High_D,0.96,397.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,Low_D,0.96,472.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,High_E,0.96,564.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,Low_E,0.96,653.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,High_F,0.96,778.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,Low_F,0.96,918,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,High_G,0.96,1113.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,Low_G,0.96,1397.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,0-72,High_D,0.96,395.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,0-72,Low_D,0.96,477.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,0-72,High_E,0.96,576.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,0-72,Low_E,0.96,671.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,0-72,High_F,0.96,805.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,0-72,Low_F,0.96,955.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,0-72,High_G,0.96,1164.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,0-72,Low_G,0.96,1404.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,73-97,High_D,0.96,432,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,73-97,Low_D,0.96,519.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,73-97,High_E,0.96,627.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,73-97,Low_E,0.96,730.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,73-97,High_F,0.96,875.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,73-97,Low_F,0.96,1036.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,73-97,High_G,0.96,1263.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,73-97,Low_G,0.96,1522.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,98-199,High_D,0.96,503.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,98-199,Low_D,0.96,604.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,98-199,High_E,0.96,728.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,98-199,Low_E,0.96,846.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,98-199,High_F,0.96,1013.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,98-199,Low_F,0.96,1199.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,98-199,High_G,0.96,1460,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,98-199,Low_G,0.96,1758.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,200,High_D,0.96,917,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,200,Low_D,0.96,1093.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,200,High_E,0.96,1313.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,200,Low_E,0.96,1525.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,200,High_F,0.96,1822.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,200,Low_F,0.96,2153.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,200,High_G,0.96,2618.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Biomass Boiler,200,Low_G,0.96,3179.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,0-72,High_D,0.96,386.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,0-72,Low_D,0.96,468.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,0-72,High_E,0.96,567.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,0-72,Low_E,0.96,662.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,0-72,High_F,0.96,796.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,0-72,Low_F,0.96,946.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,0-72,High_G,0.96,1155.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,0-72,Low_G,0.96,1395.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,73-97,High_D,0.96,423.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,73-97,Low_D,0.96,511.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,73-97,High_E,0.96,618.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,73-97,Low_E,0.96,722,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,73-97,High_F,0.96,866.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,73-97,Low_F,0.96,1028.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,73-97,High_G,0.96,1254.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,73-97,Low_G,0.96,1514.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,98-199,High_D,0.96,496,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,98-199,Low_D,0.96,597.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,98-199,High_E,0.96,720.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,98-199,Low_E,0.96,839.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,98-199,High_F,0.96,1005.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,98-199,Low_F,0.96,1191.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,98-199,High_G,0.96,1452.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,98-199,Low_G,0.96,1750.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,200,High_D,0.96,909.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,200,Low_D,0.96,1086.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,200,High_E,0.96,1306.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,200,Low_E,0.96,1517.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,200,High_F,0.96,1814.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,200,Low_F,0.96,2146,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,200,High_G,0.96,2610.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Biomass Boiler,200,Low_G,0.96,3142.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,High_D,0.96,184,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,Low_D,0.96,222.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,High_E,0.96,270,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,Low_E,0.96,315.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,High_F,0.96,379.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,Low_F,0.96,450.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,High_G,0.96,549.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,Low_G,0.96,664,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,High_D,0.96,201.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,Low_D,0.96,243.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,High_E,0.96,294.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,Low_E,0.96,343.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,High_F,0.96,412.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,Low_F,0.96,489.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,High_G,0.96,597.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,Low_G,0.96,720.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,High_D,0.96,236,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,Low_D,0.96,284.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,High_E,0.96,342.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,Low_E,0.96,399.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,High_F,0.96,478.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,Low_F,0.96,567,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,High_G,0.96,691.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,Low_G,0.96,833,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,200,High_D,0.96,432.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,200,Low_D,0.96,516.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,200,High_E,0.96,621.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,200,Low_E,0.96,722.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,200,High_F,0.96,863.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,200,Low_F,0.96,1021.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,200,High_G,0.96,1242.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Biomass Boiler,200,Low_G,0.96,1495.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,0-72,High_D,0.96,131.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,0-72,Low_D,0.96,159.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,0-72,High_E,0.96,193.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,0-72,Low_E,0.96,225.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,0-72,High_F,0.96,271.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,0-72,Low_F,0.96,322.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,0-72,High_G,0.96,393.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,0-72,Low_G,0.96,475.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,73-97,High_D,0.96,144.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,73-97,Low_D,0.96,174.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,73-97,High_E,0.96,210.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,73-97,Low_E,0.96,245.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,73-97,High_F,0.96,295.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,73-97,Low_F,0.96,350.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,73-97,High_G,0.96,427.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,73-97,Low_G,0.96,515.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,98-199,High_D,0.96,168.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,98-199,Low_D,0.96,203.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,98-199,High_E,0.96,245.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,98-199,Low_E,0.96,285.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,98-199,High_F,0.96,342.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,98-199,Low_F,0.96,405.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,98-199,High_G,0.96,494.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,98-199,Low_G,0.96,596.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,200,High_D,0.96,309.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,200,Low_D,0.96,369.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,200,High_E,0.96,444.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,200,Low_E,0.96,516.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,200,High_F,0.96,618,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,200,Low_F,0.96,730.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,200,High_G,0.96,889.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Biomass Boiler,200,Low_G,0.96,1070.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,High_D,0.96,356.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,Low_D,0.96,423.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,High_E,0.96,506.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,Low_E,0.96,585.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,High_F,0.96,697.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,Low_F,0.96,821.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,High_G,0.96,995.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,Low_G,0.96,1195.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,High_D,0.96,383.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,Low_D,0.96,456.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,High_E,0.96,546.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,Low_E,0.96,631.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,High_F,0.96,752.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,Low_F,0.96,886.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,High_G,0.96,1075.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,Low_G,0.96,1290.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,High_D,0.96,440.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,Low_D,0.96,524.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,High_E,0.96,627.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,Low_E,0.96,726.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,High_F,0.96,864.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,Low_F,0.96,1019.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,High_G,0.96,1236.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,Low_G,0.96,1484.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,200,High_D,0.96,784.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,200,Low_D,0.96,931.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,200,High_E,0.96,1114.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,200,Low_E,0.96,1290.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,200,High_F,0.96,1537.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,200,Low_F,0.96,1813.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,200,High_G,0.96,2199.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Biomass Boiler,200,Low_G,0.96,2662,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,0-72,High_D,0.96,313.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,0-72,Low_D,0.96,370.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,0-72,High_E,0.96,440.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,0-72,Low_E,0.96,508.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,0-72,High_F,0.96,602.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,0-72,Low_F,0.96,708.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,0-72,High_G,0.96,856.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,0-72,Low_G,0.96,1025.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,73-97,High_D,0.96,335.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,73-97,Low_D,0.96,397.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,73-97,High_E,0.96,473.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,73-97,Low_E,0.96,546.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,73-97,High_F,0.96,648.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,73-97,Low_F,0.96,762.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,73-97,High_G,0.96,922.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,73-97,Low_G,0.96,1105.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,98-199,High_D,0.96,383.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,98-199,Low_D,0.96,454.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,98-199,High_E,0.96,541.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,98-199,Low_E,0.96,625.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,98-199,High_F,0.96,743.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,98-199,Low_F,0.96,874.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,98-199,High_G,0.96,1058.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,98-199,Low_G,0.96,1268.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,200,High_D,0.96,675.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,200,Low_D,0.96,799.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,200,High_E,0.96,955.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,200,Low_E,0.96,1104.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,200,High_F,0.96,1314.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,200,Low_F,0.96,1547.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,200,High_G,0.96,1876,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Biomass Boiler,200,Low_G,0.96,2274.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,High_D,0.96,386.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,Low_D,0.96,434.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,High_E,0.96,553.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,Low_E,0.96,667.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,High_F,0.96,828.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,Low_F,0.96,1007.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,High_G,0.96,1259,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,Low_G,0.96,1546.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,High_D,0.96,392.8,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,Low_D,0.96,498.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,High_E,0.96,626.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,Low_E,0.96,750.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,High_F,0.96,924.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,Low_F,0.96,1117.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,High_G,0.96,1389.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,Low_G,0.96,1700.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,High_D,0.96,491,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,Low_D,0.96,612.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,High_E,0.96,760.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,Low_E,0.96,902.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,High_F,0.96,1102.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,Low_F,0.96,1325.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,High_G,0.96,1637.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,Low_G,0.96,1995.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,200,High_D,0.96,986.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,200,Low_D,0.96,1198.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,200,High_E,0.96,1462.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,200,Low_E,0.96,1716.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,200,High_F,0.96,2072.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,200,Low_F,0.96,2469.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,200,High_G,0.96,3026.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,Condensing Gas Boiler,200,Low_G,0.96,3663.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,High_D,0.96,288.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,375.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,High_E,0.96,482.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,584.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,High_F,0.96,728.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,888.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,High_G,0.96,1113.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,1371.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,High_D,0.96,339.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,434,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,High_E,0.96,549.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,659.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,High_F,0.96,815.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,988.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,High_G,0.96,1231.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,1510,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,High_D,0.96,428.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,537.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,High_E,0.96,669.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,797.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,High_F,0.96,976,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,1175.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,High_G,0.96,1455.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,1775.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,High_D,0.96,872.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,Low_D,0.96,1062.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,High_E,0.96,1298.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,Low_E,0.96,1525.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,High_F,0.96,1844.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,Low_F,0.96,2199.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,High_G,0.96,2698.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,Low_G,0.96,3269.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,High_D,0.96,151.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,Low_D,0.96,209.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,High_E,0.96,280.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,Low_E,0.96,349.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,High_F,0.96,445.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,Low_F,0.96,553,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,High_G,0.96,703.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,Low_G,0.96,876,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,High_D,0.96,189.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,Low_D,0.96,252.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,High_E,0.96,329.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,Low_E,0.96,403.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,High_F,0.96,507.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,Low_F,0.96,623.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,High_G,0.96,786.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,Low_G,0.96,972.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,High_D,0.96,252.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,Low_D,0.96,325.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,High_E,0.96,414.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,Low_E,0.96,499.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,High_F,0.96,619.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,Low_F,0.96,752.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,High_G,0.96,940,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,Low_G,0.96,1154.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,200,High_D,0.96,549.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,200,Low_D,0.96,676.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,200,High_E,0.96,835,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,200,Low_E,0.96,986.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,200,High_F,0.96,1200.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,200,Low_F,0.96,1438.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,200,High_G,0.96,1772.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,Condensing Gas Boiler,200,Low_G,0.96,2154.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,High_D,0.96,86.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,131,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,High_E,0.96,185.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,238.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,High_F,0.96,312,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,394.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,High_G,0.96,509.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,641.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,High_D,0.96,118.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,166.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,High_E,0.96,225.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,282.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,High_F,0.96,362.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,451,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,High_G,0.96,575.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,718.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,High_D,0.96,169.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,225.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,High_E,0.96,293.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,358.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,High_F,0.96,450.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,552.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,High_G,0.96,696.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,860.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,High_D,0.96,397.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,Low_D,0.96,494.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,High_E,0.96,615.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,Low_E,0.96,732.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,High_F,0.96,895.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,Low_F,0.96,1078,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,High_G,0.96,1334,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,Low_G,0.96,1626.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,High_D,0.96,123,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,Low_D,0.96,172.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,High_E,0.96,232.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,Low_E,0.96,290.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,High_F,0.96,371.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,Low_F,0.96,461.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,High_G,0.96,588.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,Low_G,0.96,734.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,High_D,0.96,155.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,Low_D,0.96,208.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,High_E,0.96,273.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,Low_E,0.96,336.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,High_F,0.96,423.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,Low_F,0.96,521.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,High_G,0.96,659.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,Low_G,0.96,816.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,High_D,0.96,209.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,Low_D,0.96,270.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,High_E,0.96,345.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,Low_E,0.96,417.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,High_F,0.96,518.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,Low_F,0.96,630.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,High_G,0.96,788.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,Low_G,0.96,969.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,High_D,0.96,460,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,Low_D,0.96,567,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,High_E,0.96,700.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,Low_E,0.96,828.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,High_F,0.96,1008.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,Low_F,0.96,1208.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,High_G,0.96,1490.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,Low_G,0.96,1812.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,0-72,High_D,0.96,302.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,391.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,0-72,High_E,0.96,499.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,603.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,0-72,High_F,0.96,749.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,912.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,0-72,High_G,0.96,1141.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,1403.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,73-97,High_D,0.96,353.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,449.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,73-97,High_E,0.96,566.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,679.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,73-97,High_F,0.96,837.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,1013.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,73-97,High_G,0.96,1260.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,1543.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,98-199,High_D,0.96,443.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,553.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,98-199,High_E,0.96,688.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,818,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,98-199,High_F,0.96,999.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,1202.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,98-199,High_G,0.96,1486.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,1812.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,200,High_D,0.96,894.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,200,Low_D,0.96,1087.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,200,High_E,0.96,1327.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,200,Low_E,0.96,1558.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,200,High_F,0.96,1882,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,200,Low_F,0.96,2243.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,200,High_G,0.96,2750.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,Condensing Gas Boiler,200,Low_G,0.96,3330.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,0-72,High_D,0.96,295.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,0-72,Low_D,0.96,383.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,0-72,High_E,0.96,492.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,0-72,Low_E,0.96,596.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,0-72,High_F,0.96,742.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,0-72,Low_F,0.96,905.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,0-72,High_G,0.96,1133.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,0-72,Low_G,0.96,1395.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,73-97,High_D,0.96,347,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,73-97,Low_D,0.96,442.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,73-97,High_E,0.96,559.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,73-97,Low_E,0.96,672.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,73-97,High_F,0.96,830.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,73-97,Low_F,0.96,1006.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,73-97,High_G,0.96,1253.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,73-97,Low_G,0.96,1536.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,98-199,High_D,0.96,437.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,98-199,Low_D,0.96,547.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,98-199,High_E,0.96,682.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,98-199,Low_E,0.96,811.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,98-199,High_F,0.96,993.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,98-199,Low_F,0.96,1196.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,98-199,High_G,0.96,1480.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,98-199,Low_G,0.96,1806.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,200,High_D,0.96,888.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,200,Low_D,0.96,1081.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,200,High_E,0.96,1321.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,200,Low_E,0.96,1551.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,200,High_F,0.96,1875.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,200,Low_F,0.96,2237.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,200,High_G,0.96,2744.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,Condensing Gas Boiler,200,Low_G,0.96,3324,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,0-72,High_E,0.96,17.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,41.3,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,0-72,High_F,0.96,75.2,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,113.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,0-72,High_G,0.96,166.2,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,227,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,14.5,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,73-97,High_E,0.96,41.7,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,67.8,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,73-97,High_F,0.96,104.5,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,145.5,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,73-97,High_G,0.96,202.9,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,268.6,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,98-199,High_D,0.96,22.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,47.7,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,98-199,High_E,0.96,79,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,109.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,98-199,High_F,0.96,151.3,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,198.4,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,98-199,High_G,0.96,264.5,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,340.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,200,High_D,0.96,126.9,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,200,Low_D,0.96,171.7,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,200,High_E,0.96,227.5,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,200,Low_E,0.96,281.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,200,High_F,0.96,356.3,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,200,Low_F,0.96,440.3,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,200,High_G,0.96,558.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,Condensing Gas Boiler,200,Low_G,0.96,692.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,High_D,0.96,205.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,260.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,High_E,0.96,326.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,391.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,High_F,0.96,481.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,581.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,High_G,0.96,722.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,884,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,High_D,0.96,235.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,294.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,High_E,0.96,366.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,436,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,High_F,0.96,533.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,642,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,High_G,0.96,794.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,968.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,High_D,0.96,288.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,356.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,High_E,0.96,440,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,519.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,High_F,0.96,631.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,756.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,High_G,0.96,932.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,1133,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,200,High_D,0.96,567.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,200,Low_D,0.96,685.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,200,High_E,0.96,834,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,200,Low_E,0.96,976.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,200,High_F,0.96,1176,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,200,Low_F,0.96,1398.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,200,High_G,0.96,1711.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,Condensing Gas Boiler,200,Low_G,0.96,2069.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,0-72,High_D,0.96,151.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,0-72,Low_D,0.96,191.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,0-72,High_E,0.96,240.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,0-72,Low_E,0.96,288.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,0-72,High_F,0.96,354.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,0-72,Low_F,0.96,428.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,0-72,High_G,0.96,532.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,0-72,Low_G,0.96,651.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,73-97,High_D,0.96,173.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,73-97,Low_D,0.96,216.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,73-97,High_E,0.96,270.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,73-97,Low_E,0.96,321.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,73-97,High_F,0.96,393,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,73-97,Low_F,0.96,473,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,73-97,High_G,0.96,585.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,73-97,Low_G,0.96,713.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,98-199,High_D,0.96,212.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,98-199,Low_D,0.96,263,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,98-199,High_E,0.96,324.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,98-199,Low_E,0.96,383,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,98-199,High_F,0.96,465.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,98-199,Low_F,0.96,557.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,98-199,High_G,0.96,687,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,98-199,Low_G,0.96,834.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,200,High_D,0.96,417.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,200,Low_D,0.96,505.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,200,High_E,0.96,614.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,200,Low_E,0.96,719.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,200,High_F,0.96,866.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,200,Low_F,0.96,1030.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,200,High_G,0.96,1261.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,Condensing Gas Boiler,200,Low_G,0.96,1524.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,High_D,0.96,118.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,Low_D,0.96,150.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,High_E,0.96,189.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,Low_E,0.96,226.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,High_F,0.96,278.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,Low_F,0.96,336.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,High_G,0.96,418.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,Low_G,0.96,511.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,High_D,0.96,136.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,Low_D,0.96,170.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,High_E,0.96,212.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,Low_E,0.96,252.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,High_F,0.96,308.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,Low_F,0.96,371.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,High_G,0.96,459.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,Low_G,0.96,560.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,High_D,0.96,167.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,Low_D,0.96,206.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,High_E,0.96,254.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,Low_E,0.96,300.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,High_F,0.96,365.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,Low_F,0.96,438.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,High_G,0.96,539.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,Low_G,0.96,655.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,High_D,0.96,328.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,Low_D,0.96,397.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,High_E,0.96,482.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,Low_E,0.96,565.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,High_F,0.96,680.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,Low_F,0.96,809.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,High_G,0.96,990.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,Low_G,0.96,1197.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_D,0.96,125.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,178.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_E,0.96,243.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,305.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_F,0.96,392.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,490,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_G,0.96,626.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,783,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_D,0.96,161,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,218.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_E,0.96,288.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,355.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_F,0.96,449.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,555.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_G,0.96,702.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,871.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_D,0.96,219.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,285.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_E,0.96,366.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,443.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_F,0.96,552,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,673.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_G,0.96,843.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,1037.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,High_D,0.96,489.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,Low_D,0.96,604.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,High_E,0.96,747.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,Low_E,0.96,885.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,High_F,0.96,1079.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,Low_F,0.96,1295.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,High_G,0.96,1598.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,Low_G,0.96,1944.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_D,0.96,81.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,125.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_E,0.96,178.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,230.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_F,0.96,302.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,382.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_G,0.96,495.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,624.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_D,0.96,113,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,160.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_E,0.96,218.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,273.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_F,0.96,351.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,438.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_G,0.96,560.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,700.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_D,0.96,163.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,218,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_E,0.96,284.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,348.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_F,0.96,438.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,538.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_G,0.96,678.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,839.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,High_D,0.96,386.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,Low_D,0.96,481.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,High_E,0.96,600,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,Low_E,0.96,713.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,High_F,0.96,873.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,Low_F,0.96,1052.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,High_G,0.96,1302.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,Low_G,0.96,1588.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_D,0.96,269.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,346.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_E,0.96,441.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,531.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_F,0.96,658.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,800.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_G,0.96,999.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,1227.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_D,0.96,313.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,397,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_E,0.96,498.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,596.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_F,0.96,734.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,887.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_G,0.96,1103.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,1349.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_D,0.96,391.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,487.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_E,0.96,604.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,717.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_F,0.96,875.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,1051.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_G,0.96,1299.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,1583,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,High_D,0.96,783.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,Low_D,0.96,951.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,High_E,0.96,1160.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,Low_E,0.96,1361.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,High_F,0.96,1643.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,Low_F,0.96,1958.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,High_G,0.96,2399.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,Low_G,0.96,2904.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_D,0.96,233.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,302.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_E,0.96,386.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,466.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_F,0.96,579.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,706.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_G,0.96,883.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,1085.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_D,0.96,273.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,347.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_E,0.96,438.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,525.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_F,0.96,647.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,784,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_G,0.96,975.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,1194.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_D,0.96,342.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,428.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_E,0.96,532.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,632.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_F,0.96,773.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,930.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_G,0.96,1150.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,1402.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,High_D,0.96,692.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,Low_D,0.96,841.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,High_E,0.96,1027.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,Low_E,0.96,1205.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,High_F,0.96,1456.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,Low_F,0.96,1736.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,High_G,0.96,2128.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,Low_G,0.96,2577.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,High_D,0.96,70.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,89,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,High_E,0.96,111.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,133.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,High_F,0.96,164.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,199,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,High_G,0.96,247.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,302.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,High_D,0.96,80.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,100.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,High_E,0.96,125.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,149.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,High_F,0.96,182.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,219.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,High_G,0.96,271.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,331.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,High_D,0.96,98.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,122.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,High_E,0.96,150.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,177.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,High_F,0.96,216.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,258.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,High_G,0.96,319,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,387.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,High_D,0.96,194,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,Low_D,0.96,234.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,High_E,0.96,285.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,Low_E,0.96,334,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,High_F,0.96,402.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,Low_F,0.96,478.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,High_G,0.96,585.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,Low_G,0.96,707.9,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,0-72,High_D,0.96,151.9,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,0-72,Low_D,0.96,190.3,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,0-72,High_E,0.96,237.5,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,0-72,Low_E,0.96,283.1,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,0-72,High_F,0.96,347.4,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,0-72,Low_F,0.96,419.3,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,0-72,High_G,0.96,520.3,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,0-72,Low_G,0.96,636.1,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,73-97,High_D,0.96,189.3,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,73-97,Low_D,0.96,235.3,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,73-97,High_E,0.96,291.8,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,73-97,Low_E,0.96,346.2,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,73-97,High_F,0.96,422.8,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,73-97,Low_F,0.96,508.5,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,73-97,High_G,0.96,628.8,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,73-97,Low_G,0.96,766.6,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,98-199,High_D,0.96,256.1,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,98-199,Low_D,0.96,315.3,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,98-199,High_E,0.96,387.9,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,98-199,Low_E,0.96,457.7,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,98-199,High_F,0.96,555.9,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,98-199,Low_F,0.96,665.6,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,98-199,High_G,0.96,819.7,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,98-199,Low_G,0.96,996.0,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,200,High_D,0.96,499.1,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,200,Low_D,0.96,603.3,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,200,High_E,0.96,733.3,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,200,Low_E,0.96,858.3,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,200,High_F,0.96,1033.8,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,200,Low_F,0.96,1229.8,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,200,High_G,0.96,1504.8,N/A +ESH,ESH_Upgrade,Bottled LPG Boiler,High Heat Retention Storage Heaters,200,Low_G,0.96,1819.4,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,0-72,High_D,0.96,104.6,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,0-72,Low_D,0.96,122.1,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,0-72,High_E,0.96,143.2,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,0-72,Low_E,0.96,163.1,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,0-72,High_F,0.96,190.9,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,0-72,Low_F,0.96,221.7,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,0-72,High_G,0.96,264.7,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,0-72,Low_G,0.96,313.6,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,73-97,High_D,0.96,121.7,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,73-97,Low_D,0.96,142.2,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,73-97,High_E,0.96,166.9,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,73-97,Low_E,0.96,190.4,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,73-97,High_F,0.96,223.2,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,73-97,Low_F,0.96,259.6,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,73-97,High_G,0.96,310.6,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,73-97,Low_G,0.96,368.7,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,98-199,High_D,0.96,170.3,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,98-199,Low_D,0.96,177.1,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,98-199,High_E,0.96,208.3,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,98-199,Low_E,0.96,238.1,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,98-199,High_F,0.96,279.7,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,98-199,Low_F,0.96,326.1,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,98-199,High_G,0.96,391.0,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,98-199,Low_G,0.96,465.1,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,200,High_D,0.96,255.7,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,200,Low_D,0.96,299.8,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,200,High_E,0.96,354.6,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,200,Low_E,0.96,407.2,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,200,High_F,0.96,481.0,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,200,Low_F,0.96,563.2,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,200,High_G,0.96,678.4,N/A +ESH,ESH_Upgrade,Gas Fire with Back Boiler,High Heat Retention Storage Heaters,200,Low_G,0.96,810.1,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,0-72,High_D,0.96,73.7,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,0-72,Low_D,0.96,81.6,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,0-72,High_E,0.96,90.7,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,0-72,Low_E,0.96,99.1,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,0-72,High_F,0.96,110.5,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,0-72,Low_F,0.96,123.0,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,0-72,High_G,0.96,140.0,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,0-72,Low_G,0.96,159.3,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,73-97,High_D,0.96,81.4,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,73-97,Low_D,0.96,90.3,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,73-97,High_E,0.96,100.7,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,73-97,Low_E,0.96,110.3,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,73-97,High_F,0.96,123.6,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,73-97,Low_F,0.96,138.1,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,73-97,High_G,0.96,158.1,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,73-97,Low_G,0.96,180.8,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,98-199,High_D,0.96,104.9,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,98-199,Low_D,0.96,113.2,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,98-199,High_E,0.96,117.6,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,98-199,Low_E,0.96,129.5,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,98-199,High_F,0.96,146.0,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,98-199,Low_F,0.96,164.2,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,98-199,High_G,0.96,189.5,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,98-199,Low_G,0.96,218.2,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,200,High_D,0.96,136.5,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,200,Low_D,0.96,153.9,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,200,High_E,0.96,175.3,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,200,Low_E,0.96,195.8,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,200,High_F,0.96,224.4,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,200,Low_F,0.96,256.1,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,200,High_G,0.96,300.6,N/A +ESH,ESH_Upgrade,Gas Room Heaters,High Heat Retention Storage Heaters,200,Low_G,0.96,351.3,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,0-72,High_D,0.96,73.6,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,0-72,Low_D,0.96,92.2,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,0-72,High_E,0.96,115.1,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,0-72,Low_E,0.96,137.2,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,0-72,High_F,0.96,168.4,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,0-72,Low_F,0.96,203.2,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,0-72,High_G,0.96,252.2,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,0-72,Low_G,0.96,308.3,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,73-97,High_D,0.96,91.8,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,73-97,Low_D,0.96,114.1,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,73-97,High_E,0.96,141.4,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,73-97,Low_E,0.96,167.8,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,73-97,High_F,0.96,204.9,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,73-97,Low_F,0.96,246.4,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,73-97,High_G,0.96,304.8,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,73-97,Low_G,0.96,371.6,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,98-199,High_D,0.96,143.1,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,98-199,Low_D,0.96,152.8,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,98-199,High_E,0.96,188.0,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,98-199,Low_E,0.96,221.8,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,98-199,High_F,0.96,269.4,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,98-199,Low_F,0.96,322.6,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,98-199,High_G,0.96,397.3,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,98-199,Low_G,0.96,482.8,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,200,High_D,0.96,241.9,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,200,Low_D,0.96,292.4,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,200,High_E,0.96,355.4,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,200,Low_E,0.96,416.0,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,200,High_F,0.96,501.1,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,200,Low_F,0.96,596.0,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,200,High_G,0.96,729.4,N/A +ESH,ESH_Upgrade,Solid Fossil Room Heaters,High Heat Retention Storage Heaters,200,Low_G,0.96,881.8,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,0-72,High_D,0.96,60.8,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,0-72,Low_D,0.96,74.1,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,0-72,High_E,0.96,90.4,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,0-72,Low_E,0.96,106.0,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,0-72,High_F,0.96,128.0,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,0-72,Low_F,0.96,152.5,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,0-72,High_G,0.96,186.9,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,0-72,Low_G,0.96,226.2,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,73-97,High_D,0.96,67.1,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,73-97,Low_D,0.96,81.5,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,73-97,High_E,0.96,99.1,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,73-97,Low_E,0.96,116,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,73-97,High_F,0.96,139.7,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,73-97,Low_F,0.96,166.2,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,73-97,High_G,0.96,203.4,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,73-97,Low_G,0.96,245.9,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,98-199,High_D,0.96,79.2,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,98-199,Low_D,0.96,95.7,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,98-199,High_E,0.96,116,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,98-199,Low_E,0.96,135.4,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,98-199,High_F,0.96,162.8,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,98-199,Low_F,0.96,193.2,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,98-199,High_G,0.96,236,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,98-199,Low_G,0.96,284.9,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,200,High_D,0.96,147,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,200,Low_D,0.96,175.9,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,200,High_E,0.96,212,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,200,Low_E,0.96,246.7,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,200,High_F,0.96,295.4,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,200,Low_F,0.96,349.7,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,200,High_G,0.96,425.9,N/A +ESH,ESH_Upgrade,Electric Storage Heaters Responsiveness <=0.2,High Heat Retention Storage Heaters,200,Low_G,0.96,513.1,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,0-72,High_D,0.96,312.7,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,0-72,Low_D,0.96,383.8,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,0-72,High_E,0.96,470.6,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,0-72,Low_E,0.96,553.9,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,0-72,High_F,0.96,671.0,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,0-72,Low_F,0.96,801.6,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,0-72,High_G,0.96,984.8,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,0-72,Low_G,0.96,1194.4,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,73-97,High_D,0.96,347.3,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,73-97,Low_D,0.96,424.2,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,73-97,High_E,0.96,518.0,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,73-97,Low_E,0.96,608.1,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,73-97,High_F,0.96,734.6,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,73-97,Low_F,0.96,875.7,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,73-97,High_G,0.96,1073.8,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,73-97,Low_G,0.96,1300.4,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,98-199,High_D,0.96,412.8,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,98-199,Low_D,0.96,501.2,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,98-199,High_E,0.96,609.2,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,98-199,Low_E,0.96,712.9,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,98-199,High_F,0.96,858.5,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,98-199,Low_F,0.96,1020.9,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,98-199,High_G,0.96,1248.9,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,98-199,Low_G,0.96,1509.6,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,200,High_D,0.96,774.3,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,200,Low_D,0.96,928.7,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,200,High_E,0.96,1121.1,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,200,Low_E,0.96,1305.9,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,200,High_F,0.96,1565.4,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,200,Low_F,0.96,1854.9,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,200,High_G,0.96,2261.3,N/A +ESH,ESH_Upgrade,Electric Room Heaters,High Heat Retention Storage Heaters,200,Low_G,0.96,2725.9,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,0-72,High_D,0.96,169.2,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,0-72,Low_D,0.96,211.0,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,0-72,High_E,0.96,262.3,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,0-72,Low_E,0.96,311.9,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,0-72,High_F,0.96,381.6,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,0-72,Low_F,0.96,459.6,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,0-72,High_G,0.96,569.3,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,0-72,Low_G,0.96,694.8,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,73-97,High_D,0.96,190.9,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,73-97,Low_D,0.96,236.4,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,73-97,High_E,0.96,292.1,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,73-97,Low_E,0.96,345.8,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,73-97,High_F,0.96,421.4,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,73-97,Low_F,0.96,505.8,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,73-97,High_G,0.96,624.5,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,73-97,Low_G,0.96,760.3,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,98-199,High_D,0.96,231.2,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,98-199,Low_D,0.96,283.8,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,98-199,High_E,0.96,348.2,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,98-199,Low_E,0.96,410.1,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,98-199,High_F,0.96,497.4,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,98-199,Low_F,0.96,594.6,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,98-199,High_G,0.96,731.4,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,98-199,Low_G,0.96,887.8,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,200,High_D,0.96,446.9,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,200,Low_D,0.96,539.4,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,200,High_E,0.96,654.8,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,200,Low_E,0.96,765.6,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,200,High_F,0.96,921.3,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,200,Low_F,0.96,1095.1,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,200,High_G,0.96,1339.1,N/A +ESH,ESH_Upgrade,Electric Boiler,High Heat Retention Storage Heaters,200,Low_G,0.96,1618.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_B,0.96,4.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_B,0.96,11.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_C,0.96,21.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_C,0.96,29.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_D,0.96,41,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_D,0.96,51.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_E,0.96,65.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_E,0.96,78.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_F,0.96,96.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_F,0.96,116.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_G,0.96,144.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_G,0.96,176.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_B,0.96,6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_B,0.96,14.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_C,0.96,25.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_C,0.96,34.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_D,0.96,47,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_D,0.96,58.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_E,0.96,73.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_E,0.96,87,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_F,0.96,106.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_F,0.96,128.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_G,0.96,158.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_G,0.96,193.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_B,0.96,10,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_B,0.96,20,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_C,0.96,32.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_C,0.96,43.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_D,0.96,57.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_D,0.96,71.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_E,0.96,87.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_E,0.96,103.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_F,0.96,126.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_F,0.96,151.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_G,0.96,186.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_G,0.96,226.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_B,0.96,26.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_B,0.96,44.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_C,0.96,67.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_C,0.96,87.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_D,0.96,113.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_D,0.96,136.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_E,0.96,166.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_E,0.96,194.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_F,0.96,234.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_F,0.96,279.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_G,0.96,341.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_G,0.96,413.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_B,0.96,1.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_B,0.96,3.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_C,0.96,6.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_C,0.96,8.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_D,0.96,12,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_D,0.96,15.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_E,0.96,19.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_E,0.96,22.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_F,0.96,28.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_F,0.96,34.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_G,0.96,42.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_G,0.96,51.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_B,0.96,1.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_B,0.96,4.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_C,0.96,7.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_C,0.96,10.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_D,0.96,13.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_D,0.96,17.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_E,0.96,21.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_E,0.96,25.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_F,0.96,31.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_F,0.96,37.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_G,0.96,46.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_G,0.96,56.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_B,0.96,2.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_B,0.96,5.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_C,0.96,9.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_C,0.96,12.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_D,0.96,16.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_D,0.96,20.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_E,0.96,25.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_E,0.96,30.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_F,0.96,37,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_F,0.96,44.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_G,0.96,54.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_G,0.96,66.3,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,High_B,0.96,7.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_B,0.96,13.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,High_C,0.96,19.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_C,0.96,25.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,High_D,0.96,33.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_D,0.96,40.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,High_E,0.96,48.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_E,0.96,57.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,High_F,0.96,68.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_F,0.96,81.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,High_G,0.96,100.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_G,0.96,121.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,0-72,High_D,0.96,487.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,0-72,Low_D,0.96,532.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,0-72,High_E,0.96,645.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,0-72,Low_E,0.96,754.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,0-72,High_F,0.96,906.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,0-72,Low_F,0.96,1076.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,0-72,High_G,0.96,1315.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,0-72,Low_G,0.96,1587.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,73-97,High_D,0.96,591.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,73-97,Low_D,0.96,591.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,73-97,High_E,0.96,704.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,73-97,Low_E,0.96,821.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,73-97,High_F,0.96,986.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,73-97,Low_F,0.96,1170,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,73-97,High_G,0.96,1427.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,73-97,Low_G,0.96,1722.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,98-199,High_D,0.96,705,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,98-199,Low_D,0.96,705,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,98-199,High_E,0.96,820,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,98-199,Low_E,0.96,955,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,98-199,High_F,0.96,1144.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,98-199,Low_F,0.96,1356,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,98-199,High_G,0.96,1652.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,98-199,Low_G,0.96,1992.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,200,High_D,0.96,1314,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,200,Low_D,0.96,1314,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,200,High_E,0.96,1486.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,200,Low_E,0.96,1727,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,200,High_F,0.96,2064.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,200,Low_F,0.96,2441.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,200,High_G,0.96,2970.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Room Heaters,Shared Ground Loop GSHP,200,Low_G,0.96,3575.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,383.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,463.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,562.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,656.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,789.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,937.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,1145.2,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,1382.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,419.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,506.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,613.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,715.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,858.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,1018.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,1243.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,1500.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,491.5,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,591.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,714.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,831.6,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,996.7,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,1180.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,1439.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,1734.8,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,200,High_D,0.96,901.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,1076.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,200,High_E,0.96,1294.4,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,1503.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,200,High_F,0.96,1798.1,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,2126.3,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,200,High_G,0.96,2586.9,N/A +DHS,DHS_connection_nopreHCs,Bottled LPG Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,3113.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,0-72,High_D,0.96,222.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,0-72,Low_D,0.96,269.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,0-72,High_E,0.96,326.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,0-72,Low_E,0.96,381.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,0-72,High_F,0.96,458.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,0-72,Low_F,0.96,544.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,0-72,High_G,0.96,665.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,0-72,Low_G,0.96,803.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,73-97,High_D,0.96,243.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,73-97,Low_D,0.96,294.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,73-97,High_E,0.96,356.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,73-97,Low_E,0.96,415.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,73-97,High_F,0.96,498.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,73-97,Low_F,0.96,591.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,73-97,High_G,0.96,722.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,73-97,Low_G,0.96,871.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,98-199,High_D,0.96,285.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,98-199,Low_D,0.96,343.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,98-199,High_E,0.96,414.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,98-199,Low_E,0.96,483.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,98-199,High_F,0.96,579,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,98-199,Low_F,0.96,685.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,98-199,High_G,0.96,836.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,98-199,Low_G,0.96,1007.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,200,High_D,0.96,523.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,200,Low_D,0.96,625.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,200,High_E,0.96,751.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,200,Low_E,0.96,873.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,200,High_F,0.96,1044.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,200,Low_F,0.96,1235.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,200,High_G,0.96,1502.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Room Heaters,Shared Ground Loop GSHP,200,Low_G,0.96,1808.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,222.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,269.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,326.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,381.4,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,458.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,544.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,665.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,803.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,243.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,294.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,356.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,415.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,498.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,591.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,722.3,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,871.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,285.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,343.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,414.8,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,483.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,579,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,685.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,836.1,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,1007.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,High_D,0.96,523.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,625.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,High_E,0.96,751.9,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,873.6,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,High_F,0.96,1044.5,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,1235.2,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,High_G,0.96,1502.7,N/A +DHS,DHS_connection_nopreHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,1808.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,361.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,429.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,513.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,594.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,708,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,834.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,1011.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,1214.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,389.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,463.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,554.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,641.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,764.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,901,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,1092.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,1312.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,447.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,533,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,637.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,737.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,879,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,1036.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,1257,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,1509.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_D,0.96,797.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,947,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_E,0.96,1133.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,1312.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_F,0.96,1563.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,1843.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_G,0.96,2237.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,2687.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,319.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,378,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,449.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,518.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,615.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,723.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,875.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,1048.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,342.4,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,405.9,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,483.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,558,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,662.7,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,779.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,943.3,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,1130.7,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,391,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,464.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,553.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,639.2,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,759.7,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,894.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,1082.6,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,1298.3,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_D,0.96,690.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,817.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_E,0.96,976.9,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,1129.8,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_F,0.96,1344.5,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,1584,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_G,0.96,1920.1,N/A +DHS,DHS_connection_nopreHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,2304.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,192.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,232.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,282.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,329.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,396.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,470.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,575.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,694.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,210.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,254.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,308,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,359.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,431.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,511.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,624.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,753.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,246.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,297.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,358.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,417.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,500.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,593,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,722.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,871.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_D,0.96,452.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,540.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_E,0.96,650,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,755.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_F,0.96,903,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,1067.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_G,0.96,1299.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,1563.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,141.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,170.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,207.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,241.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,290.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,345.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,421.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,509.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,154.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,186.8,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,225.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,263.6,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,316.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,375.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,458.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,552.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,181.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,218,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,263.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,306.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,367.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,435,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,530.2,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,639.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_D,0.96,332,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,396.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_E,0.96,476.9,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,554.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_F,0.96,662.5,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,783.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_G,0.96,953.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,1147.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,45.7,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,24.1,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,22.4,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_D,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_E,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_F,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_G,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,0,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,127.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,128.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,128.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,129,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,129.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,130.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,131,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,132,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,116.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,117,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,117.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,117.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,118.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,119,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,119.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,121,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,105.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,105.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,106.3,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,106.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,107.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,108.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,109.2,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,110.4,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_D,0.96,107.1,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,107.8,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_E,0.96,108.6,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,109.5,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_F,0.96,110.7,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,112,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_G,0.96,113.9,N/A +DHS,DHS_connection_nopreHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,116,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,286.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,328.6,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,380.4,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,430.2,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,500.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,578.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,687.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,812.6,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,297.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,343.6,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,399.7,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,453.5,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,529,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,613.3,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,731.6,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,866.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,327.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,380.6,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,445.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,507,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,594,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,691,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,827.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,982.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,200,High_D,0.96,543.7,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,635.9,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,200,High_E,0.96,750.8,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,861.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,200,High_F,0.96,1016.1,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,1189,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,200,High_G,0.96,1431.7,N/A +DHS,DHS_connection_nopreHCs,Gas Fire with Back Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,1709.1,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,0-72,High_D,0.96,222.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,0-72,Low_D,0.96,248.5,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,0-72,High_E,0.96,279.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,0-72,Low_E,0.96,309.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,0-72,High_F,0.96,351.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,0-72,Low_F,0.96,398.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,0-72,High_G,0.96,464.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,0-72,Low_G,0.96,540.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,73-97,High_D,0.96,225.3,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,73-97,Low_D,0.96,253,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,73-97,High_E,0.96,286.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,73-97,Low_E,0.96,319.2,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,73-97,High_F,0.96,364.8,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,73-97,Low_F,0.96,415.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,73-97,High_G,0.96,486.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,73-97,Low_G,0.96,568.5,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,98-199,High_D,0.96,238.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,98-199,Low_D,0.96,270.7,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,98-199,High_E,0.96,309.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,98-199,Low_E,0.96,346.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,98-199,High_F,0.96,399.4,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,98-199,Low_F,0.96,457.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,98-199,High_G,0.96,540,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,98-199,Low_G,0.96,633.8,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,200,High_D,0.96,369,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,200,Low_D,0.96,424.6,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,200,High_E,0.96,493.9,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,200,Low_E,0.96,560.5,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,200,High_F,0.96,654,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,200,Low_F,0.96,758.2,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,200,High_G,0.96,904.5,N/A +DHS,DHS_connection_nopreHCs,Gas Room Heaters,Shared Ground Loop GSHP,200,Low_G,0.96,1071.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,0-72,High_D,0.96,184.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,0-72,Low_D,0.96,200.4,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,0-72,High_E,0.96,219.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,0-72,Low_E,0.96,237.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,0-72,High_F,0.96,263,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,0-72,Low_F,0.96,291.4,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,0-72,High_G,0.96,331.4,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,0-72,Low_G,0.96,377,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,73-97,High_D,0.96,181.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,73-97,Low_D,0.96,198.6,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,73-97,High_E,0.96,219,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,73-97,Low_E,0.96,238.6,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,73-97,High_F,0.96,266.2,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,73-97,Low_F,0.96,297,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,73-97,High_G,0.96,340.1,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,73-97,Low_G,0.96,389.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,98-199,High_D,0.96,185.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,98-199,Low_D,0.96,204.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,98-199,High_E,0.96,228.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,98-199,Low_E,0.96,250.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,98-199,High_F,0.96,282.6,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,98-199,Low_F,0.96,318,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,98-199,High_G,0.96,367.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,98-199,Low_G,0.96,424.5,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,200,High_D,0.96,264.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,200,Low_D,0.96,297.9,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,200,High_E,0.96,339.8,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,200,Low_E,0.96,380.1,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,200,High_F,0.96,436.6,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,200,Low_F,0.96,499.7,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,200,High_G,0.96,588.3,N/A +DHS,DHS_connection_nopreHCs,Gas Back Boiler to Radiators,Shared Ground Loop GSHP,200,Low_G,0.96,689.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,400,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,482.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,582.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,679.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,814.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,965.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,1177.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,1420.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,436.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,525.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,634,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,738.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,884.6,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,1047.9,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,1277.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,1539.2,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,508.8,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,611.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,736,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,856,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,1024.5,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,1212.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,1476.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,1777.7,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,200,High_D,0.96,927.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,1105.7,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,200,High_E,0.96,1328.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,1542.1,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,200,High_F,0.96,1842.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,2177.3,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,200,High_G,0.96,2647.4,N/A +DHS,DHS_connection_nopreHCs,Electric Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,3184.9,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,0-72,High_D,0.96,189.7,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,0-72,Low_D,0.96,225.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,0-72,High_E,0.96,269.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,0-72,Low_E,0.96,312.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,0-72,High_F,0.96,371.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,0-72,Low_F,0.96,437.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,0-72,High_G,0.96,530.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,0-72,Low_G,0.96,637.2,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,73-97,High_D,0.96,204.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,73-97,Low_D,0.96,243.4,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,73-97,High_E,0.96,291,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,73-97,Low_E,0.96,336.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,73-97,High_F,0.96,401,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,73-97,Low_F,0.96,472.6,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,73-97,High_G,0.96,573.2,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,73-97,Low_G,0.96,688.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,98-199,High_D,0.96,234.9,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,98-199,Low_D,0.96,279.7,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,98-199,High_E,0.96,334.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,98-199,Low_E,0.96,387.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,98-199,High_F,0.96,461,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,98-199,Low_F,0.96,543.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,98-199,High_G,0.96,659.2,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,98-199,Low_G,0.96,791.5,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,200,High_D,0.96,418.3,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,200,Low_D,0.96,496.7,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,200,High_E,0.96,594.3,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,200,Low_E,0.96,688.1,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,200,High_F,0.96,819.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,200,Low_F,0.96,966.8,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,200,High_G,0.96,1173,N/A +DHS,DHS_connection_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,Shared Ground Loop GSHP,200,Low_G,0.96,1408.8,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,0-72,High_D,0.96,391.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,0-72,Low_D,0.96,473.3,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,0-72,High_E,0.96,573.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,0-72,Low_E,0.96,670.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,0-72,High_F,0.96,805.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,0-72,Low_F,0.96,956.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,0-72,High_G,0.96,1168.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,0-72,Low_G,0.96,1411.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,73-97,High_D,0.96,428.5,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,73-97,Low_D,0.96,517.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,73-97,High_E,0.96,625.9,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,73-97,Low_E,0.96,730.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,73-97,High_F,0.96,876.5,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,73-97,Low_F,0.96,1039.8,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,73-97,High_G,0.96,1269,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,73-97,Low_G,0.96,1531.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,98-199,High_D,0.96,501.6,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,98-199,Low_D,0.96,603.9,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,98-199,High_E,0.96,728.8,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,98-199,Low_E,0.96,848.7,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,98-199,High_F,0.96,1017.2,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,98-199,Low_F,0.96,1205.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,98-199,High_G,0.96,1468.9,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,98-199,Low_G,0.96,1770.5,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,200,High_D,0.96,919.8,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,200,Low_D,0.96,1098.4,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,200,High_E,0.96,1321,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,200,Low_E,0.96,1534.8,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,200,High_F,0.96,1835.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,200,Low_F,0.96,2170,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,200,High_G,0.96,2640.1,N/A +DHS,DHS_connection_nopreHCs,Electric Room Heaters,Shared Ground Loop GSHP,200,Low_G,0.96,3177.7,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,0-72,High_D,1,68.3,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,0-72,Low_D,1,78.2,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,0-72,High_E,1,90.7,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,0-72,Low_E,1,102.6,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,0-72,High_F,1,117.3,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,0-72,Low_F,1,131.5,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,0-72,High_G,1,148.7,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,0-72,Low_G,1,165.5,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,73-97,High_D,1,76.7,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,73-97,Low_D,1,89,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,73-97,High_E,1,105.1,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,73-97,Low_E,1,121.1,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,73-97,High_F,1,141.5,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,73-97,Low_F,1,162,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,73-97,High_G,1,187.7,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,73-97,Low_G,1,213.5,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,98-199,High_D,1,84.3,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,98-199,Low_D,1,97.7,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,98-199,High_E,1,115.6,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,98-199,Low_E,1,133.8,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,98-199,High_F,1,157.3,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,98-199,Low_F,1,181.3,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,98-199,High_G,1,211.7,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,98-199,Low_G,1,242.8,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,200,High_D,1,165.2,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,200,Low_D,1,191.1,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,200,High_E,1,225.1,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,200,Low_E,1,258.9,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,200,High_F,1,302.1,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,200,Low_F,1,345.4,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,200,High_G,1,399.6,N/A +Other Heating,P&RT,Condensing Gas Boiler,N/A,200,Low_G,1,454.4,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,0-72,High_D,1,76.1,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,0-72,Low_D,1,87.6,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,0-72,High_E,1,102.4,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,0-72,Low_E,1,117.2,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,0-72,High_F,1,136,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,0-72,Low_F,1,154.8,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,0-72,High_G,1,178.2,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,0-72,Low_G,1,201.7,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,73-97,High_D,1,85,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,73-97,Low_D,1,99,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,73-97,High_E,1,118.1,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,73-97,Low_E,1,137.9,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,73-97,High_F,1,164,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,73-97,Low_F,1,191,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,73-97,High_G,1,225.8,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,73-97,Low_G,1,261.8,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,98-199,High_D,1,93.2,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,98-199,Low_D,1,107.8,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,98-199,High_E,1,127.7,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,98-199,Low_E,1,148.4,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,98-199,High_F,1,175.8,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,98-199,Low_F,1,204.2,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,98-199,High_G,1,240.8,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,98-199,Low_G,1,278.8,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,200,High_D,1,175.7,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,200,Low_D,1,203.5,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,200,High_E,1,241.5,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,200,Low_E,1,281,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,200,High_F,1,333.3,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,200,Low_F,1,387.6,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,200,High_G,1,457.5,N/A +Other Heating,P&RT,Non Condensing Gas Boiler,N/A,200,Low_G,1,530.1,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,0-72,High_D,1,86.7,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,0-72,Low_D,1,97.6,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,0-72,High_E,1,114.4,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,0-72,Low_E,1,133.6,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,0-72,High_F,1,161.3,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,0-72,Low_F,1,191.8,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,0-72,High_G,1,233.4,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,0-72,Low_G,1,278.4,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,73-97,High_D,1,93,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,73-97,Low_D,1,103.8,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,73-97,High_E,1,122,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,73-97,Low_E,1,144,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,73-97,High_F,1,176.7,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,73-97,Low_F,1,213.9,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,73-97,High_G,1,265.5,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,73-97,Low_G,1,322.5,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,98-199,High_D,1,106.1,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,98-199,Low_D,1,118.1,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,98-199,High_E,1,138.6,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,98-199,Low_E,1,163.5,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,98-199,High_F,1,200.7,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,98-199,Low_F,1,243.2,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,98-199,High_G,1,302.2,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,98-199,Low_G,1,367.4,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,200,High_D,1,195,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,200,Low_D,1,216,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,200,High_E,1,253,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,200,Low_E,1,298.7,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,200,High_F,1,367.9,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,200,Low_F,1,447.4,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,200,High_G,1,558.6,N/A +Other Heating,P&RT,Non Condensing LPG Boiler,N/A,200,Low_G,1,682,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,0-72,High_D,1,80.1,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,0-72,Low_D,1,90.7,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,0-72,High_E,1,106,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,0-72,Low_E,1,122.7,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,0-72,High_F,1,145.6,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,0-72,Low_F,1,170.3,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,0-72,High_G,1,202.9,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,0-72,Low_G,1,237.5,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,73-97,High_D,1,83.3,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,73-97,Low_D,1,94.9,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,73-97,High_E,1,113.1,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,73-97,Low_E,1,134.1,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,73-97,High_F,1,164.3,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,73-97,Low_F,1,198,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,73-97,High_G,1,243.9,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,73-97,Low_G,1,293.8,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,98-199,High_D,1,94.3,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,98-199,Low_D,1,106.5,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,98-199,High_E,1,125.9,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,98-199,Low_E,1,148.4,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,98-199,High_F,1,181,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,98-199,Low_F,1,217.4,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,98-199,High_G,1,267.1,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,98-199,Low_G,1,321.3,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,200,High_D,1,175.8,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,200,Low_D,1,197.5,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,200,High_E,1,232.4,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,200,Low_E,1,273.3,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,200,High_F,1,332.9,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,200,Low_F,1,399.6,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,200,High_G,1,491.2,N/A +Other Heating,P&RT,Condensing LPG Boiler,N/A,200,Low_G,1,591.2,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,0-72,High_D,1,91.4,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,0-72,Low_D,1,103.7,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,0-72,High_E,1,120.4,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,0-72,Low_E,1,137.6,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,0-72,High_F,1,160.1,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,0-72,Low_F,1,183.4,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,0-72,High_G,1,213.1,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,0-72,Low_G,1,243.9,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,73-97,High_D,1,96,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,73-97,Low_D,1,109.9,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,73-97,High_E,1,129.7,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,73-97,Low_E,1,151,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,73-97,High_F,1,180.1,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,73-97,Low_F,1,211.1,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,73-97,High_G,1,251.9,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,73-97,Low_G,1,295,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,98-199,High_D,1,103.4,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,98-199,Low_D,1,117.5,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,98-199,High_E,1,138.3,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,98-199,Low_E,1,161.3,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,98-199,High_F,1,193.3,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,98-199,Low_F,1,228,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,98-199,High_G,1,274.3,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,98-199,Low_G,1,323.8,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,200,High_D,1,183.8,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,200,Low_D,1,209.8,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,200,High_E,1,248.2,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,200,Low_E,1,290.7,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,200,High_F,1,349.9,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,200,Low_F,1,414.2,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,200,High_G,1,500.1,N/A +Other Heating,P&RT,Non Condensing Oil Boiler,N/A,200,Low_G,1,591.9,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,0-72,High_D,1,86.6,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,0-72,Low_D,1,98.4,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,0-72,High_E,1,113.9,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,0-72,Low_E,1,129.6,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,0-72,High_F,1,149.7,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,0-72,Low_F,1,170.1,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,0-72,High_G,1,195.7,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,0-72,Low_G,1,221.8,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,73-97,High_D,1,92.5,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,73-97,Low_D,1,106.2,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,73-97,High_E,1,125.2,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,73-97,Low_E,1,145.1,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,73-97,High_F,1,171.7,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,73-97,Low_F,1,199.6,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,73-97,High_G,1,235.8,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,73-97,Low_G,1,273.5,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,98-199,High_D,1,96.7,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,98-199,Low_D,1,110.5,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,98-199,High_E,1,130.2,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,98-199,Low_E,1,151.4,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,98-199,High_F,1,180.2,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,98-199,Low_F,1,210.8,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,98-199,High_G,1,251.2,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,98-199,Low_G,1,293.8,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,200,High_D,1,179.2,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,200,Low_D,1,204.9,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,200,High_E,1,241.4,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,200,Low_E,1,280.5,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,200,High_F,1,333.7,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,200,Low_F,1,390.2,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,200,High_G,1,464.5,N/A +Other Heating,P&RT,Condensing Oil Boiler,N/A,200,Low_G,1,542.9,N/A +Other Heating,P&RT,Electric Boiler,N/A,0-72,High_D,1,33.3,N/A +Other Heating,P&RT,Electric Boiler,N/A,0-72,Low_D,1,38.5,N/A +Other Heating,P&RT,Electric Boiler,N/A,0-72,High_E,1,45.4,N/A +Other Heating,P&RT,Electric Boiler,N/A,0-72,Low_E,1,52.4,N/A +Other Heating,P&RT,Electric Boiler,N/A,0-72,High_F,1,61.3,N/A +Other Heating,P&RT,Electric Boiler,N/A,0-72,Low_F,1,70.4,N/A +Other Heating,P&RT,Electric Boiler,N/A,0-72,High_G,1,81.8,N/A +Other Heating,P&RT,Electric Boiler,N/A,0-72,Low_G,1,93.5,N/A +Other Heating,P&RT,Electric Boiler,N/A,73-97,High_D,1,37.3,N/A +Other Heating,P&RT,Electric Boiler,N/A,73-97,Low_D,1,43.9,N/A +Other Heating,P&RT,Electric Boiler,N/A,73-97,High_E,1,53.1,N/A +Other Heating,P&RT,Electric Boiler,N/A,73-97,Low_E,1,62.9,N/A +Other Heating,P&RT,Electric Boiler,N/A,73-97,High_F,1,76.1,N/A +Other Heating,P&RT,Electric Boiler,N/A,73-97,Low_F,1,90,N/A +Other Heating,P&RT,Electric Boiler,N/A,73-97,High_G,1,108.1,N/A +Other Heating,P&RT,Electric Boiler,N/A,73-97,Low_G,1,127.2,N/A +Other Heating,P&RT,Electric Boiler,N/A,98-199,High_D,1,44.5,N/A +Other Heating,P&RT,Electric Boiler,N/A,98-199,Low_D,1,51.9,N/A +Other Heating,P&RT,Electric Boiler,N/A,98-199,High_E,1,62.2,N/A +Other Heating,P&RT,Electric Boiler,N/A,98-199,Low_E,1,73.1,N/A +Other Heating,P&RT,Electric Boiler,N/A,98-199,High_F,1,87.8,N/A +Other Heating,P&RT,Electric Boiler,N/A,98-199,Low_F,1,103.4,N/A +Other Heating,P&RT,Electric Boiler,N/A,98-199,High_G,1,123.7,N/A +Other Heating,P&RT,Electric Boiler,N/A,98-199,Low_G,1,145,N/A +Other Heating,P&RT,Electric Boiler,N/A,200,High_D,1,84,N/A +Other Heating,P&RT,Electric Boiler,N/A,200,Low_D,1,97.6,N/A +Other Heating,P&RT,Electric Boiler,N/A,200,High_E,1,117,N/A +Other Heating,P&RT,Electric Boiler,N/A,200,Low_E,1,138,N/A +Other Heating,P&RT,Electric Boiler,N/A,200,High_F,1,166.5,N/A +Other Heating,P&RT,Electric Boiler,N/A,200,Low_F,1,196.9,N/A +Other Heating,P&RT,Electric Boiler,N/A,200,High_G,1,237,N/A +Other Heating,P&RT,Electric Boiler,N/A,200,Low_G,1,279.4,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,0-72,High_D,1,42.8,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,0-72,Low_D,1,48.6,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,0-72,High_E,1,56.3,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,0-72,Low_E,1,64,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,0-72,High_F,1,73.8,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,0-72,Low_F,1,83.7,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,0-72,High_G,1,96.1,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,0-72,Low_G,1,108.7,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,73-97,High_D,1,44.4,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,73-97,Low_D,1,51.1,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,73-97,High_E,1,60.5,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,73-97,Low_E,1,70.6,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,73-97,High_F,1,84.3,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,73-97,Low_F,1,98.8,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,73-97,High_G,1,117.9,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,73-97,Low_G,1,138.1,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,98-199,High_D,1,50,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,98-199,Low_D,1,57.3,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,98-199,High_E,1,67.7,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,98-199,Low_E,1,78.9,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,98-199,High_F,1,94.2,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,98-199,Low_F,1,110.4,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,98-199,High_G,1,131.9,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,98-199,Low_G,1,154.5,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,200,High_D,1,90.4,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,200,Low_D,1,103.6,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,200,High_E,1,122.5,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,200,Low_E,1,143.1,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,200,High_F,1,171.4,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,200,Low_F,1,201.8,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,200,High_G,1,241.9,N/A +Other Heating,P&RT,Solid Fossil Boiler,N/A,200,Low_G,1,284.5,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,0-72,High_D,1,16.9,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,0-72,Low_D,1,17.4,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,0-72,High_E,1,17.4,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,0-72,Low_E,1,16.6,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,0-72,High_F,1,14.7,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,0-72,Low_F,1,12,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,0-72,High_G,1,7.6,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,0-72,Low_G,1,2.2,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,73-97,High_D,1,22.7,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,73-97,Low_D,1,23.6,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,73-97,High_E,1,23.7,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,73-97,Low_E,1,22.8,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,73-97,High_F,1,20.5,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,73-97,Low_F,1,17.1,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,73-97,High_G,1,11.5,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,73-97,Low_G,1,4.5,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,98-199,High_D,1,25.3,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,98-199,Low_D,1,25.8,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,98-199,High_E,1,25.5,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,98-199,Low_E,1,24,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,98-199,High_F,1,21,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,98-199,Low_F,1,16.7,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,98-199,High_G,1,10,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,98-199,Low_G,1,2,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,200,High_D,1,71.3,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,200,Low_D,1,72,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,200,High_E,1,49.2,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,200,Low_E,1,47.5,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,200,High_F,1,31.8,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,200,Low_F,1,19.6,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,200,High_G,1,7.4,N/A +Other Heating,TRV,Condensing Gas Boiler,N/A,200,Low_G,1,4.3,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,0-72,High_D,1,21.4,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,0-72,Low_D,1,23.1,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,0-72,High_E,1,24.4,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,0-72,Low_E,1,24.8,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,0-72,High_F,1,24.4,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,0-72,Low_F,1,23,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,0-72,High_G,1,20.2,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,0-72,Low_G,1,16.3,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,73-97,High_D,1,25.6,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,73-97,Low_D,1,27.2,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,73-97,High_E,1,28.3,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,73-97,Low_E,1,28.3,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,73-97,High_F,1,27,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,73-97,Low_F,1,24.6,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,73-97,High_G,1,20.2,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,73-97,Low_G,1,14.6,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,98-199,High_D,1,30.4,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,98-199,Low_D,1,32.2,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,98-199,High_E,1,33.5,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,98-199,Low_E,1,33.6,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,98-199,High_F,1,32.6,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,98-199,Low_F,1,30.2,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,98-199,High_G,1,25.9,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,98-199,Low_G,1,20.2,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,200,High_D,1,67.6,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,200,Low_D,1,71.4,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,200,High_E,1,73.6,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,200,Low_E,1,72.9,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,200,High_F,1,68.8,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,200,Low_F,1,61.6,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,200,High_G,1,48.9,N/A +Other Heating,TRV,Non Condensing Gas Boiler,N/A,200,Low_G,1,32.6,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,0-72,High_D,1,35.2,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,0-72,Low_D,1,38.9,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,0-72,High_E,1,42.2,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,0-72,Low_E,1,44.1,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,0-72,High_F,1,44.8,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,0-72,Low_F,1,43.9,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,0-72,High_G,1,40.9,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,0-72,Low_G,1,36,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,73-97,High_D,1,42.8,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,73-97,Low_D,1,46.5,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,73-97,High_E,1,49.5,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,73-97,Low_E,1,50.9,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,73-97,High_F,1,50.7,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,73-97,Low_F,1,48.6,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,73-97,High_G,1,43.8,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,73-97,Low_G,1,36.9,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,98-199,High_D,1,52.3,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,98-199,Low_D,1,56.2,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,98-199,High_E,1,59.4,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,98-199,Low_E,1,60.7,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,98-199,High_F,1,60.2,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,98-199,Low_F,1,57.7,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,98-199,High_G,1,52,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,98-199,Low_G,1,44.1,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,200,High_D,1,96.6,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,200,Low_D,1,105.6,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,200,High_E,1,115,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,200,Low_E,1,122.1,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,200,High_F,1,128.5,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,200,Low_F,1,132.3,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,200,High_G,1,134.1,N/A +Other Heating,TRV,Non Condensing LPG Boiler,N/A,200,Low_G,1,133,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,0-72,High_D,1,35.6,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,0-72,Low_D,1,38.6,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,0-72,High_E,1,40.4,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,0-72,Low_E,1,40.2,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,0-72,High_F,1,37.8,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,0-72,Low_F,1,33.1,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,0-72,High_G,1,24.7,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,0-72,Low_G,1,13.8,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,73-97,High_D,1,43,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,73-97,Low_D,1,45.9,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,73-97,High_E,1,47.5,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,73-97,Low_E,1,46.9,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,73-97,High_F,1,43.5,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,73-97,Low_F,1,37.6,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,73-97,High_G,1,27.4,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,73-97,Low_G,1,14.3,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,98-199,High_D,1,51,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,98-199,Low_D,1,54.3,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,98-199,High_E,1,56.2,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,98-199,Low_E,1,55.8,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,98-199,High_F,1,52.5,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,98-199,Low_F,1,46.6,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,98-199,High_G,1,36.2,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,98-199,Low_G,1,22.8,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,200,High_D,1,100.3,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,200,Low_D,1,108.6,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,200,High_E,1,115.2,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,200,Low_E,1,117.8,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,200,High_F,1,116.2,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,200,Low_F,1,110.1,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,200,High_G,1,97.2,N/A +Other Heating,TRV,Condensing LPG Boiler,N/A,200,Low_G,1,79.1,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,0-72,High_D,1,31.6,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,0-72,Low_D,1,33.4,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,0-72,High_E,1,34,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,0-72,Low_E,1,32.8,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,0-72,High_F,1,29.3,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,0-72,Low_F,1,23.9,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,0-72,High_G,1,14.8,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,0-72,Low_G,1,3.6,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,73-97,High_D,1,39,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,73-97,Low_D,1,41.1,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,73-97,High_E,1,41.7,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,73-97,Low_E,1,40.2,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,73-97,High_F,1,35.7,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,73-97,Low_F,1,28.9,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,73-97,High_G,1,17.7,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,73-97,Low_G,1,3.7,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,98-199,High_D,1,43.5,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,98-199,Low_D,1,46,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,98-199,High_E,1,47.3,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,98-199,Low_E,1,46.7,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,98-199,High_F,1,43.7,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,98-199,Low_F,1,38.5,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,98-199,High_G,1,29.4,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,98-199,Low_G,1,17.9,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,200,High_D,1,92.5,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,200,Low_D,1,99.4,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,200,High_E,1,104.2,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,200,Low_E,1,104.9,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,200,High_F,1,101.1,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,200,Low_F,1,92.8,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,200,High_G,1,77.1,N/A +Other Heating,TRV,Non Condensing Oil Boiler,N/A,200,Low_G,1,56.3,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,0-72,High_D,1,29,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,0-72,Low_D,1,31.7,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,0-72,High_E,1,34.1,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,0-72,Low_E,1,35.5,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,0-72,High_F,1,36,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,0-72,Low_F,1,35.3,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,0-72,High_G,1,33.1,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,0-72,Low_G,1,29.6,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,73-97,High_D,1,34.4,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,73-97,Low_D,1,36.6,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,73-97,High_E,1,38,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,73-97,Low_E,1,37.8,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,73-97,High_F,1,35.9,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,73-97,Low_F,1,32.3,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,73-97,High_G,1,25.9,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,73-97,Low_G,1,17.5,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,98-199,High_D,1,39.6,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,98-199,Low_D,1,42.1,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,98-199,High_E,1,43.9,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,98-199,Low_E,1,44.2,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,98-199,High_F,1,42.7,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,98-199,Low_F,1,39.6,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,98-199,High_G,1,33.7,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,98-199,Low_G,1,25.9,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,200,High_D,1,85.2,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,200,Low_D,1,91.5,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,200,High_E,1,96,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,200,Low_E,1,97,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,200,High_F,1,94.1,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,200,Low_F,1,87.4,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,200,High_G,1,74.3,N/A +Other Heating,TRV,Condensing Oil Boiler,N/A,200,Low_G,1,56.9,N/A +Other Heating,TRV,Electric Boiler,N/A,0-72,High_D,1,27.7,N/A +Other Heating,TRV,Electric Boiler,N/A,0-72,Low_D,1,29.4,N/A +Other Heating,TRV,Electric Boiler,N/A,0-72,High_E,1,30,N/A +Other Heating,TRV,Electric Boiler,N/A,0-72,Low_E,1,29,N/A +Other Heating,TRV,Electric Boiler,N/A,0-72,High_F,1,25.7,N/A +Other Heating,TRV,Electric Boiler,N/A,0-72,Low_F,1,20.7,N/A +Other Heating,TRV,Electric Boiler,N/A,0-72,High_G,1,12.3,N/A +Other Heating,TRV,Electric Boiler,N/A,0-72,Low_G,1,1.9,N/A +Other Heating,TRV,Electric Boiler,N/A,73-97,High_D,1,32.6,N/A +Other Heating,TRV,Electric Boiler,N/A,73-97,Low_D,1,34.5,N/A +Other Heating,TRV,Electric Boiler,N/A,73-97,High_E,1,35.3,N/A +Other Heating,TRV,Electric Boiler,N/A,73-97,Low_E,1,34.4,N/A +Other Heating,TRV,Electric Boiler,N/A,73-97,High_F,1,31.3,N/A +Other Heating,TRV,Electric Boiler,N/A,73-97,Low_F,1,26.3,N/A +Other Heating,TRV,Electric Boiler,N/A,73-97,High_G,1,17.8,N/A +Other Heating,TRV,Electric Boiler,N/A,73-97,Low_G,1,7.2,N/A +Other Heating,TRV,Electric Boiler,N/A,98-199,High_D,1,39.7,N/A +Other Heating,TRV,Electric Boiler,N/A,98-199,Low_D,1,41.5,N/A +Other Heating,TRV,Electric Boiler,N/A,98-199,High_E,1,41.8,N/A +Other Heating,TRV,Electric Boiler,N/A,98-199,Low_E,1,40.3,N/A +Other Heating,TRV,Electric Boiler,N/A,98-199,High_F,1,36,N/A +Other Heating,TRV,Electric Boiler,N/A,98-199,Low_F,1,29.5,N/A +Other Heating,TRV,Electric Boiler,N/A,98-199,High_G,1,18.9,N/A +Other Heating,TRV,Electric Boiler,N/A,98-199,Low_G,1,5.8,N/A +Other Heating,TRV,Electric Boiler,N/A,200,High_D,1,83,N/A +Other Heating,TRV,Electric Boiler,N/A,200,Low_D,1,90.1,N/A +Other Heating,TRV,Electric Boiler,N/A,200,High_E,1,96.1,N/A +Other Heating,TRV,Electric Boiler,N/A,200,Low_E,1,99,N/A +Other Heating,TRV,Electric Boiler,N/A,200,High_F,1,99.1,N/A +Other Heating,TRV,Electric Boiler,N/A,200,Low_F,1,95.6,N/A +Other Heating,TRV,Electric Boiler,N/A,200,High_G,1,87.2,N/A +Other Heating,TRV,Electric Boiler,N/A,200,Low_G,1,74.9,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,0-72,High_D,1,33.8,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,0-72,Low_D,1,35.6,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,0-72,High_E,1,36,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,0-72,Low_E,1,34.6,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,0-72,High_F,1,30.4,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,0-72,Low_F,1,24.1,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,0-72,High_G,1,13.8,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,0-72,Low_G,1,1,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,73-97,High_D,1,41.4,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,73-97,Low_D,1,44.1,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,73-97,High_E,1,45.4,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,73-97,Low_E,1,44.7,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,73-97,High_F,1,41.2,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,73-97,Low_F,1,35.5,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,73-97,High_G,1,25.6,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,73-97,Low_G,1,13,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,98-199,High_D,1,46.7,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,98-199,Low_D,1,49.5,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,98-199,High_E,1,50.8,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,98-199,Low_E,1,49.9,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,98-199,High_F,1,46.1,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,98-199,Low_F,1,39.7,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,98-199,High_G,1,28.9,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,98-199,Low_G,1,15.2,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,200,High_D,1,96.8,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,200,Low_D,1,104.6,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,200,High_E,1,110.5,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,200,Low_E,1,112,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,200,High_F,1,109,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,200,Low_F,1,101.2,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,200,High_G,1,86,N/A +Other Heating,TRV,Solid Fossil Boiler,N/A,200,Low_G,1,65.3,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,0-72,High_D,1,41.3,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,0-72,Low_D,1,50.5,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,0-72,High_E,1,62,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,0-72,Low_E,1,72.9,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,0-72,High_F,1,86.1,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,0-72,Low_F,1,98.8,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,0-72,High_G,1,114,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,0-72,Low_G,1,128.6,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,73-97,High_D,1,55.8,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,73-97,Low_D,1,69.4,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,73-97,High_E,1,87,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,73-97,Low_E,1,104.4,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,73-97,High_F,1,126.3,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,73-97,Low_F,1,148.1,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,73-97,High_G,1,175,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,73-97,Low_G,1,202,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,98-199,High_D,1,65.9,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,98-199,Low_D,1,81,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,98-199,High_E,1,100.1,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,98-199,Low_E,1,118.8,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,98-199,High_F,1,142,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,98-199,Low_F,1,164.7,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,98-199,High_G,1,192.6,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,98-199,Low_G,1,220,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,200,High_D,1,134.6,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,200,Low_D,1,175.2,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,200,High_E,1,214.3,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,200,Low_E,1,258,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,200,High_F,1,318.4,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,200,Low_F,1,367.7,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,200,High_G,1,419.8,N/A +Other Heating,TTZC,Condensing Gas Boiler,N/A,200,Low_G,1,471.8,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,0-72,High_D,1,41.2,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,0-72,Low_D,1,50.6,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,0-72,High_E,1,62.6,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,0-72,Low_E,1,74.1,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,0-72,High_F,1,88.3,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,0-72,Low_F,1,102.2,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,0-72,High_G,1,119,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,0-72,Low_G,1,135.5,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,73-97,High_D,1,51.1,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,73-97,Low_D,1,65,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,73-97,High_E,1,83.7,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,73-97,Low_E,1,102.7,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,73-97,High_F,1,127.6,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,73-97,Low_F,1,153,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,73-97,High_G,1,185.4,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,73-97,Low_G,1,218.6,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,98-199,High_D,1,59.6,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,98-199,Low_D,1,75.4,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,98-199,High_E,1,97.1,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,98-199,Low_E,1,119.4,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,98-199,High_F,1,149,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,98-199,Low_F,1,179.5,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,98-199,High_G,1,218.8,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,98-199,Low_G,1,259.5,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,200,High_D,1,127.7,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,200,Low_D,1,160.8,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,200,High_E,1,205.8,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,200,Low_E,1,252.2,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,200,High_F,1,313.3,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,200,Low_F,1,376.4,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,200,High_G,1,457.5,N/A +Other Heating,TTZC,Non Condensing Gas Boiler,N/A,200,Low_G,1,541.2,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,0-72,High_D,1,28.1,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,0-72,Low_D,1,37.7,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,0-72,High_E,1,52.1,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,0-72,Low_E,1,68.1,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,0-72,High_F,1,90.5,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,0-72,Low_F,1,114.8,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,0-72,High_G,1,147.5,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,0-72,Low_G,1,182.5,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,73-97,High_D,1,27.6,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,73-97,Low_D,1,39.9,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,73-97,High_E,1,59.9,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,73-97,Low_E,1,83.4,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,73-97,High_F,1,117.9,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,73-97,Low_F,1,156.7,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,73-97,High_G,1,210.1,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,73-97,Low_G,1,268.6,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,98-199,High_D,1,31.5,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,98-199,Low_D,1,44.4,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,98-199,High_E,1,65.9,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,98-199,Low_E,1,91.9,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,98-199,High_F,1,130.4,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,98-199,Low_F,1,174.1,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,98-199,High_G,1,234.7,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,98-199,Low_G,1,301.4,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,200,High_D,1,68.1,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,200,Low_D,1,92.8,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,200,High_E,1,134.5,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,200,Low_E,1,184.8,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,200,High_F,1,259.6,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,200,Low_F,1,344.7,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,200,High_G,1,462.8,N/A +Other Heating,TTZC,Non Condensing LPG Boiler,N/A,200,Low_G,1,592.9,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,0-72,High_D,1,31.9,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,0-72,Low_D,1,42,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,0-72,High_E,1,56.4,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,0-72,Low_E,1,72,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,0-72,High_F,1,93.2,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,0-72,Low_F,1,115.9,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,0-72,High_G,1,145.9,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,0-72,Low_G,1,177.5,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,73-97,High_D,1,34.8,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,73-97,Low_D,1,47.7,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,73-97,High_E,1,67.4,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,73-97,Low_E,1,89.7,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,73-97,High_F,1,121.5,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,73-97,Low_F,1,156.5,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,73-97,High_G,1,203.9,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,73-97,Low_G,1,255.2,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,98-199,High_D,1,42.3,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,98-199,Low_D,1,56.5,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,98-199,High_E,1,78.6,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,98-199,Low_E,1,103.9,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,98-199,High_F,1,140.1,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,98-199,Low_F,1,180.2,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,98-199,High_G,1,234.7,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,98-199,Low_G,1,293.8,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,200,High_D,1,85,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,200,Low_D,1,113.3,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,200,High_E,1,157.7,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,200,Low_E,1,208.9,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,200,High_F,1,282.8,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,200,Low_F,1,364.8,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,200,High_G,1,476.8,N/A +Other Heating,TTZC,Condensing LPG Boiler,N/A,200,Low_G,1,598.4,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,0-72,High_D,1,46.3,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,0-72,Low_D,1,57.2,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,0-72,High_E,1,71.4,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,0-72,Low_E,1,85.5,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,0-72,High_F,1,103.4,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,0-72,Low_F,1,121.2,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,0-72,High_G,1,143.4,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,0-72,Low_G,1,165.7,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,73-97,High_D,1,51.8,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,73-97,Low_D,1,66.6,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,73-97,High_E,1,87.3,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,73-97,Low_E,1,109,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,73-97,High_F,1,138,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,73-97,Low_F,1,168.5,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,73-97,High_G,1,208.1,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,73-97,Low_G,1,249.4,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,98-199,High_D,1,62.3,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,98-199,Low_D,1,78.6,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,98-199,High_E,1,101.3,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,98-199,Low_E,1,125.2,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,98-199,High_F,1,157.1,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,98-199,Low_F,1,190.6,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,98-199,High_G,1,234,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,98-199,Low_G,1,279.4,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,200,High_D,1,108.8,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,200,Low_D,1,140,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,200,High_E,1,185.3,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,200,Low_E,1,234.9,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,200,High_F,1,303.2,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,200,Low_F,1,376.7,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,200,High_G,1,474.3,N/A +Other Heating,TTZC,Non Condensing Oil Boiler,N/A,200,Low_G,1,578.2,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,0-72,High_D,1,49.1,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,0-72,Low_D,1,60,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,0-72,High_E,1,73.8,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,0-72,Low_E,1,87.2,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,0-72,High_F,1,103.8,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,0-72,Low_F,1,120,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,0-72,High_G,1,139.7,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,0-72,Low_G,1,159,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,73-97,High_D,1,58.4,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,73-97,Low_D,1,73.7,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,73-97,High_E,1,94.3,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,73-97,Low_E,1,115.4,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,73-97,High_F,1,143.1,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,73-97,Low_F,1,171.6,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,73-97,High_G,1,208,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,73-97,Low_G,1,245.4,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,98-199,High_D,1,63.8,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,98-199,Low_D,1,80.8,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,98-199,High_E,1,104.6,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,98-199,Low_E,1,129.5,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,98-199,High_F,1,162.8,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,98-199,Low_F,1,197.7,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,98-199,High_G,1,243.1,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,98-199,Low_G,1,290.4,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,200,High_D,1,122.6,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,200,Low_D,1,155.5,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,200,High_E,1,201.8,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,200,Low_E,1,251,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,200,High_F,1,317.5,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,200,Low_F,1,387.8,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,200,High_G,1,479.7,N/A +Other Heating,TTZC,Condensing Oil Boiler,N/A,200,Low_G,1,576.3,N/A +Other Heating,TTZC,Electric Boiler,N/A,0-72,High_D,1,29.2,N/A +Other Heating,TTZC,Electric Boiler,N/A,0-72,Low_D,1,36,N/A +Other Heating,TTZC,Electric Boiler,N/A,0-72,High_E,1,44.7,N/A +Other Heating,TTZC,Electric Boiler,N/A,0-72,Low_E,1,53.2,N/A +Other Heating,TTZC,Electric Boiler,N/A,0-72,High_F,1,63.9,N/A +Other Heating,TTZC,Electric Boiler,N/A,0-72,Low_F,1,74.5,N/A +Other Heating,TTZC,Electric Boiler,N/A,0-72,High_G,1,87.5,N/A +Other Heating,TTZC,Electric Boiler,N/A,0-72,Low_G,1,100.4,N/A +Other Heating,TTZC,Electric Boiler,N/A,73-97,High_D,1,34.6,N/A +Other Heating,TTZC,Electric Boiler,N/A,73-97,Low_D,1,44.2,N/A +Other Heating,TTZC,Electric Boiler,N/A,73-97,High_E,1,57.3,N/A +Other Heating,TTZC,Electric Boiler,N/A,73-97,Low_E,1,71,N/A +Other Heating,TTZC,Electric Boiler,N/A,73-97,High_F,1,89.2,N/A +Other Heating,TTZC,Electric Boiler,N/A,73-97,Low_F,1,108.3,N/A +Other Heating,TTZC,Electric Boiler,N/A,73-97,High_G,1,132.9,N/A +Other Heating,TTZC,Electric Boiler,N/A,73-97,Low_G,1,158.5,N/A +Other Heating,TTZC,Electric Boiler,N/A,98-199,High_D,1,43.6,N/A +Other Heating,TTZC,Electric Boiler,N/A,98-199,Low_D,1,55.1,N/A +Other Heating,TTZC,Electric Boiler,N/A,98-199,High_E,1,70.9,N/A +Other Heating,TTZC,Electric Boiler,N/A,98-199,Low_E,1,87.4,N/A +Other Heating,TTZC,Electric Boiler,N/A,98-199,High_F,1,109.5,N/A +Other Heating,TTZC,Electric Boiler,N/A,98-199,Low_F,1,132.5,N/A +Other Heating,TTZC,Electric Boiler,N/A,98-199,High_G,1,162.4,N/A +Other Heating,TTZC,Electric Boiler,N/A,98-199,Low_G,1,193.6,N/A +Other Heating,TTZC,Electric Boiler,N/A,200,High_D,1,88.8,N/A +Other Heating,TTZC,Electric Boiler,N/A,200,Low_D,1,112,N/A +Other Heating,TTZC,Electric Boiler,N/A,200,High_E,1,144.4,N/A +Other Heating,TTZC,Electric Boiler,N/A,200,Low_E,1,178.8,N/A +Other Heating,TTZC,Electric Boiler,N/A,200,High_F,1,225.1,N/A +Other Heating,TTZC,Electric Boiler,N/A,200,Low_F,1,273.8,N/A +Other Heating,TTZC,Electric Boiler,N/A,200,High_G,1,337.5,N/A +Other Heating,TTZC,Electric Boiler,N/A,200,Low_G,1,404.3,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,0-72,High_D,1,26.7,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,0-72,Low_D,1,32.5,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,0-72,High_E,1,39.8,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,0-72,Low_E,1,46.9,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,0-72,High_F,1,55.8,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,0-72,Low_F,1,64.5,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,0-72,High_G,1,75.2,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,0-72,Low_G,1,85.8,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,73-97,High_D,1,29.7,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,73-97,Low_D,1,37.5,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,73-97,High_E,1,48.2,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,73-97,Low_E,1,59.4,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,73-97,High_F,1,74.2,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,73-97,Low_F,1,89.7,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,73-97,High_G,1,109.7,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,73-97,Low_G,1,130.5,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,98-199,High_D,1,35.1,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,98-199,Low_D,1,43.7,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,98-199,High_E,1,55.5,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,98-199,Low_E,1,67.9,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,98-199,High_F,1,84.3,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,98-199,Low_F,1,101.5,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,98-199,High_G,1,123.7,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,98-199,Low_G,1,146.9,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,200,High_D,1,59.6,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,200,Low_D,1,75.9,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,200,High_E,1,99.5,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,200,Low_E,1,125.2,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,200,High_F,1,160.8,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,200,Low_F,1,199,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,200,High_G,1,249.6,N/A +Other Heating,TTZC,Solid Fossil Boiler,N/A,200,Low_G,1,303.5,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Air to Water ASHP,GSHP,200,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Air to Water ASHP,GSHP,200,Low_G,0.96,0,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,0-72,High_D,1,22.2,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,0-72,Low_D,1,25.4,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,0-72,High_E,1,29.4,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,0-72,Low_E,1,33.3,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,0-72,High_F,1,38.1,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,0-72,Low_F,1,42.6,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,0-72,High_G,1,48.1,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,0-72,Low_G,1,53.5,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,73-97,High_D,1,24.7,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,73-97,Low_D,1,29,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,73-97,High_E,1,34.6,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,73-97,Low_E,1,40.3,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,73-97,High_F,1,47.7,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,73-97,Low_F,1,55.2,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,73-97,High_G,1,64.7,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,73-97,Low_G,1,74.3,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,98-199,High_D,1,28,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,98-199,Low_D,1,32.6,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,98-199,High_E,1,38.8,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,98-199,Low_E,1,45,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,98-199,High_F,1,53.2,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,98-199,Low_F,1,61.6,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,98-199,High_G,1,72.2,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,98-199,Low_G,1,83,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,200,High_D,1,49.8,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,200,Low_D,1,57.9,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,200,High_E,1,69,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,200,Low_E,1,80.4,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,200,High_F,1,95.4,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,200,Low_F,1,111,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,200,High_G,1,130.9,N/A +Other Heating,P&RT,Air to Water ASHP,N/A,200,Low_G,1,151.5,N/A +Other Heating,P&RT,GSHP,N/A,0-72,High_D,1,22.4,N/A +Other Heating,P&RT,GSHP,N/A,0-72,Low_D,1,25.7,N/A +Other Heating,P&RT,GSHP,N/A,0-72,High_E,1,29.8,N/A +Other Heating,P&RT,GSHP,N/A,0-72,Low_E,1,33.7,N/A +Other Heating,P&RT,GSHP,N/A,0-72,High_F,1,38.4,N/A +Other Heating,P&RT,GSHP,N/A,0-72,Low_F,1,43,N/A +Other Heating,P&RT,GSHP,N/A,0-72,High_G,1,48.4,N/A +Other Heating,P&RT,GSHP,N/A,0-72,Low_G,1,53.6,N/A +Other Heating,P&RT,GSHP,N/A,73-97,High_D,1,25.8,N/A +Other Heating,P&RT,GSHP,N/A,73-97,Low_D,1,29.9,N/A +Other Heating,P&RT,GSHP,N/A,73-97,High_E,1,35.1,N/A +Other Heating,P&RT,GSHP,N/A,73-97,Low_E,1,40.1,N/A +Other Heating,P&RT,GSHP,N/A,73-97,High_F,1,46.4,N/A +Other Heating,P&RT,GSHP,N/A,73-97,Low_F,1,52.4,N/A +Other Heating,P&RT,GSHP,N/A,73-97,High_G,1,59.8,N/A +Other Heating,P&RT,GSHP,N/A,73-97,Low_G,1,67,N/A +Other Heating,P&RT,GSHP,N/A,98-199,High_D,1,28.1,N/A +Other Heating,P&RT,GSHP,N/A,98-199,Low_D,1,32.5,N/A +Other Heating,P&RT,GSHP,N/A,98-199,High_E,1,38.2,N/A +Other Heating,P&RT,GSHP,N/A,98-199,Low_E,1,43.9,N/A +Other Heating,P&RT,GSHP,N/A,98-199,High_F,1,51,N/A +Other Heating,P&RT,GSHP,N/A,98-199,Low_F,1,58.1,N/A +Other Heating,P&RT,GSHP,N/A,98-199,High_G,1,66.8,N/A +Other Heating,P&RT,GSHP,N/A,98-199,Low_G,1,75.6,N/A +Other Heating,P&RT,GSHP,N/A,200,High_D,1,50.2,N/A +Other Heating,P&RT,GSHP,N/A,200,Low_D,1,58.7,N/A +Other Heating,P&RT,GSHP,N/A,200,High_E,1,70.1,N/A +Other Heating,P&RT,GSHP,N/A,200,Low_E,1,81.7,N/A +Other Heating,P&RT,GSHP,N/A,200,High_F,1,96.8,N/A +Other Heating,P&RT,GSHP,N/A,200,Low_F,1,112.3,N/A +Other Heating,P&RT,GSHP,N/A,200,High_G,1,132,N/A +Other Heating,P&RT,GSHP,N/A,200,Low_G,1,152.2,N/A +Other Heating,TRV,Air to Water ASHP,N/A,0-72,High_D,1,21.1,N/A +Other Heating,TRV,Air to Water ASHP,N/A,0-72,Low_D,1,21.1,N/A +Other Heating,TRV,Air to Water ASHP,N/A,0-72,High_E,1,19.9,N/A +Other Heating,TRV,Air to Water ASHP,N/A,0-72,Low_E,1,17.6,N/A +Other Heating,TRV,Air to Water ASHP,N/A,0-72,High_F,1,13.4,N/A +Other Heating,TRV,Air to Water ASHP,N/A,0-72,Low_F,1,8,N/A +Other Heating,TRV,Air to Water ASHP,N/A,0-72,High_G,1,0,N/A +Other Heating,TRV,Air to Water ASHP,N/A,0-72,Low_G,1,0,N/A +Other Heating,TRV,Air to Water ASHP,N/A,73-97,High_D,1,25.2,N/A +Other Heating,TRV,Air to Water ASHP,N/A,73-97,Low_D,1,25.1,N/A +Other Heating,TRV,Air to Water ASHP,N/A,73-97,High_E,1,23.6,N/A +Other Heating,TRV,Air to Water ASHP,N/A,73-97,Low_E,1,20.8,N/A +Other Heating,TRV,Air to Water ASHP,N/A,73-97,High_F,1,15.8,N/A +Other Heating,TRV,Air to Water ASHP,N/A,73-97,Low_F,1,9.4,N/A +Other Heating,TRV,Air to Water ASHP,N/A,73-97,High_G,1,0,N/A +Other Heating,TRV,Air to Water ASHP,N/A,73-97,Low_G,1,0,N/A +Other Heating,TRV,Air to Water ASHP,N/A,98-199,High_D,1,30.7,N/A +Other Heating,TRV,Air to Water ASHP,N/A,98-199,Low_D,1,30.5,N/A +Other Heating,TRV,Air to Water ASHP,N/A,98-199,High_E,1,28.6,N/A +Other Heating,TRV,Air to Water ASHP,N/A,98-199,Low_E,1,25.3,N/A +Other Heating,TRV,Air to Water ASHP,N/A,98-199,High_F,1,19.4,N/A +Other Heating,TRV,Air to Water ASHP,N/A,98-199,Low_F,1,11.7,N/A +Other Heating,TRV,Air to Water ASHP,N/A,98-199,High_G,1,0.2,N/A +Other Heating,TRV,Air to Water ASHP,N/A,98-199,Low_G,1,0,N/A +Other Heating,TRV,Air to Water ASHP,N/A,200,High_D,1,73.6,N/A +Other Heating,TRV,Air to Water ASHP,N/A,200,Low_D,1,75,N/A +Other Heating,TRV,Air to Water ASHP,N/A,200,High_E,1,72.6,N/A +Other Heating,TRV,Air to Water ASHP,N/A,200,Low_E,1,66.2,N/A +Other Heating,TRV,Air to Water ASHP,N/A,200,High_F,1,53.1,N/A +Other Heating,TRV,Air to Water ASHP,N/A,200,Low_F,1,35.4,N/A +Other Heating,TRV,Air to Water ASHP,N/A,200,High_G,1,7.9,N/A +Other Heating,TRV,Air to Water ASHP,N/A,200,Low_G,1,0,N/A +Other Heating,TRV,GSHP,N/A,0-72,High_D,1,16.6,N/A +Other Heating,TRV,GSHP,N/A,0-72,Low_D,1,16.1,N/A +Other Heating,TRV,GSHP,N/A,0-72,High_E,1,14.6,N/A +Other Heating,TRV,GSHP,N/A,0-72,Low_E,1,12.6,N/A +Other Heating,TRV,GSHP,N/A,0-72,High_F,1,9.1,N/A +Other Heating,TRV,GSHP,N/A,0-72,Low_F,1,4.9,N/A +Other Heating,TRV,GSHP,N/A,0-72,High_G,1,0,N/A +Other Heating,TRV,GSHP,N/A,0-72,Low_G,1,0,N/A +Other Heating,TRV,GSHP,N/A,73-97,High_D,1,20.2,N/A +Other Heating,TRV,GSHP,N/A,73-97,Low_D,1,19.6,N/A +Other Heating,TRV,GSHP,N/A,73-97,High_E,1,17.9,N/A +Other Heating,TRV,GSHP,N/A,73-97,Low_E,1,15.3,N/A +Other Heating,TRV,GSHP,N/A,73-97,High_F,1,11.2,N/A +Other Heating,TRV,GSHP,N/A,73-97,Low_F,1,6,N/A +Other Heating,TRV,GSHP,N/A,73-97,High_G,1,0,N/A +Other Heating,TRV,GSHP,N/A,73-97,Low_G,1,0,N/A +Other Heating,TRV,GSHP,N/A,98-199,High_D,1,23.6,N/A +Other Heating,TRV,GSHP,N/A,98-199,Low_D,1,22.8,N/A +Other Heating,TRV,GSHP,N/A,98-199,High_E,1,20.7,N/A +Other Heating,TRV,GSHP,N/A,98-199,Low_E,1,17.8,N/A +Other Heating,TRV,GSHP,N/A,98-199,High_F,1,12.9,N/A +Other Heating,TRV,GSHP,N/A,98-199,Low_F,1,7.1,N/A +Other Heating,TRV,GSHP,N/A,98-199,High_G,1,0,N/A +Other Heating,TRV,GSHP,N/A,98-199,Low_G,1,0,N/A +Other Heating,TRV,GSHP,N/A,200,High_D,1,62,N/A +Other Heating,TRV,GSHP,N/A,200,Low_D,1,62.3,N/A +Other Heating,TRV,GSHP,N/A,200,High_E,1,59.3,N/A +Other Heating,TRV,GSHP,N/A,200,Low_E,1,53.2,N/A +Other Heating,TRV,GSHP,N/A,200,High_F,1,41.5,N/A +Other Heating,TRV,GSHP,N/A,200,Low_F,1,26.3,N/A +Other Heating,TRV,GSHP,N/A,200,High_G,1,2.9,N/A +Other Heating,TRV,GSHP,N/A,200,Low_G,1,0,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,0-72,High_D,1,53.5,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,0-72,Low_D,1,64.3,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,0-72,High_E,1,77.5,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,0-72,Low_E,1,90,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,0-72,High_F,1,105.1,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,0-72,Low_F,1,119.4,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,0-72,High_G,1,136.3,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,0-72,Low_G,1,152.5,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,73-97,High_D,1,63.9,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,73-97,Low_D,1,79.1,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,73-97,High_E,1,99.1,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,73-97,Low_E,1,119.2,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,73-97,High_F,1,144.9,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,73-97,Low_F,1,170.9,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,73-97,High_G,1,203.6,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,73-97,Low_G,1,236.7,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,98-199,High_D,1,72.3,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,98-199,Low_D,1,89.2,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,98-199,High_E,1,111.5,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,98-199,Low_E,1,134,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,98-199,High_F,1,162.7,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,98-199,Low_F,1,191.8,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,98-199,High_G,1,228.4,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,98-199,Low_G,1,265.5,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,200,High_D,1,139.7,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,200,Low_D,1,172.9,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,200,High_E,1,217.7,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,200,Low_E,1,263.4,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,200,High_F,1,323.2,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,200,Low_F,1,384.5,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,200,High_G,1,462.6,N/A +Other Heating,TTZC,Air to Water ASHP,N/A,200,Low_G,1,543,N/A +Other Heating,TTZC,GSHP,N/A,0-72,High_D,1,54.1,N/A +Other Heating,TTZC,GSHP,N/A,0-72,Low_D,1,64.6,N/A +Other Heating,TTZC,GSHP,N/A,0-72,High_E,1,77.5,N/A +Other Heating,TTZC,GSHP,N/A,0-72,Low_E,1,89.6,N/A +Other Heating,TTZC,GSHP,N/A,0-72,High_F,1,104.2,N/A +Other Heating,TTZC,GSHP,N/A,0-72,Low_F,1,118,N/A +Other Heating,TTZC,GSHP,N/A,0-72,High_G,1,134.2,N/A +Other Heating,TTZC,GSHP,N/A,0-72,Low_G,1,149.6,N/A +Other Heating,TTZC,GSHP,N/A,73-97,High_D,1,67.1,N/A +Other Heating,TTZC,GSHP,N/A,73-97,Low_D,1,82.8,N/A +Other Heating,TTZC,GSHP,N/A,73-97,High_E,1,103.4,N/A +Other Heating,TTZC,GSHP,N/A,73-97,Low_E,1,123.9,N/A +Other Heating,TTZC,GSHP,N/A,73-97,High_F,1,150.1,N/A +Other Heating,TTZC,GSHP,N/A,73-97,Low_F,1,176.5,N/A +Other Heating,TTZC,GSHP,N/A,73-97,High_G,1,209.5,N/A +Other Heating,TTZC,GSHP,N/A,73-97,Low_G,1,242.8,N/A +Other Heating,TTZC,GSHP,N/A,98-199,High_D,1,77.1,N/A +Other Heating,TTZC,GSHP,N/A,98-199,Low_D,1,93.9,N/A +Other Heating,TTZC,GSHP,N/A,98-199,High_E,1,115.4,N/A +Other Heating,TTZC,GSHP,N/A,98-199,Low_E,1,136.4,N/A +Other Heating,TTZC,GSHP,N/A,98-199,High_F,1,162.7,N/A +Other Heating,TTZC,GSHP,N/A,98-199,Low_F,1,188.5,N/A +Other Heating,TTZC,GSHP,N/A,98-199,High_G,1,220.4,N/A +Other Heating,TTZC,GSHP,N/A,98-199,Low_G,1,251.9,N/A +Other Heating,TTZC,GSHP,N/A,200,High_D,1,147.7,N/A +Other Heating,TTZC,GSHP,N/A,200,Low_D,1,181.2,N/A +Other Heating,TTZC,GSHP,N/A,200,High_E,1,225.4,N/A +Other Heating,TTZC,GSHP,N/A,200,Low_E,1,269.9,N/A +Other Heating,TTZC,GSHP,N/A,200,High_F,1,327.1,N/A +Other Heating,TTZC,GSHP,N/A,200,Low_F,1,385,N/A +Other Heating,TTZC,GSHP,N/A,200,High_G,1,458,N/A +Other Heating,TTZC,GSHP,N/A,200,Low_G,1,532.1,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,High_B,1,19,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,Low_B,1,28.2,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,High_C,1,40,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,Low_C,1,50.6,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,High_D,1,64.3,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,Low_D,1,77.3,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,High_E,1,93.6,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,Low_E,1,109.2,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,High_F,1,128.4,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,Low_F,1,146.9,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,High_G,1,169.2,N/A +Other Heating,TRV,DHS non-CHP,N/A,0-72,Low_G,1,190.9,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,High_B,1,22,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,Low_B,1,32.5,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,High_C,1,46.6,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,Low_C,1,59.9,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,High_D,1,78.2,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,Low_D,1,96.4,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,High_E,1,120.6,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,Low_E,1,144.9,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,High_F,1,176.2,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,Low_F,1,208,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,High_G,1,248.1,N/A +Other Heating,TRV,DHS non-CHP,N/A,73-97,Low_G,1,288.9,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,High_B,1,29,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,Low_B,1,40.9,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,High_C,1,56.8,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,Low_C,1,71.7,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,High_D,1,92,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,Low_D,1,112.2,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,High_E,1,138.7,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,Low_E,1,165.3,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,High_F,1,199.3,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,Low_F,1,233.7,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,High_G,1,276.9,N/A +Other Heating,TRV,DHS non-CHP,N/A,98-199,Low_G,1,320.7,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,High_B,1,64.3,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,Low_B,1,84.9,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,High_C,1,113.7,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,Low_C,1,142.1,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,High_D,1,182.2,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,Low_D,1,223.3,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,High_E,1,279.3,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,Low_E,1,337.1,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,High_F,1,413.2,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,Low_F,1,491.8,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,High_G,1,592.6,N/A +Other Heating,TRV,DHS non-CHP,N/A,200,Low_G,1,696.9,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,High_B,1,17.8,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,Low_B,1,27.1,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,High_C,1,38.4,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,Low_C,1,47.9,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,High_D,1,59.6,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,Low_D,1,69.9,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,High_E,1,81.9,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,Low_E,1,92.6,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,High_F,1,104.5,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,Low_F,1,114.8,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,High_G,1,126,N/A +Other Heating,TRV,DHS CHP,N/A,0-72,Low_G,1,135.5,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,High_B,1,22.1,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,Low_B,1,33.3,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,High_C,1,47.6,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,Low_C,1,60.5,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,High_D,1,77.4,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,Low_D,1,93.5,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,High_E,1,113.9,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,Low_E,1,133.6,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,High_F,1,158,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,Low_F,1,181.7,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,High_G,1,210.6,N/A +Other Heating,TRV,DHS CHP,N/A,73-97,Low_G,1,239,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,High_B,1,29.5,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,Low_B,1,41,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,High_C,1,56.1,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,Low_C,1,70.3,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,High_D,1,89.3,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,Low_D,1,108,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,High_E,1,132.4,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,Low_E,1,156.7,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,High_F,1,187.6,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,Low_F,1,218.5,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,High_G,1,257.1,N/A +Other Heating,TRV,DHS CHP,N/A,98-199,Low_G,1,296,N/A +Other Heating,TRV,DHS CHP,N/A,200,High_B,1,64.6,N/A +Other Heating,TRV,DHS CHP,N/A,200,Low_B,1,88.9,N/A +Other Heating,TRV,DHS CHP,N/A,200,High_C,1,121,N/A +Other Heating,TRV,DHS CHP,N/A,200,Low_C,1,150.9,N/A +Other Heating,TRV,DHS CHP,N/A,200,High_D,1,191.2,N/A +Other Heating,TRV,DHS CHP,N/A,200,Low_D,1,230.7,N/A +Other Heating,TRV,DHS CHP,N/A,200,High_E,1,282.3,N/A +Other Heating,TRV,DHS CHP,N/A,200,Low_E,1,333.7,N/A +Other Heating,TRV,DHS CHP,N/A,200,High_F,1,399,N/A +Other Heating,TRV,DHS CHP,N/A,200,Low_F,1,464.4,N/A +Other Heating,TRV,DHS CHP,N/A,200,High_G,1,545.9,N/A +Other Heating,TRV,DHS CHP,N/A,200,Low_G,1,628.1,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,0-72,High_D,1,18.5,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,0-72,Low_D,1,21.2,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,0-72,High_E,1,24.7,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,0-72,Low_E,1,28,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,0-72,High_F,1,32,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,0-72,Low_F,1,35.8,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,0-72,High_G,1,40.4,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,0-72,Low_G,1,44.8,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,73-97,High_D,1,20.8,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,73-97,Low_D,1,24.1,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,73-97,High_E,1,28.3,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,73-97,Low_E,1,32.3,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,73-97,High_F,1,37.4,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,73-97,Low_F,1,42.3,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,73-97,High_G,1,48.4,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,73-97,Low_G,1,54.3,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,98-199,High_D,1,22.7,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,98-199,Low_D,1,26.2,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,98-199,High_E,1,30.7,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,98-199,Low_E,1,35.2,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,98-199,High_F,1,40.7,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,98-199,Low_F,1,46.3,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,98-199,High_G,1,53.1,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,98-199,Low_G,1,59.9,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,200,High_D,1,43.9,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,200,Low_D,1,50.4,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,200,High_E,1,58.6,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,200,Low_E,1,66.6,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,200,High_F,1,76.3,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,200,Low_F,1,85.8,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,200,High_G,1,97.3,N/A +Other Heating,Compensation_nopreHCs,Condensing Gas Boiler,N/A,200,Low_G,1,108.5,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,0-72,High_D,1,22.7,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,0-72,Low_D,1,25.8,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,0-72,High_E,1,30.2,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,0-72,Low_E,1,35.1,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,0-72,High_F,1,41.7,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,0-72,Low_F,1,48.8,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,0-72,High_G,1,58.2,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,0-72,Low_G,1,68.1,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,73-97,High_D,1,23.8,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,73-97,Low_D,1,27,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,73-97,High_E,1,31.8,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,73-97,Low_E,1,37.2,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,73-97,High_F,1,44.8,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,73-97,Low_F,1,53,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,73-97,High_G,1,64.1,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,73-97,Low_G,1,76,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,98-199,High_D,1,26.6,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,98-199,Low_D,1,30,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,98-199,High_E,1,35.1,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,98-199,Low_E,1,40.8,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,98-199,High_F,1,48.9,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,98-199,Low_F,1,57.8,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,98-199,High_G,1,69.7,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,98-199,Low_G,1,82.6,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,200,High_D,1,49,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,200,Low_D,1,55.5,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,200,High_E,1,65,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,200,Low_E,1,75.7,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,200,High_F,1,90.6,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,200,Low_F,1,106.8,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,200,High_G,1,128.5,N/A +Other Heating,Compensation_nopreHCs,Condensing LPG Boiler,N/A,200,Low_G,1,151.8,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,0-72,High_D,1,22.6,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,0-72,Low_D,1,26,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,0-72,High_E,1,30.4,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,0-72,Low_E,1,34.7,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,0-72,High_F,1,40.1,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,0-72,Low_F,1,45.4,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,0-72,High_G,1,52,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,0-72,Low_G,1,58.5,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,73-97,High_D,1,24.9,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,73-97,Low_D,1,28.9,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,73-97,High_E,1,34.2,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,73-97,Low_E,1,39.6,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,73-97,High_F,1,46.6,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,73-97,Low_F,1,53.7,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,73-97,High_G,1,62.7,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,73-97,Low_G,1,71.8,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,98-199,High_D,1,26.5,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,98-199,Low_D,1,30.8,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,98-199,High_E,1,36.6,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,98-199,Low_E,1,42.5,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,98-199,High_F,1,50.3,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,98-199,Low_F,1,58.4,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,98-199,High_G,1,68.7,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,98-199,Low_G,1,79.4,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,200,High_D,1,50.5,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,200,Low_D,1,58.6,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,200,High_E,1,69.3,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,200,Low_E,1,80.2,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,200,High_F,1,94.2,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,200,Low_F,1,108.6,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,200,High_G,1,126.8,N/A +Other Heating,Compensation_nopreHCs,Non Condensing Gas Boiler,N/A,200,Low_G,1,145.4,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,0-72,High_D,1,27.9,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,0-72,Low_D,1,31.3,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,0-72,High_E,1,36.3,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,0-72,Low_E,1,41.9,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,0-72,High_F,1,49.6,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,0-72,Low_F,1,57.9,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,0-72,High_G,1,69.1,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,0-72,Low_G,1,81,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,73-97,High_D,1,29.9,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,73-97,Low_D,1,33.6,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,73-97,High_E,1,39.4,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,73-97,Low_E,1,46.1,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,73-97,High_F,1,55.6,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,73-97,Low_F,1,66.1,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,73-97,High_G,1,80.4,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,73-97,Low_G,1,95.9,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,98-199,High_D,1,31.8,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,98-199,Low_D,1,35.5,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,98-199,High_E,1,41.4,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,98-199,Low_E,1,48.3,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,98-199,High_F,1,58.4,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,98-199,Low_F,1,69.6,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,98-199,High_G,1,85,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,98-199,Low_G,1,101.8,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,200,High_D,1,59.9,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,200,Low_D,1,66.8,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,200,High_E,1,77.6,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,200,Low_E,1,89.9,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,200,High_F,1,107.7,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,200,Low_F,1,127.3,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,200,High_G,1,154,N/A +Other Heating,Compensation_nopreHCs,Non Condensing LPG Boiler,N/A,200,Low_G,1,182.9,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,0-72,High_D,1,20.5,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,0-72,Low_D,1,23.6,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,0-72,High_E,1,27.5,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,0-72,Low_E,1,31.4,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,0-72,High_F,1,36.1,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,0-72,Low_F,1,40.8,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,0-72,High_G,1,46.5,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,0-72,Low_G,1,52.2,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,73-97,High_D,1,22.2,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,73-97,Low_D,1,25.8,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,73-97,High_E,1,30.4,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,73-97,Low_E,1,34.9,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,73-97,High_F,1,40.8,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,73-97,Low_F,1,46.6,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,73-97,High_G,1,53.9,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,73-97,Low_G,1,61.2,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,98-199,High_D,1,24.5,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,98-199,Low_D,1,28.3,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,98-199,High_E,1,33.3,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,98-199,Low_E,1,38.3,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,98-199,High_F,1,44.9,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,98-199,Low_F,1,51.5,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,98-199,High_G,1,59.8,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,98-199,Low_G,1,68.3,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,200,High_D,1,46.6,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,200,Low_D,1,53.7,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,200,High_E,1,63,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,200,Low_E,1,72.4,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,200,High_F,1,84.3,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,200,Low_F,1,96.4,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,200,High_G,1,111.5,N/A +Other Heating,Compensation_preHCs,Condensing Gas Boiler,N/A,200,Low_G,1,126.8,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,0-72,High_D,1,18.5,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,0-72,Low_D,1,21.2,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,0-72,High_E,1,24.7,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,0-72,Low_E,1,28,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,0-72,High_F,1,32,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,0-72,Low_F,1,35.8,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,0-72,High_G,1,40.4,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,0-72,Low_G,1,44.8,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,73-97,High_D,1,20.8,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,73-97,Low_D,1,24.1,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,73-97,High_E,1,28.3,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,73-97,Low_E,1,32.3,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,73-97,High_F,1,37.4,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,73-97,Low_F,1,42.3,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,73-97,High_G,1,48.4,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,73-97,Low_G,1,54.3,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,98-199,High_D,1,22.7,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,98-199,Low_D,1,26.2,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,98-199,High_E,1,30.7,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,98-199,Low_E,1,35.2,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,98-199,High_F,1,40.7,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,98-199,Low_F,1,46.3,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,98-199,High_G,1,53.1,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,98-199,Low_G,1,59.9,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,200,High_D,1,53.2,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,200,Low_D,1,59.4,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,200,High_E,1,69.2,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,200,Low_E,1,80.4,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,200,High_F,1,96.7,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,200,Low_F,1,114.7,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,200,High_G,1,139.4,N/A +Other Heating,Compensation_preHCs,Condensing LPG Boiler,N/A,200,Low_G,1,166.2,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,0-72,High_D,1,24.4,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,0-72,Low_D,1,28.1,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,0-72,High_E,1,33,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,0-72,Low_E,1,38,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,0-72,High_F,1,44.3,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,0-72,Low_F,1,50.7,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,0-72,High_G,1,58.7,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,0-72,Low_G,1,66.9,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,73-97,High_D,1,27.1,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,73-97,Low_D,1,31.5,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,73-97,High_E,1,37.4,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,73-97,Low_E,1,43.4,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,73-97,High_F,1,51.4,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,73-97,Low_F,1,59.7,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,73-97,High_G,1,70.2,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,73-97,Low_G,1,81.2,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,98-199,High_D,1,29.7,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,98-199,Low_D,1,34.2,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,98-199,High_E,1,40.2,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,98-199,Low_E,1,46.5,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,98-199,High_F,1,54.7,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,98-199,Low_F,1,63.3,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,98-199,High_G,1,74.2,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,98-199,Low_G,1,85.5,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,200,High_D,1,56.5,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,200,Low_D,1,64.8,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,200,High_E,1,76,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,200,Low_E,1,87.4,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,200,High_F,1,102.4,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,200,Low_F,1,117.7,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,200,High_G,1,137.3,N/A +Other Heating,Compensation_preHCs,Non Condensing Gas Boiler,N/A,200,Low_G,1,157.5,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,0-72,High_D,1,22.6,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,0-72,Low_D,1,26,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,0-72,High_E,1,30.4,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,0-72,Low_E,1,34.7,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,0-72,High_F,1,40.1,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,0-72,Low_F,1,45.4,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,0-72,High_G,1,52,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,0-72,Low_G,1,58.5,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,73-97,High_D,1,24.9,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,73-97,Low_D,1,28.9,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,73-97,High_E,1,34.2,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,73-97,Low_E,1,39.6,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,73-97,High_F,1,46.6,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,73-97,Low_F,1,53.7,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,73-97,High_G,1,62.7,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,73-97,Low_G,1,71.8,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,98-199,High_D,1,26.5,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,98-199,Low_D,1,30.8,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,98-199,High_E,1,36.6,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,98-199,Low_E,1,42.5,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,98-199,High_F,1,50.3,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,98-199,Low_F,1,58.4,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,98-199,High_G,1,68.7,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,98-199,Low_G,1,79.4,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,200,High_D,1,65,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,200,Low_D,1,71.6,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,200,High_E,1,83,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,200,Low_E,1,96.9,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,200,High_F,1,117.8,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,200,Low_F,1,141.8,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,200,High_G,1,175.2,N/A +Other Heating,Compensation_preHCs,Non Condensing LPG Boiler,N/A,200,Low_G,1,212.1,N/A +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,0-72,High_D,1,25.1,1.11 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,0-72,Low_D,1,30.3,1.34 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,0-72,High_E,1,34.3,1.58 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,0-72,Low_E,1,38.9,1.61 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,0-72,High_F,1,43.1,1.5 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,0-72,Low_F,1,47.5,1.4 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,0-72,High_G,1,51.8,1.26 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,0-72,Low_G,1,56.1,1.14 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,73-97,High_D,1,29.1,1.19 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,73-97,Low_D,1,36.2,1.49 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,73-97,High_E,1,42.5,1.8 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,73-97,Low_E,1,47.9,1.84 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,73-97,High_F,1,57.8,1.87 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,73-97,Low_F,1,64.7,1.78 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,73-97,High_G,1,72.3,1.64 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,73-97,Low_G,1,80,1.51 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,98-199,High_D,1,35.1,1.25 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,98-199,Low_D,1,40.9,1.46 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,98-199,High_E,1,48,1.79 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,98-199,Low_E,1,54.9,1.81 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,98-199,High_F,1,62,1.73 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,98-199,Low_F,1,75.7,1.79 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,98-199,High_G,1,85,1.66 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,98-199,Low_G,1,95.4,1.56 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,200,High_D,1,73.7,1.47 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,200,Low_D,1,85.3,1.71 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,200,High_E,1,100.6,2.11 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,200,Low_E,1,115.3,2.13 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,200,High_F,1,128.8,2 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,200,Low_F,1,154.7,2.04 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,200,High_G,1,172.3,1.88 +Other Heating,Smarttherm,Condensing Gas Boiler,N/A,200,Low_G,1,192,1.74 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,0-72,High_D,1,26.3,1.16 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,0-72,Low_D,1,31.4,1.39 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,0-72,High_E,1,37,1.7 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,0-72,Low_E,1,40.7,1.68 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,0-72,High_F,1,47,1.64 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,0-72,Low_F,1,51.6,1.53 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,0-72,High_G,1,56.6,1.38 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,0-72,Low_G,1,61.6,1.25 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,73-97,High_D,1,29.4,1.2 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,73-97,Low_D,1,38.4,1.57 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,73-97,High_E,1,44.8,1.89 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,73-97,Low_E,1,51.9,2 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,73-97,High_F,1,59.3,1.92 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,73-97,Low_F,1,70.7,1.95 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,73-97,High_G,1,79.4,1.8 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,73-97,Low_G,1,88.7,1.68 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,98-199,High_D,1,33.6,1.2 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,98-199,Low_D,1,41.1,1.47 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,98-199,High_E,1,50.1,1.86 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,98-199,Low_E,1,56.8,1.88 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,98-199,High_F,1,66.7,1.86 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,98-199,Low_F,1,76.1,1.8 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,98-199,High_G,1,88.6,1.73 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,98-199,Low_G,1,99,1.62 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,200,High_D,1,71.2,1.42 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,200,Low_D,1,86.3,1.73 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,200,High_E,1,99.9,2.09 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,200,Low_E,1,117.8,2.17 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,200,High_F,1,136.5,2.12 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,200,Low_F,1,154.6,2.04 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,200,High_G,1,181.2,1.98 +Other Heating,Smarttherm,Non Condensing Gas Boiler,N/A,200,Low_G,1,202.1,1.84 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,0-72,High_D,1,26.9,1.19 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,0-72,Low_D,1,33.3,1.48 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,0-72,High_E,1,39.5,1.81 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,0-72,Low_E,1,49,2.03 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,0-72,High_F,1,58.5,2.05 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,0-72,Low_F,1,69,2.05 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,0-72,High_G,1,75.8,1.86 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,0-72,Low_G,1,87.6,1.79 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,73-97,High_D,1,30.7,1.26 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,73-97,Low_D,1,38.3,1.57 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,73-97,High_E,1,45.6,1.93 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,73-97,Low_E,1,52.8,2.03 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,73-97,High_F,1,63.6,2.06 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,73-97,Low_F,1,79.1,2.18 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,73-97,High_G,1,96.9,2.21 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,73-97,Low_G,1,119,2.27 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,98-199,High_D,1,33.4,1.19 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,98-199,Low_D,1,42.5,1.51 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,98-199,High_E,1,52,1.93 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,98-199,Low_E,1,62.7,2.08 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,98-199,High_F,1,76.7,2.14 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,98-199,Low_F,1,89.2,2.12 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,98-199,High_G,1,104.8,2.06 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,98-199,Low_G,1,135.3,2.22 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,200,High_D,1,79.3,1.59 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,200,Low_D,1,89.2,1.78 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,200,High_E,1,111.9,2.33 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,200,Low_E,1,127.3,2.35 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,200,High_F,1,148,2.3 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,200,Low_F,1,178.8,2.37 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,200,High_G,1,208.3,2.28 +Other Heating,Smarttherm,Condensing LPG Boiler,N/A,200,Low_G,1,269.9,2.47 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,0-72,High_D,1,24.8,1.1 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,0-72,Low_D,1,31.5,1.4 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,0-72,High_E,1,39,1.79 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,0-72,Low_E,1,46.3,1.92 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,0-72,High_F,1,57.4,2.01 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,0-72,Low_F,1,68.5,2.04 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,0-72,High_G,1,81.3,2 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,0-72,Low_G,1,98.2,2.02 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,73-97,High_D,1,25.2,1.03 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,73-97,Low_D,1,36,1.48 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,73-97,High_E,1,44.9,1.9 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,73-97,Low_E,1,53.4,2.05 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,73-97,High_F,1,61.9,2 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,73-97,Low_F,1,74.5,2.05 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,73-97,High_G,1,92.7,2.11 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,73-97,Low_G,1,127.9,2.44 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,98-199,High_D,1,34.2,1.22 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,98-199,Low_D,1,42.6,1.52 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,98-199,High_E,1,49.8,1.85 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,98-199,Low_E,1,60.9,2.02 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,98-199,High_F,1,73.4,2.05 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,98-199,Low_F,1,89.8,2.14 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,98-199,High_G,1,107.6,2.12 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,98-199,Low_G,1,148.6,2.45 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,200,High_D,1,72.4,1.45 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,200,Low_D,1,92.9,1.86 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,200,High_E,1,104.5,2.18 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,200,Low_E,1,131,2.42 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,200,High_F,1,149,2.32 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,200,Low_F,1,173.4,2.3 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,200,High_G,1,209.4,2.29 +Other Heating,Smarttherm,Non Condensing LPG Boiler,N/A,200,Low_G,1,303,2.78 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,0-72,High_D,1,27.5,1.22 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,0-72,Low_D,1,33.4,1.48 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,0-72,High_E,1,38.4,1.76 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,0-72,Low_E,1,43.8,1.82 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,0-72,High_F,1,49.6,1.73 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,0-72,Low_F,1,55.8,1.65 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,0-72,High_G,1,61.6,1.51 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,0-72,Low_G,1,67.6,1.38 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,73-97,High_D,1,31.7,1.3 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,73-97,Low_D,1,38.5,1.58 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,73-97,High_E,1,44.4,1.88 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,73-97,Low_E,1,51.8,1.99 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,73-97,High_F,1,60.1,1.94 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,73-97,Low_F,1,68.6,1.89 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,73-97,High_G,1,81.8,1.86 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,73-97,Low_G,1,91.8,1.74 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,98-199,High_D,1,34.9,1.24 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,98-199,Low_D,1,40.2,1.43 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,98-199,High_E,1,47.6,1.77 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,98-199,Low_E,1,55.3,1.83 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,98-199,High_F,1,65,1.81 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,98-199,Low_F,1,77.2,1.83 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,98-199,High_G,1,88.1,1.72 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,98-199,Low_G,1,102.5,1.67 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,200,High_D,1,74.2,1.48 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,200,Low_D,1,85.8,1.72 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,200,High_E,1,99.8,2.09 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,200,Low_E,1,115.6,2.13 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,200,High_F,1,129.2,2.01 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,200,Low_F,1,149.9,1.98 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,200,High_G,1,174.5,1.9 +Other Heating,Smarttherm,Condensing Oil Boiler,N/A,200,Low_G,1,209.6,1.91 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,0-72,High_D,1,27.5,1.22 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,0-72,Low_D,1,33.2,1.47 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,0-72,High_E,1,38.6,1.77 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,0-72,Low_E,1,44.2,1.83 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,0-72,High_F,1,50.7,1.77 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,0-72,Low_F,1,56.7,1.68 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,0-72,High_G,1,65.4,1.6 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,0-72,Low_G,1,72.3,1.48 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,73-97,High_D,1,29.1,1.2 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,73-97,Low_D,1,35.6,1.46 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,73-97,High_E,1,44.3,1.87 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,73-97,Low_E,1,52.1,2 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,73-97,High_F,1,61.4,1.99 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,73-97,Low_F,1,70.3,1.94 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,73-97,High_G,1,79.4,1.8 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,73-97,Low_G,1,97.3,1.85 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,98-199,High_D,1,36.2,1.29 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,98-199,Low_D,1,42.2,1.5 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,98-199,High_E,1,48.8,1.81 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,98-199,Low_E,1,54.5,1.8 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,98-199,High_F,1,65.7,1.83 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,98-199,Low_F,1,78,1.85 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,98-199,High_G,1,90.3,1.77 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,98-199,Low_G,1,109.1,1.78 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,200,High_D,1,72.6,1.45 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,200,Low_D,1,83.3,1.67 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,200,High_E,1,96.4,2.02 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,200,Low_E,1,112.1,2.07 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,200,High_F,1,129.8,2.01 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,200,Low_F,1,153.1,2.02 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,200,High_G,1,181.7,1.98 +Other Heating,Smarttherm,Non Condensing Oil Boiler,N/A,200,Low_G,1,214.6,1.95 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,0-72,High_D,1,29.7,1.32 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,0-72,Low_D,1,36.8,1.63 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,0-72,High_E,1,42.2,1.93 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,0-72,Low_E,1,48.1,2 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,0-72,High_F,1,54.9,1.92 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,0-72,Low_F,1,60.3,1.79 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,0-72,High_G,1,69.8,1.71 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,0-72,Low_G,1,76.6,1.56 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,73-97,High_D,1,32,1.31 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,73-97,Low_D,1,40.7,1.67 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,73-97,High_E,1,46.6,1.97 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,73-97,Low_E,1,53.9,2.07 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,73-97,High_F,1,64.4,2.09 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,73-97,Low_F,1,74.5,2.05 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,73-97,High_G,1,84.7,1.93 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,73-97,Low_G,1,105.2,2 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,98-199,High_D,1,36.2,1.29 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,98-199,Low_D,1,44.1,1.57 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,98-199,High_E,1,54.6,2.02 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,98-199,Low_E,1,64.3,2.13 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,98-199,High_F,1,72.3,2.02 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,98-199,Low_F,1,84.7,2.01 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,98-199,High_G,1,97.8,1.92 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,98-199,Low_G,1,117.6,1.93 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,200,High_D,1,77.3,1.55 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,200,Low_D,1,92.6,1.85 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,200,High_E,1,111.5,2.32 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,200,Low_E,1,116.1,2.14 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,200,High_F,1,141.9,2.21 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,200,Low_F,1,168.8,2.23 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,200,High_G,1,192.5,2.1 +Other Heating,Smarttherm,Solid Fossil Boiler,N/A,200,Low_G,1,230.3,2.1 +Other Heating,Smarttherm,Electric Boiler,N/A,0-72,High_D,1,23.7,1.05 +Other Heating,Smarttherm,Electric Boiler,N/A,0-72,Low_D,1,29.5,1.31 +Other Heating,Smarttherm,Electric Boiler,N/A,0-72,High_E,1,35.5,1.63 +Other Heating,Smarttherm,Electric Boiler,N/A,0-72,Low_E,1,40.3,1.67 +Other Heating,Smarttherm,Electric Boiler,N/A,0-72,High_F,1,45.9,1.6 +Other Heating,Smarttherm,Electric Boiler,N/A,0-72,Low_F,1,50.5,1.49 +Other Heating,Smarttherm,Electric Boiler,N/A,0-72,High_G,1,58,1.42 +Other Heating,Smarttherm,Electric Boiler,N/A,0-72,Low_G,1,63.6,1.3 +Other Heating,Smarttherm,Electric Boiler,N/A,73-97,High_D,1,27.3,1.12 +Other Heating,Smarttherm,Electric Boiler,N/A,73-97,Low_D,1,34.6,1.42 +Other Heating,Smarttherm,Electric Boiler,N/A,73-97,High_E,1,42.7,1.81 +Other Heating,Smarttherm,Electric Boiler,N/A,73-97,Low_E,1,49,1.88 +Other Heating,Smarttherm,Electric Boiler,N/A,73-97,High_F,1,57,1.84 +Other Heating,Smarttherm,Electric Boiler,N/A,73-97,Low_F,1,64.6,1.77 +Other Heating,Smarttherm,Electric Boiler,N/A,73-97,High_G,1,78.4,1.78 +Other Heating,Smarttherm,Electric Boiler,N/A,73-97,Low_G,1,88.1,1.67 +Other Heating,Smarttherm,Electric Boiler,N/A,98-199,High_D,1,33.7,1.2 +Other Heating,Smarttherm,Electric Boiler,N/A,98-199,Low_D,1,42.2,1.5 +Other Heating,Smarttherm,Electric Boiler,N/A,98-199,High_E,1,47.3,1.76 +Other Heating,Smarttherm,Electric Boiler,N/A,98-199,Low_E,1,57.6,1.9 +Other Heating,Smarttherm,Electric Boiler,N/A,98-199,High_F,1,67.8,1.89 +Other Heating,Smarttherm,Electric Boiler,N/A,98-199,Low_F,1,76.9,1.82 +Other Heating,Smarttherm,Electric Boiler,N/A,98-199,High_G,1,88.2,1.73 +Other Heating,Smarttherm,Electric Boiler,N/A,98-199,Low_G,1,103.1,1.68 +Other Heating,Smarttherm,Electric Boiler,N/A,200,High_D,1,71.4,1.43 +Other Heating,Smarttherm,Electric Boiler,N/A,200,Low_D,1,82.9,1.66 +Other Heating,Smarttherm,Electric Boiler,N/A,200,High_E,1,97.1,2.04 +Other Heating,Smarttherm,Electric Boiler,N/A,200,Low_E,1,113.1,2.08 +Other Heating,Smarttherm,Electric Boiler,N/A,200,High_F,1,134.5,2.09 +Other Heating,Smarttherm,Electric Boiler,N/A,200,Low_F,1,155.3,2.05 +Other Heating,Smarttherm,Electric Boiler,N/A,200,High_G,1,174.3,1.9 +Other Heating,Smarttherm,Electric Boiler,N/A,200,Low_G,1,210.8,1.92 +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,High_D,0.96,263.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,Low_D,0.96,350.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,High_E,0.96,455.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,Low_E,0.96,556.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,High_F,0.96,702.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,Low_F,0.96,868.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,High_G,0.96,1105.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,0-72,Low_G,0.96,1380.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,High_D,0.96,265.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,Low_D,0.96,347.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,High_E,0.96,447.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,Low_E,0.96,543.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,High_F,0.96,681,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,Low_F,0.96,837.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,High_G,0.96,1061.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,73-97,Low_G,0.96,1323.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,High_D,0.96,280.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,Low_D,0.96,362.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,High_E,0.96,460.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,Low_E,0.96,554.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,High_F,0.96,688.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,Low_F,0.96,841.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,High_G,0.96,1060.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,98-199,Low_G,0.96,1315.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,High_D,0.96,478,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,Low_D,0.96,601.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,High_E,0.96,754.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,Low_E,0.96,900.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,High_F,0.96,1111.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,Low_F,0.96,1353.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,High_G,0.96,1701.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Fuel Cell mCHP,200,Low_G,0.96,2108.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,0-72,High_D,0.96,69.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,0-72,Low_D,0.96,70.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,0-72,High_E,0.96,71.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,0-72,Low_E,0.96,72.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,0-72,High_F,0.96,77.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,0-72,Low_F,0.96,86,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,0-72,High_G,0.96,102.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,0-72,Low_G,0.96,125.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,73-97,High_D,0.96,54.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,73-97,Low_D,0.96,55.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,73-97,High_E,0.96,55.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,73-97,Low_E,0.96,55.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,73-97,High_F,0.96,58.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,73-97,Low_F,0.96,65.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,73-97,High_G,0.96,78.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,73-97,Low_G,0.96,98.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,98-199,High_D,0.96,49.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,98-199,Low_D,0.96,52.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,98-199,High_E,0.96,54.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,98-199,Low_E,0.96,55.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,98-199,High_F,0.96,59.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,98-199,Low_F,0.96,67.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,98-199,High_G,0.96,82.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,98-199,Low_G,0.96,104.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,200,Low_D,0.96,1.49999999999997,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,200,High_E,0.96,2.40000000000001,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,200,Low_E,0.96,2.60000000000002,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,200,High_F,0.96,8.80000000000004,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,200,Low_F,0.96,22.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,200,High_G,0.96,49.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,GSHP,200,Low_G,0.96,89.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,High_D,0.96,12.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Air to Water ASHP,200,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,High_D,0.96,60.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,Low_D,0.96,59.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,High_E,0.96,57.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,Low_E,0.96,56,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,High_F,0.96,57.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,Low_F,0.96,61.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,High_G,0.96,72.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,0-72,Low_G,0.96,88.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,High_D,0.96,45.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,Low_D,0.96,43.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,High_E,0.96,40.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,Low_E,0.96,37.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,High_F,0.96,36.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,Low_F,0.96,38.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,High_G,0.96,45.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,73-97,Low_G,0.96,58.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,High_D,0.96,37.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,Low_D,0.96,37.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,High_E,0.96,35.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,Low_E,0.96,33.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,High_F,0.96,33.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,Low_F,0.96,36,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,High_G,0.96,43.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,98-199,Low_G,0.96,57.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Biomass Boiler,200,Low_G,0.96,3.40000000000007,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,High_D,0.96,3.30000000000001,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,Low_D,0.96,20.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,High_E,0.96,41.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,Low_E,0.96,61.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,High_F,0.96,92.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,Low_F,0.96,131.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,High_G,0.96,189.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,0-72,Low_G,0.96,260.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,High_D,0.96,9.29999999999999,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,Low_D,0.96,27.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,High_E,0.96,49.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,Low_E,0.96,69.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,High_F,0.96,101.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,Low_F,0.96,139.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,High_G,0.96,198.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,73-97,Low_G,0.96,269.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,High_D,0.96,31,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,Low_D,0.96,54.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,High_E,0.96,80.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,Low_E,0.96,105.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,High_F,0.96,142.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,Low_F,0.96,187.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,High_G,0.96,254.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,98-199,Low_G,0.96,336.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,High_D,0.96,63.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,Low_D,0.96,100.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,High_E,0.96,145.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,Low_E,0.96,187.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,High_F,0.96,253,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,Low_F,0.96,332.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,High_G,0.96,452.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,Condensing Gas Boiler,200,Low_G,0.96,598.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,3.30000000000001,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,20.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,41.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,61.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,92.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,131.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,189.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,260.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,9.29999999999999,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,27.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,49.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,69.5,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,101.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,139.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,198.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,269.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,31,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,54.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,80.6,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,105.3,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,142.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,187.8,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,254.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,336.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,High_D,0.96,63.9,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,100.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,High_E,0.96,145.4,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,187.7,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,High_F,0.96,253,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,332.2,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,High_G,0.96,452.1,N/A +Boiler,B_Upgrade_preHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,598.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_D,0.96,265.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,347.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_E,0.96,448.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,546.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_F,0.96,686.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,844.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1070.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1332.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_D,0.96,245.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,318.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_E,0.96,407.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,493.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_F,0.96,617.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,758.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_G,0.96,960.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1194.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_D,0.96,227.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,292.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_E,0.96,371.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,447.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_F,0.96,556.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,681.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_G,0.96,861.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1070.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,High_D,0.96,325.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,Low_D,0.96,415.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,High_E,0.96,548.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,Low_E,0.96,656.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,High_F,0.96,824.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,Low_F,0.96,1011.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,High_G,0.96,1275.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Fuel Cell mCHP,200,Low_G,0.96,1574.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Biomass Boiler,200,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,GSHP,200,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,Air to Water ASHP,200,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_D,0.96,299.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,397.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_E,0.96,516.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,630.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_F,0.96,793.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,978.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1241.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1545.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_D,0.96,322.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,421.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_E,0.96,541.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,654.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_F,0.96,815.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,997.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1256,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1555.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_D,0.96,365.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,472,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_E,0.96,599.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,720.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_F,0.96,892.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1086.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1361.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1679.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,High_D,0.96,688.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,Low_D,0.96,861.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,High_E,0.96,1073.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,Low_E,0.96,1273.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,High_F,0.96,1558,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,Low_F,0.96,1878.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,High_G,0.96,2335.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Fuel Cell mCHP,200,Low_G,0.96,2865,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,0-72,High_D,0.96,208.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,0-72,Low_D,0.96,254,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,0-72,High_E,0.96,309.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,0-72,Low_E,0.96,362.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,0-72,High_F,0.96,439.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,0-72,Low_F,0.96,528.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,0-72,High_G,0.96,656.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,0-72,Low_G,0.96,807.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,73-97,High_D,0.96,221.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,73-97,Low_D,0.96,270.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,73-97,High_E,0.96,329.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,73-97,Low_E,0.96,384.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,73-97,High_F,0.96,463.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,73-97,Low_F,0.96,553.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,73-97,High_G,0.96,682.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,73-97,Low_G,0.96,834.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,98-199,High_D,0.96,251.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,98-199,Low_D,0.96,309.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,98-199,High_E,0.96,378.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,98-199,Low_E,0.96,443.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,98-199,High_F,0.96,535.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,98-199,Low_F,0.96,640.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,98-199,High_G,0.96,791.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,98-199,Low_G,0.96,967.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,200,High_D,0.96,425,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,200,Low_D,0.96,523.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,200,High_E,0.96,643.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,200,Low_E,0.96,754.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,200,High_F,0.96,913.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,200,Low_F,0.96,1094.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,200,High_G,0.96,1355.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,GSHP,200,Low_G,0.96,1660.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,High_D,0.96,169.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,Low_D,0.96,206.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,High_E,0.96,250.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,Low_E,0.96,292.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,High_F,0.96,354.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,Low_F,0.96,426.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,High_G,0.96,531.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,0-72,Low_G,0.96,654.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,High_D,0.96,178.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,Low_D,0.96,217.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,High_E,0.96,264.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,Low_E,0.96,307.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,High_F,0.96,370.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,Low_F,0.96,441.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,High_G,0.96,545.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,73-97,Low_G,0.96,668.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,High_D,0.96,199.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,Low_D,0.96,246.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,High_E,0.96,301.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,Low_E,0.96,352.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,High_F,0.96,426.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,Low_F,0.96,510.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,High_G,0.96,631.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,98-199,Low_G,0.96,774.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,200,High_D,0.96,326.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,200,Low_D,0.96,405.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,200,High_E,0.96,499.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,200,Low_E,0.96,587.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,200,High_F,0.96,712.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,200,Low_F,0.96,856.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,200,High_G,0.96,1064.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Air to Water ASHP,200,Low_G,0.96,1309.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,0-72,High_D,0.96,202.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,0-72,Low_D,0.96,246.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,0-72,High_E,0.96,300.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,0-72,Low_E,0.96,351.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,0-72,High_F,0.96,426.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,0-72,Low_F,0.96,513,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,0-72,High_G,0.96,637.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,0-72,Low_G,0.96,784.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,73-97,High_D,0.96,214.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,73-97,Low_D,0.96,262.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,73-97,High_E,0.96,319.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,73-97,Low_E,0.96,372.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,73-97,High_F,0.96,449.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,73-97,Low_F,0.96,536.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,73-97,High_G,0.96,662.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,73-97,Low_G,0.96,809.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,98-199,High_D,0.96,243.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,98-199,Low_D,0.96,300.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,98-199,High_E,0.96,367,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,98-199,Low_E,0.96,429.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,98-199,High_F,0.96,518.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,98-199,Low_F,0.96,620.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,98-199,High_G,0.96,767.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,98-199,Low_G,0.96,938.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,200,High_D,0.96,410.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,200,Low_D,0.96,506,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,200,High_E,0.96,621.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,200,Low_E,0.96,729,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,200,High_F,0.96,882.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,200,Low_F,0.96,1058.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,200,High_G,0.96,1311.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Biomass Boiler,200,Low_G,0.96,1631.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_D,0.96,122.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,178.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_E,0.96,245.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,310.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_F,0.96,403.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,510.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_G,0.96,664.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,844.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_D,0.96,152.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,212.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_E,0.96,284.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,351.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_F,0.96,448.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,557.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_G,0.96,715,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,898.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_D,0.96,203.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,273.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_E,0.96,357.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,436.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_F,0.96,549.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,677,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_G,0.96,859.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,1072.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,High_D,0.96,427.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,Low_D,0.96,547.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,High_E,0.96,693.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,Low_E,0.96,830.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,High_F,0.96,1025.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,Low_F,0.96,1246.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,High_G,0.96,1564.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,Condensing Gas Boiler,200,Low_G,0.96,1934.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,208.2,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,254,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,309.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,362.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,439.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,528.4,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,656.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,807.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,221.1,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,270.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,329.4,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,384.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,463.2,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,553.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,682.9,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,834.9,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,251.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,309.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,378.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,443.2,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,535.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,640.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,791.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,967.9,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_D,0.96,425,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,523.9,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_E,0.96,643.2,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,754.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_F,0.96,913.4,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,1094.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_G,0.96,1355.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,1660.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_D,0.96,258.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,348.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_E,0.96,458.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,564.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_F,0.96,716.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,889,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1135.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1421,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_D,0.96,261.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,349.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_E,0.96,456.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,558.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_F,0.96,705.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,872,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1110.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1386.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_D,0.96,284.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,374.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_E,0.96,482.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,586.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_F,0.96,734.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,902,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1141.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1420,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,High_D,0.96,522.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,Low_D,0.96,662.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,High_E,0.96,835.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,Low_E,0.96,1001.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,High_F,0.96,1240.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,Low_F,0.96,1513.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,High_G,0.96,1903.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Fuel Cell mCHP,200,Low_G,0.96,2359.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,0-72,High_D,0.96,30.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,0-72,Low_D,0.96,46,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,0-72,High_E,0.96,65,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,0-72,Low_E,0.96,83.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,0-72,High_F,0.96,112.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,0-72,Low_F,0.96,148.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,0-72,High_G,0.96,202.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,0-72,Low_G,0.96,268.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,73-97,High_D,0.96,32.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,73-97,Low_D,0.96,49.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,73-97,High_E,0.96,69.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,73-97,Low_E,0.96,88,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,73-97,High_F,0.96,117.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,73-97,Low_F,0.96,152.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,73-97,High_G,0.96,207,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,73-97,Low_G,0.96,273.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,98-199,High_D,0.96,50.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,98-199,Low_D,0.96,71.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,98-199,High_E,0.96,95.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,98-199,Low_E,0.96,118.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,98-199,High_F,0.96,153.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,98-199,Low_F,0.96,194.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,98-199,High_G,0.96,256.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,98-199,Low_G,0.96,332.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,200,High_D,0.96,78.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,200,Low_D,0.96,112,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,200,High_E,0.96,153,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,200,Low_E,0.96,191.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,200,High_F,0.96,251.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,200,Low_F,0.96,324.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,200,High_G,0.96,435.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,GSHP,200,Low_G,0.96,571.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,High_G,0.96,15.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,0-72,Low_G,0.96,42.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,High_G,0.96,4.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,73-97,Low_G,0.96,28.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,Low_F,0.96,2.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,High_G,0.96,22.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,98-199,Low_G,0.96,49.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,200,High_G,0.96,13.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Air to Water ASHP,200,Low_G,0.96,63.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,0-72,High_D,0.96,20.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,0-72,Low_D,0.96,34.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,0-72,High_E,0.96,51.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,0-72,Low_E,0.96,67.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,0-72,High_F,0.96,93,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,0-72,Low_F,0.96,125,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,0-72,High_G,0.96,173.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,0-72,Low_G,0.96,233.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,73-97,High_D,0.96,22.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,73-97,Low_D,0.96,37.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,73-97,High_E,0.96,54.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,73-97,Low_E,0.96,70.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,73-97,High_F,0.96,95.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,73-97,Low_F,0.96,127.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,73-97,High_G,0.96,176.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,73-97,Low_G,0.96,236.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,98-199,High_D,0.96,38.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,98-199,Low_D,0.96,56.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,98-199,High_E,0.96,78.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,98-199,Low_E,0.96,98.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,98-199,High_F,0.96,128.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,98-199,Low_F,0.96,165.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,98-199,High_G,0.96,221.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,98-199,Low_G,0.96,289.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,200,High_D,0.96,55.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,200,Low_D,0.96,85.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,200,High_E,0.96,121,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,200,Low_E,0.96,154.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,200,High_F,0.96,207.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,200,Low_F,0.96,272.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,200,High_G,0.96,371.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Biomass Boiler,200,Low_G,0.96,494.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,0.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_E,0.96,36.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,71.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_F,0.96,124.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,185.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_G,0.96,276.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,383.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,23.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_E,0.96,61.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,98.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_F,0.96,152.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,216.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_G,0.96,309.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,420.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_D,0.96,32.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,71.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_E,0.96,117.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,160.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_F,0.96,224.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,297.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_G,0.96,405.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,532.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,High_D,0.96,132.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,Low_D,0.96,196.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,High_E,0.96,276.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,Low_E,0.96,351.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,High_F,0.96,463,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,Low_F,0.96,593.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,High_G,0.96,785.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,Condensing Gas Boiler,200,Low_G,0.96,1013.1,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,30.1,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,46,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,65,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,83.5,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,112.6,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,148.2,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,202.2,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,268.1,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,32.8,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,49.6,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,69.3,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,88,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,117.1,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,152.8,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,207,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,273.3,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,50.3,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,71.5,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,95.9,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,118.7,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,153.2,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,194.6,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,256.8,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,332.2,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_D,0.96,78.2,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,112,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_E,0.96,153,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,191.6,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_F,0.96,251.7,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,324.8,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_G,0.96,435.7,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,571.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,0-72,High_D,0.96,370.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,480.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,0-72,High_E,0.96,615.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,745.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,0-72,High_F,0.96,932.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1142.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1439.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1781.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,73-97,High_D,0.96,406.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,519.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,73-97,High_E,0.96,658.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,792.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,73-97,High_F,0.96,983.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1198,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1502.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1852.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,98-199,High_D,0.96,474.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,599.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,98-199,High_E,0.96,753.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,901.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,98-199,High_F,0.96,1111.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1348.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1684.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,2071.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,200,High_D,0.96,910.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,200,Low_D,0.96,1117.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,200,High_E,0.96,1376.7,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,200,Low_E,0.96,1626,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,200,High_F,0.96,1980.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,200,Low_F,0.96,2381.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,200,High_G,0.96,2949.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Fuel Cell mCHP,200,Low_G,0.96,3604.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,0-72,High_D,0.96,341.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,0-72,Low_D,0.96,417,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,0-72,High_E,0.96,510.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,0-72,Low_E,0.96,601,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,0-72,High_F,0.96,730.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,0-72,Low_F,0.96,878.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,0-72,High_G,0.96,1087.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,0-72,Low_G,0.96,1328.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,73-97,High_D,0.96,369.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,73-97,Low_D,0.96,450.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,73-97,High_E,0.96,549.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,73-97,Low_E,0.96,644.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,73-97,High_F,0.96,781.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,73-97,Low_F,0.96,936.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,73-97,High_G,0.96,1156.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,73-97,Low_G,0.96,1410.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,98-199,High_D,0.96,428.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,98-199,Low_D,0.96,521.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,98-199,High_E,0.96,636.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,98-199,Low_E,0.96,747.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,98-199,High_F,0.96,905.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,98-199,Low_F,0.96,1084.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,98-199,High_G,0.96,1339.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,98-199,Low_G,0.96,1633,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,200,High_D,0.96,766.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,200,Low_D,0.96,925.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,200,High_E,0.96,1123.7,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,200,Low_E,0.96,1314.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,200,High_F,0.96,1587.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,200,Low_F,0.96,1896.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,200,High_G,0.96,2336.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,GSHP,200,Low_G,0.96,2844.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,0-72,High_D,0.96,314,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,0-72,Low_D,0.96,383.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,0-72,High_E,0.96,469.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,0-72,Low_E,0.96,553.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,0-72,High_F,0.96,673.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,0-72,Low_F,0.96,809.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,0-72,High_G,0.96,1002.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,0-72,Low_G,0.96,1226.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,73-97,High_D,0.96,339.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,73-97,Low_D,0.96,413.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,73-97,High_E,0.96,504.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,73-97,Low_E,0.96,592.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,73-97,High_F,0.96,718.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,73-97,Low_F,0.96,861.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,73-97,High_G,0.96,1064.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,73-97,Low_G,0.96,1299.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,98-199,High_D,0.96,392.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,98-199,Low_D,0.96,478.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,98-199,High_E,0.96,583.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,98-199,Low_E,0.96,686,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,98-199,High_F,0.96,832.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,98-199,Low_F,0.96,997.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,98-199,High_G,0.96,1232.7,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,98-199,Low_G,0.96,1504.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,200,High_D,0.96,700.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,200,Low_D,0.96,846.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,200,High_E,0.96,1027.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,200,Low_E,0.96,1203.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,200,High_F,0.96,1454.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,200,Low_F,0.96,1738.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,200,High_G,0.96,2143.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Air to Water ASHP,200,Low_G,0.96,2613.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,0-72,High_D,0.96,337.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,0-72,Low_D,0.96,411.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,0-72,High_E,0.96,504.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,0-72,Low_E,0.96,593.7,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,0-72,High_F,0.96,722.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,0-72,Low_F,0.96,867.7,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,0-72,High_G,0.96,1074.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,0-72,Low_G,0.96,1313.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,73-97,High_D,0.96,364.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,73-97,Low_D,0.96,444.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,73-97,High_E,0.96,542.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,73-97,Low_E,0.96,636.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,73-97,High_F,0.96,772,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,73-97,Low_F,0.96,925,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,73-97,High_G,0.96,1142.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,73-97,Low_G,0.96,1393.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,98-199,High_D,0.96,422.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,98-199,Low_D,0.96,515,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,98-199,High_E,0.96,628.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,98-199,Low_E,0.96,737.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,98-199,High_F,0.96,894.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,98-199,Low_F,0.96,1071.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,98-199,High_G,0.96,1323.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,98-199,Low_G,0.96,1613.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,200,High_D,0.96,756.7,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,200,Low_D,0.96,913.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,200,High_E,0.96,1109.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,200,Low_E,0.96,1297.7,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,200,High_F,0.96,1567.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,200,Low_F,0.96,1872.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,200,High_G,0.96,2307,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Biomass Boiler,200,Low_G,0.96,2839.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,0-72,High_D,0.96,244.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,326.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,0-72,High_E,0.96,427.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,525.7,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,0-72,High_F,0.96,666.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,825.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,0-72,High_G,0.96,1051.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,1311.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,73-97,High_D,0.96,286.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,374.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,73-97,High_E,0.96,482,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,585.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,73-97,High_F,0.96,734.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,901.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,73-97,High_G,0.96,1139.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,1414.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,98-199,High_D,0.96,362.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,464.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,98-199,High_E,0.96,588.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,709.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,98-199,High_F,0.96,880.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,1074.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,98-199,High_G,0.96,1350.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,1667.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,200,High_D,0.96,734.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,200,Low_D,0.96,907.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,200,High_E,0.96,1122.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,200,Low_E,0.96,1330.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,200,High_F,0.96,1627.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,200,Low_F,0.96,1962.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,200,High_G,0.96,2439.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,Condensing Gas Boiler,200,Low_G,0.96,2990.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,341.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,417,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,510.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,601,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,730.9,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,878.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,1087.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,1328.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,369.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,450.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,549.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,644.8,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,781.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,936.3,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,1156.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,1410.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,428.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,521.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,636.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,747.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,905.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,1084.8,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,1339.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,1633,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,200,High_D,0.96,766.8,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,925.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,200,High_E,0.96,1123.7,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,1314.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,200,High_F,0.96,1587.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,1896.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,200,High_G,0.96,2336.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,2844.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_D,0.96,272.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,357.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_E,0.96,460.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,560.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_F,0.96,703.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,865.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1097.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1365.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_D,0.96,265,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,343.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_E,0.96,437.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,528.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_F,0.96,658,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,805.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1017,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1262.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_D,0.96,263.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,338.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_E,0.96,427.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,513.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_F,0.96,636.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,776.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,High_G,0.96,978.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1212.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,High_D,0.96,431,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,Low_D,0.96,539.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,High_E,0.96,674.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,Low_E,0.96,804.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,High_F,0.96,992.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,Low_F,0.96,1208,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,High_G,0.96,1519.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Fuel Cell mCHP,200,Low_G,0.96,1884.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,0-72,High_D,0.96,34.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,0-72,Low_D,0.96,22.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,0-72,High_E,0.96,6.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,73-97,High_D,0.96,10.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,GSHP,200,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,0-72,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,73-97,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,98-199,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,Low_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,High_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Air to Water ASHP,200,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,High_F,0.96,10.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,28.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,High_G,0.96,56.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,93.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,12.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,High_G,0.96,35.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,66.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,High_F,0.96,16.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,33.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,High_G,0.96,62.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,100.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,High_F,0.96,16.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,Low_F,0.96,47.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,High_G,0.96,99.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,Condensing Gas Boiler,200,Low_G,0.96,167.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,34.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,22.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,6.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,10.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_D,0.96,302.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,402.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_E,0.96,521.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,633.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_F,0.96,793.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,972.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1228.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1523.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_D,0.96,327.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,431,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_E,0.96,553.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,668.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_F,0.96,829.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1010.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1267.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1564,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_D,0.96,377.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,488.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_E,0.96,620.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,743.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_F,0.96,917.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1111.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1387.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1705.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,High_D,0.96,726.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,Low_D,0.96,910.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,High_E,0.96,1131.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,Low_E,0.96,1335.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,High_F,0.96,1621.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,Low_F,0.96,1940.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,High_G,0.96,2392.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Fuel Cell mCHP,200,Low_G,0.96,2915.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,0-72,High_D,0.96,244.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,0-72,Low_D,0.96,299,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,0-72,High_E,0.96,363.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,0-72,Low_E,0.96,424,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,0-72,High_F,0.96,510.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,0-72,Low_F,0.96,608.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,0-72,High_G,0.96,748.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,0-72,Low_G,0.96,912.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,73-97,High_D,0.96,258.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,73-97,Low_D,0.96,319.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,73-97,High_E,0.96,389.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,73-97,Low_E,0.96,454.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,73-97,High_F,0.96,546,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,73-97,Low_F,0.96,649,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,73-97,High_G,0.96,795.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,73-97,Low_G,0.96,967.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,98-199,High_D,0.96,295.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,98-199,Low_D,0.96,365.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,98-199,High_E,0.96,447.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,98-199,Low_E,0.96,522.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,98-199,High_F,0.96,628.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,98-199,Low_F,0.96,747.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,98-199,High_G,0.96,916.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,98-199,Low_G,0.96,1114.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,200,High_D,0.96,517.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,200,Low_D,0.96,638.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,200,High_E,0.96,780,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,200,Low_E,0.96,908.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,200,High_F,0.96,1087,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,200,Low_F,0.96,1287.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,200,High_G,0.96,1572.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,GSHP,200,Low_G,0.96,1904.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,High_D,0.96,211.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,Low_D,0.96,258.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,High_E,0.96,313.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,Low_E,0.96,364.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,High_F,0.96,438,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,Low_F,0.96,521.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,High_G,0.96,641.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,0-72,Low_G,0.96,783,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,High_D,0.96,222.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,Low_D,0.96,274.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,High_E,0.96,334.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,Low_E,0.96,389.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,High_F,0.96,466.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,Low_F,0.96,554,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,High_G,0.96,679,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,73-97,Low_G,0.96,825.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,High_D,0.96,251.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,Low_D,0.96,311.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,High_E,0.96,381.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,Low_E,0.96,445.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,High_F,0.96,535.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,Low_F,0.96,636.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,High_G,0.96,780.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,98-199,Low_G,0.96,949.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,High_D,0.96,433.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,Low_D,0.96,537.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,High_E,0.96,657.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,Low_E,0.96,765.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,High_F,0.96,915.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,Low_F,0.96,1084.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,High_G,0.96,1324.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Air to Water ASHP,200,Low_G,0.96,1605.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,High_D,0.96,239.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,Low_D,0.96,292.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,High_E,0.96,356,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,Low_E,0.96,415,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,High_F,0.96,499.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,Low_F,0.96,595,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,High_G,0.96,732.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,0-72,Low_G,0.96,893.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,High_D,0.96,253.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,Low_D,0.96,312.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,High_E,0.96,381.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,Low_E,0.96,444.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,High_F,0.96,534,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,Low_F,0.96,634.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,High_G,0.96,778.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,73-97,Low_G,0.96,945.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,High_D,0.96,288.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,Low_D,0.96,357.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,High_E,0.96,437.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,Low_E,0.96,511,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,High_F,0.96,614.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,Low_F,0.96,730.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,High_G,0.96,896.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,98-199,Low_G,0.96,1089.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,200,High_D,0.96,504.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,200,Low_D,0.96,622.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,200,High_E,0.96,761.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,200,Low_E,0.96,886.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,200,High_F,0.96,1061,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,200,Low_F,0.96,1256.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,200,High_G,0.96,1534.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Biomass Boiler,200,Low_G,0.96,1879.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_D,0.96,152.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,215.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_E,0.96,290.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,361,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_F,0.96,461.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,574.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,High_G,0.96,736.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,925.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_D,0.96,183.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,252.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_E,0.96,334.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,409.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_F,0.96,516.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,635.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,High_G,0.96,806.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,1004.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_D,0.96,239,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,319.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_E,0.96,414.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,501.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_F,0.96,624.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,763.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,High_G,0.96,959.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,1188,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,High_D,0.96,504,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,Low_D,0.96,643,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,High_E,0.96,807.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,Low_E,0.96,957.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,High_F,0.96,1167.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,Low_F,0.96,1401.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,High_G,0.96,1734.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,Condensing Gas Boiler,200,Low_G,0.96,2122.4,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,244.1,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,299,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,363.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,424,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,510.2,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,608.2,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,748.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,912.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,258.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,319.4,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,389.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,454.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,546,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,649,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,795.8,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,967.2,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,295.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,365.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,447.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,522.7,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,628.4,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,747.4,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,916.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,1114.4,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_D,0.96,517.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,638.2,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_E,0.96,780,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,908.1,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_F,0.96,1087,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,1287.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,High_G,0.96,1572.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,1904.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_D,0.96,262.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,356.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_E,0.96,469.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,579.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_F,0.96,737.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,916.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1171.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1467.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_D,0.96,271.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,363.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_E,0.96,474.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,581.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_F,0.96,734.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,907.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1155.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1443.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_D,0.96,302.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,397.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_E,0.96,512.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,621.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_F,0.96,777.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,954.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1206.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1498.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,High_D,0.96,570.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,Low_D,0.96,721.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,High_E,0.96,907.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,Low_E,0.96,1084,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,High_F,0.96,1337.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,Low_F,0.96,1625.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,High_G,0.96,2038.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Fuel Cell mCHP,200,Low_G,0.96,2519.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,0-72,High_D,0.96,74.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,0-72,Low_D,0.96,101.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,0-72,High_E,0.96,134.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,0-72,Low_E,0.96,166.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,0-72,High_F,0.96,214.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,0-72,Low_F,0.96,271.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,0-72,High_G,0.96,356.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,0-72,Low_G,0.96,456.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,73-97,High_D,0.96,81.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,73-97,Low_D,0.96,109.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,73-97,High_E,0.96,143.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,73-97,Low_E,0.96,175.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,73-97,High_F,0.96,224.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,73-97,Low_F,0.96,281.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,73-97,High_G,0.96,365.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,73-97,Low_G,0.96,466.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,98-199,High_D,0.96,105.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,98-199,Low_D,0.96,140.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,98-199,High_E,0.96,180.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,98-199,Low_E,0.96,217.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,98-199,High_F,0.96,273,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,98-199,Low_F,0.96,337.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,98-199,High_G,0.96,431.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,98-199,Low_G,0.96,543.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,200,High_D,0.96,187.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,200,Low_D,0.96,243.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,200,High_E,0.96,311.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,200,Low_E,0.96,375.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,200,High_F,0.96,469.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,200,Low_F,0.96,581.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,200,High_G,0.96,745,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,GSHP,200,Low_G,0.96,941.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,High_D,0.96,18.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,Low_D,0.96,34,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,High_E,0.96,52.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,Low_E,0.96,71,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,High_F,0.96,100.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,Low_F,0.96,135.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,High_G,0.96,190.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,0-72,Low_G,0.96,256.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,High_D,0.96,20.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,Low_D,0.96,36.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,High_E,0.96,54.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,Low_E,0.96,72,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,High_F,0.96,99.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,Low_F,0.96,133.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,High_G,0.96,185.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,73-97,Low_G,0.96,249.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,High_D,0.96,34.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,Low_D,0.96,54.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,High_E,0.96,76.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,Low_E,0.96,97.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,High_F,0.96,128.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,Low_F,0.96,166,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,High_G,0.96,222.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,98-199,Low_G,0.96,291.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,High_D,0.96,56.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,Low_D,0.96,87.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,High_E,0.96,124.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,Low_E,0.96,157.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,High_F,0.96,209.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,Low_F,0.96,272.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,High_G,0.96,370.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Air to Water ASHP,200,Low_G,0.96,490,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,High_D,0.96,65.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,Low_D,0.96,91.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,High_E,0.96,121.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,Low_E,0.96,151.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,High_F,0.96,197.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,Low_F,0.96,251.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,High_G,0.96,331,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,0-72,Low_G,0.96,426.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,High_D,0.96,72,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,Low_D,0.96,98.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,High_E,0.96,130,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,Low_E,0.96,160,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,High_F,0.96,205.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,Low_F,0.96,258.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,High_G,0.96,338.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,73-97,Low_G,0.96,433.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,High_D,0.96,95,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,Low_D,0.96,127.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,High_E,0.96,164.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,Low_E,0.96,199.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,High_F,0.96,251.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,Low_F,0.96,311.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,High_G,0.96,399.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,98-199,Low_G,0.96,505,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,200,High_D,0.96,167.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,200,Low_D,0.96,220.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,200,High_E,0.96,283.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,200,Low_E,0.96,342.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,200,High_F,0.96,430.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,200,Low_F,0.96,534.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,200,High_G,0.96,688.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Biomass Boiler,200,Low_G,0.96,872.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_D,0.96,7.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,46.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_E,0.96,95,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,141.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_F,0.96,210.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,291,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,High_G,0.96,407.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,545.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_D,0.96,31.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,73.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_E,0.96,123.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,171.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_F,0.96,242.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,324.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,High_G,0.96,444.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,585,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_D,0.96,78.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,128.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_E,0.96,187.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,243.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_F,0.96,324.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,417.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,High_G,0.96,551.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,709.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,High_D,0.96,224,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,Low_D,0.96,307.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,High_E,0.96,409.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,Low_E,0.96,505.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,High_F,0.96,646.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,Low_F,0.96,808.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,High_G,0.96,1044.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,Condensing Gas Boiler,200,Low_G,0.96,1322.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,74.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,101.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,134.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,166.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,214.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,271.8,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,356.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,456.8,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,81.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,109.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,143.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,175.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,224.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,281.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,365.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,466.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,105.8,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,140.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,180.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,217.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,273,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,337.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,431.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,543.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_D,0.96,187.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,243.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_E,0.96,311.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,375.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_F,0.96,469.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,581.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,High_G,0.96,745,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,941.3,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,High_D,0.96,296.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,394,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,High_E,0.96,513.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,630.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,High_F,0.96,797.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,985.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1253.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1561.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,High_D,0.96,302.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,397.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,High_E,0.96,514.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,626.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,High_F,0.96,788,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,970.3,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1229.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1528,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,High_D,0.96,325,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,421.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,High_E,0.96,540.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,655.3,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,High_F,0.96,819.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1005.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1269.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1574.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,High_D,0.96,602.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,Low_D,0.96,754.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,High_E,0.96,945.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,Low_E,0.96,1129.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,High_F,0.96,1394.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,Low_F,0.96,1695.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,High_G,0.96,2124.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Fuel Cell mCHP,200,Low_G,0.96,2621.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,0-72,High_D,0.96,149.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,0-72,Low_D,0.96,188.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,0-72,High_E,0.96,237.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,0-72,Low_E,0.96,286.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,0-72,High_F,0.96,358.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,0-72,Low_F,0.96,441,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,0-72,High_G,0.96,559.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,0-72,Low_G,0.96,697.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,73-97,High_D,0.96,161.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,73-97,Low_D,0.96,203.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,73-97,High_E,0.96,254.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,73-97,Low_E,0.96,304.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,73-97,High_F,0.96,378.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,73-97,Low_F,0.96,462.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,73-97,High_G,0.96,584.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,73-97,Low_G,0.96,726.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,98-199,High_D,0.96,192.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,98-199,Low_D,0.96,241.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,98-199,High_E,0.96,301,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,98-199,Low_E,0.96,359.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,98-199,High_F,0.96,444.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,98-199,Low_F,0.96,541.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,98-199,High_G,0.96,681.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,98-199,Low_G,0.96,844.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,200,High_D,0.96,343.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,200,Low_D,0.96,425.3,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,200,High_E,0.96,528.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,200,Low_E,0.96,628.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,200,High_F,0.96,775.3,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,200,Low_F,0.96,944.3,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,200,High_G,0.96,1188,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,GSHP,200,Low_G,0.96,1472.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,High_D,0.96,10.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,Low_D,0.96,20.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,High_E,0.96,34.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,Low_E,0.96,49.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,High_F,0.96,73.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,Low_F,0.96,102.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,High_G,0.96,145.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,0-72,Low_G,0.96,198,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,High_D,0.96,9.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,Low_D,0.96,19.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,High_E,0.96,32.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,Low_E,0.96,46.3,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,High_F,0.96,67.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,Low_F,0.96,94.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,High_G,0.96,135,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,73-97,Low_G,0.96,184.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,High_D,0.96,14.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,Low_D,0.96,27.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,High_E,0.96,42.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,Low_E,0.96,58.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,High_F,0.96,84,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,Low_F,0.96,114.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,High_G,0.96,161.3,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,98-199,Low_G,0.96,217.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,200,High_D,0.96,17.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,200,Low_D,0.96,36.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,200,High_E,0.96,60.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,200,Low_E,0.96,84.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,200,High_F,0.96,125.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,200,Low_F,0.96,175.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,200,High_G,0.96,252.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Air to Water ASHP,200,Low_G,0.96,347.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,0-72,High_D,0.96,63.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,0-72,Low_D,0.96,85.3,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,0-72,High_E,0.96,112.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,0-72,Low_E,0.96,140.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,0-72,High_F,0.96,182.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,0-72,Low_F,0.96,232.3,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,0-72,High_G,0.96,304.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,0-72,Low_G,0.96,390,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,73-97,High_D,0.96,68,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,73-97,Low_D,0.96,90.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,73-97,High_E,0.96,118,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,73-97,Low_E,0.96,145.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,73-97,High_F,0.96,187.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,73-97,Low_F,0.96,236,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,73-97,High_G,0.96,307.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,73-97,Low_G,0.96,392.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,98-199,High_D,0.96,83.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,98-199,Low_D,0.96,109.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,98-199,High_E,0.96,142,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,98-199,Low_E,0.96,174.3,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,98-199,High_F,0.96,222.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,98-199,Low_F,0.96,278.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,98-199,High_G,0.96,361.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,98-199,Low_G,0.96,458.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,200,High_D,0.96,143.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,200,Low_D,0.96,185.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,200,High_E,0.96,240,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,200,Low_E,0.96,293.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,200,High_F,0.96,374.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,200,Low_F,0.96,470.8,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,200,High_G,0.96,611.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Biomass Boiler,200,Low_G,0.96,779.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,High_D,0.96,12.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,50.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,High_E,0.96,97.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,143.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,High_F,0.96,211.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,290.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,High_G,0.96,404.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,536.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,High_D,0.96,35.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,75.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,High_E,0.96,124,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,171.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,High_F,0.96,241.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,322.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,High_G,0.96,438.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,573.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,High_D,0.96,76.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,122.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,High_E,0.96,179.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,234.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,High_F,0.96,315.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,408.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,High_G,0.96,541.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,697.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,High_D,0.96,217.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,Low_D,0.96,294.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,High_E,0.96,392,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,Low_E,0.96,487.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,High_F,0.96,626.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,Low_F,0.96,787.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,High_G,0.96,1019.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,Condensing Gas Boiler,200,Low_G,0.96,1290.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,High_D,0.96,149.1,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,Low_D,0.96,188.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,High_E,0.96,237.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,Low_E,0.96,286.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,High_F,0.96,358.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,Low_F,0.96,441,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,High_G,0.96,559.7,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,0-72,Low_G,0.96,697.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,High_D,0.96,161.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,Low_D,0.96,203.1,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,High_E,0.96,254.6,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,Low_E,0.96,304.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,High_F,0.96,378.4,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,Low_F,0.96,462.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,High_G,0.96,584.6,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,73-97,Low_G,0.96,726.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,High_D,0.96,192.6,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,Low_D,0.96,241.2,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,High_E,0.96,301,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,Low_E,0.96,359.4,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,High_F,0.96,444.4,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,Low_F,0.96,541.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,High_G,0.96,681.7,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,98-199,Low_G,0.96,844.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,High_D,0.96,343.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,Low_D,0.96,425.3,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,High_E,0.96,528.2,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,Low_E,0.96,628.6,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,High_F,0.96,775.3,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,Low_F,0.96,944.3,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,High_G,0.96,1188,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,Shared Ground Loop GSHP,200,Low_G,0.96,1472.9,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_C,0.96,15.6,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,High_D,0.96,36.7,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_D,0.96,58.2,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,High_E,0.96,84.8,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_E,0.96,111.1,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,High_F,0.96,150.7,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_F,0.96,197.6,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,High_G,0.96,266.7,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,0-72,Low_G,0.96,348.7,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,High_C,0.96,2.1,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_C,0.96,18.7,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,High_D,0.96,40.2,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_D,0.96,61.6,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,High_E,0.96,87.7,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_E,0.96,113.2,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,High_F,0.96,151.9,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_F,0.96,198.2,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,High_G,0.96,266.9,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,73-97,Low_G,0.96,349.2,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,High_C,0.96,13.9,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_C,0.96,34.7,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,High_D,0.96,61.3,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_D,0.96,87.2,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,High_E,0.96,118.3,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_E,0.96,148.2,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,High_F,0.96,193.2,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_F,0.96,246.3,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,High_G,0.96,324.7,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,98-199,Low_G,0.96,418.2,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,Low_B,0.96,1,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,High_C,0.96,33.4,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,Low_C,0.96,60.3,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,High_D,0.96,100,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,Low_D,0.96,142.9,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,High_E,0.96,217.6,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,Low_E,0.96,268.7,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,High_F,0.96,357.5,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,Low_F,0.96,456.1,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,High_G,0.96,596,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS CHP,200,Low_G,0.96,752.7,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,0-72,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,73-97,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,98-199,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Gas Boiler,DHS non-CHP,200,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_C,0.96,19,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_C,0.96,44.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_D,0.96,77.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_D,0.96,110.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_E,0.96,150.8,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_E,0.96,189.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_F,0.96,247.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_F,0.96,314.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,High_G,0.96,412,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,0-72,Low_G,0.96,527.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_C,0.96,26.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_C,0.96,54.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_D,0.96,89.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_D,0.96,124.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_E,0.96,165,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_E,0.96,203.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_F,0.96,261.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_F,0.96,328.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,High_G,0.96,426,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,73-97,Low_G,0.96,542.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_B,0.96,6.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_C,0.96,45.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_C,0.96,79.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_D,0.96,122.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_D,0.96,163.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_E,0.96,212,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_E,0.96,258.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_F,0.96,326.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_F,0.96,405.8,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,High_G,0.96,521,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,98-199,Low_G,0.96,657.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_B,0.96,36.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,High_C,0.96,104.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_C,0.96,164.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,High_D,0.96,239.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_D,0.96,307.8,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,High_E,0.96,392.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_E,0.96,473.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,High_F,0.96,594.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_F,0.96,734.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,High_G,0.96,940.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS CHP,200,Low_G,0.96,1184.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,0-72,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,73-97,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,98-199,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_F,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,High_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Gas Boiler,DHS non-CHP,200,Low_G,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_B,0.96,14.1,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_B,0.96,5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_C,0.96,12.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_C,0.96,52.9,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_D,0.96,105.2,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_D,0.96,156.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_E,0.96,218.9,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_E,0.96,278.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_F,0.96,365.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_F,0.96,464.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,High_G,0.96,607.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,0-72,Low_G,0.96,775,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_C,0.96,28.1,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_C,0.96,74.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_D,0.96,132.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_D,0.96,188.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_E,0.96,254.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_E,0.96,316.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_F,0.96,405.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_F,0.96,507.1,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,High_G,0.96,652.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,73-97,Low_G,0.96,822.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_C,0.96,55.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_C,0.96,110.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_D,0.96,179.9,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_D,0.96,245.2,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_E,0.96,322.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_E,0.96,395.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_F,0.96,499.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_F,0.96,617.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,High_G,0.96,786.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,98-199,Low_G,0.96,984.1,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_B,0.96,43.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,High_C,0.96,159.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_C,0.96,258.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,High_D,0.96,382.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_D,0.96,493.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,High_E,0.96,628.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_E,0.96,754.2,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,High_F,0.96,934,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_F,0.96,1138.4,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,High_G,0.96,1431.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS non-CHP,200,Low_G,0.96,1774.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,High_B,0.96,52.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_B,0.96,43.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,High_C,0.96,56.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_C,0.96,111.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,High_D,0.96,182.9,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_D,0.96,253,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,High_E,0.96,338.1,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_E,0.96,419.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,High_F,0.96,536.9,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_F,0.96,670.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,High_G,0.96,861.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,0-72,Low_G,0.96,1083.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,High_B,0.96,26.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_B,0.96,19.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,High_C,0.96,78.4,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_C,0.96,140.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,High_D,0.96,219.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_D,0.96,295.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,High_E,0.96,386.4,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_E,0.96,472.2,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,High_F,0.96,594.4,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_F,0.96,732.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,High_G,0.96,930.2,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,73-97,Low_G,0.96,1159.7,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_B,0.96,32,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,High_C,0.96,117.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_C,0.96,191.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,High_D,0.96,284.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_D,0.96,373.1,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,High_E,0.96,478.9,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_E,0.96,578.9,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,High_F,0.96,721.1,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_F,0.96,881.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,High_G,0.96,1110.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,98-199,Low_G,0.96,1376.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,High_B,0.96,1.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,Low_B,0.96,126.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,High_C,0.96,281.3,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,Low_C,0.96,414.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,High_D,0.96,581.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,Low_D,0.96,733.5,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,High_E,0.96,918.6,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,Low_E,0.96,1093,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,High_F,0.96,1340.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,Low_F,0.96,1621.1,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,High_G,0.96,2020.8,N/A +DHS,DHS_connection_preHCs,Condensing LPG Boiler,DHS CHP,200,Low_G,0.96,2485.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_B,0.96,53.7,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_B,0.96,47.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_C,0.96,38.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_C,0.96,75.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_D,0.96,137.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_D,0.96,197.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_E,0.96,267.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_E,0.96,334,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_F,0.96,428.2,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_F,0.96,535.1,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,High_G,0.96,688,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,0-72,Low_G,0.96,866.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_B,0.96,20.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_B,0.96,17.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_C,0.96,40.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_C,0.96,96.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_D,0.96,166.4,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_D,0.96,232.2,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_E,0.96,309,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_E,0.96,379.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_F,0.96,479.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_F,0.96,592.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,High_G,0.96,752.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,73-97,Low_G,0.96,939.7,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_C,0.96,70.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_C,0.96,136.8,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_D,0.96,218.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_D,0.96,295.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_E,0.96,384.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_E,0.96,466.7,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_F,0.96,582.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_F,0.96,712.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,High_G,0.96,897.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,98-199,Low_G,0.96,1112.8,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_B,0.96,51,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_C,0.96,195.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_C,0.96,316.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_D,0.96,465.8,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_D,0.96,597,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_E,0.96,751.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_E,0.96,892.7,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_F,0.96,1089.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_F,0.96,1309.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,High_G,0.96,1622,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS non-CHP,200,Low_G,0.96,1986.2,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_B,0.96,109.2,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_B,0.96,103.1,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_C,0.96,94.2,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_C,0.96,141,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_D,0.96,219.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_D,0.96,294.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_E,0.96,384.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_E,0.96,469.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_F,0.96,589.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_F,0.96,726,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,High_G,0.96,919.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,0-72,Low_G,0.96,1145.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_B,0.96,71.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_B,0.96,67.8,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_C,0.96,97.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_C,0.96,167.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_D,0.96,254.8,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_D,0.96,337.7,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_E,0.96,435.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_E,0.96,526.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_F,0.96,654.8,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_F,0.96,798.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,High_G,0.96,1003.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,73-97,Low_G,0.96,1241,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_B,0.96,34,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_B,0.96,39.7,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_C,0.96,136,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_C,0.96,218.1,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_D,0.96,320.8,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_D,0.96,416.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_E,0.96,530.2,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_E,0.96,635.7,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_F,0.96,783.9,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_F,0.96,950.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,High_G,0.96,1186.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,98-199,Low_G,0.96,1459.8,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_B,0.96,134.3,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,High_C,0.96,311.7,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_C,0.96,462.4,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,High_D,0.96,648.5,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_D,0.96,814.2,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,High_E,0.96,1012,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_E,0.96,1194.1,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,High_F,0.96,1448.6,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_F,0.96,1733.4,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,High_G,0.96,2136.8,N/A +DHS,DHS_connection_preHCs,Non Condensing LPG Boiler,DHS CHP,200,Low_G,0.96,2604.8,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_E,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_E,0.96,23,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_F,0.96,65.5,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_F,0.96,116.1,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,High_G,0.96,191.1,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,0-72,Low_G,0.96,280.9,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_E,0.96,16,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_E,0.96,45,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_F,0.96,88.6,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_F,0.96,140.4,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,High_G,0.96,217.3,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,73-97,Low_G,0.96,309.5,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_D,0.96,27.5,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_E,0.96,64.3,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_E,0.96,98.9,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_F,0.96,150.1,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_F,0.96,210.1,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,High_G,0.96,298.4,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,98-199,Low_G,0.96,403.6,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_C,0.96,8.5,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,High_D,0.96,65.5,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_D,0.96,117,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,High_E,0.96,180,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_E,0.96,239.8,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,High_F,0.96,329.5,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_F,0.96,435.8,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,High_G,0.96,593.2,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS non-CHP,200,Low_G,0.96,781.9,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_C,0.96,17.6,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,High_D,0.96,68.7,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_D,0.96,119.3,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,High_E,0.96,180.7,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_E,0.96,239.9,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,High_F,0.96,326.3,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_F,0.96,425.7,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,High_G,0.96,569.4,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,0-72,Low_G,0.96,737.7,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_C,0.96,42.7,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,High_D,0.96,98.6,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_D,0.96,153,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,High_E,0.96,218.6,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_E,0.96,281.3,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,High_F,0.96,372.3,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_F,0.96,477,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,High_G,0.96,628,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,73-97,Low_G,0.96,805.1,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,High_C,0.96,37.8,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_C,0.96,91,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,High_D,0.96,158.5,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_D,0.96,223,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,High_E,0.96,300.2,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_E,0.96,373.7,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,High_F,0.96,479.4,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_F,0.96,600.2,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,High_G,0.96,773.8,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,98-199,Low_G,0.96,976.7,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,Low_B,0.96,41.4,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,High_C,0.96,149.8,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,Low_C,0.96,243.9,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,High_D,0.96,363.2,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,Low_D,0.96,472.5,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,High_E,0.96,607.6,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,Low_E,0.96,736.6,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,High_F,0.96,923.5,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,Low_F,0.96,1138.2,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,High_G,0.96,1447.7,N/A +DHS,DHS_connection_preHCs,Condensing Oil Boiler,DHS CHP,200,Low_G,0.96,1810.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_D,0.96,16.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_E,0.96,57.8,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_E,0.96,98.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_F,0.96,158.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_F,0.96,229.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,High_G,0.96,332.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,0-72,Low_G,0.96,454.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_D,0.96,3.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_D,0.96,39.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_E,0.96,83.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_E,0.96,124.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_F,0.96,186,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_F,0.96,257.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,High_G,0.96,362,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,73-97,Low_G,0.96,486,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_C,0.96,0.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_D,0.96,46.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_D,0.96,89.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_E,0.96,140.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_E,0.96,188.8,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_F,0.96,258.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_F,0.96,339.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,High_G,0.96,456.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,98-199,Low_G,0.96,595.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_C,0.96,20.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_C,0.96,84.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_D,0.96,164.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_D,0.96,236.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_E,0.96,324.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_E,0.96,406.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_F,0.96,527.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_F,0.96,668.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,High_G,0.96,873.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS non-CHP,200,Low_G,0.96,1117,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_C,0.96,36.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_D,0.96,94.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_D,0.96,152.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_E,0.96,222.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_E,0.96,291.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_F,0.96,390.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_F,0.96,504.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,High_G,0.96,668.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,0-72,Low_G,0.96,860.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_C,0.96,13.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_C,0.96,63.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_D,0.96,126.9,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_D,0.96,188.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_E,0.96,263.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_E,0.96,334.8,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_F,0.96,438.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_F,0.96,556.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,High_G,0.96,727.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,73-97,Low_G,0.96,926.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_C,0.96,53.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_C,0.96,114.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_D,0.96,190.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_D,0.96,263.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_E,0.96,350.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_E,0.96,433,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_F,0.96,551.4,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_F,0.96,686.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,High_G,0.96,879.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,98-199,Low_G,0.96,1104.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_B,0.96,62.7,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,High_C,0.96,186.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_C,0.96,293.8,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,High_D,0.96,429.2,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_D,0.96,552.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,High_E,0.96,704.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_E,0.96,848.3,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,High_F,0.96,1055.6,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_F,0.96,1292.5,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,High_G,0.96,1633.1,N/A +DHS,DHS_connection_preHCs,Non Condensing Oil Boiler,DHS CHP,200,Low_G,0.96,2031.3,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,High_B,0.96,201.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,Low_B,0.96,194.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,High_C,0.96,185.7,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,Low_C,0.96,178.8,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,High_D,0.96,231.7,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,Low_D,0.96,311,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,High_E,0.96,408.8,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,Low_E,0.96,503.9,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,High_F,0.96,640,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,Low_F,0.96,794,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,High_G,0.96,1012.7,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,0-72,Low_G,0.96,1265,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,High_B,0.96,174,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,Low_B,0.96,166.8,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,High_C,0.96,158,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,Low_C,0.96,186.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,High_D,0.96,273,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,Low_D,0.96,357.8,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,High_E,0.96,461.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,Low_E,0.96,562.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,High_F,0.96,705.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,Low_F,0.96,867.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,High_G,0.96,1097.8,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,73-97,Low_G,0.96,1363.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,High_B,0.96,142.7,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,Low_B,0.96,134.7,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,High_C,0.96,166.7,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,Low_C,0.96,245.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,High_D,0.96,346.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,Low_D,0.96,444.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,High_E,0.96,564.9,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,Low_E,0.96,681.3,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,High_F,0.96,847.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,Low_F,0.96,1035.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,High_G,0.96,1301.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,98-199,Low_G,0.96,1608.9,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,High_B,0.96,100,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,Low_B,0.96,223.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,High_C,0.96,383.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,Low_C,0.96,524.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,High_D,0.96,704.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,Low_D,0.96,871,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,High_E,0.96,1079.3,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,Low_E,0.96,1279.9,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,High_F,0.96,1566.3,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,Low_F,0.96,1890.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,High_G,0.96,2351.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS non-CHP,200,Low_G,0.96,2884.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,High_B,0.96,248.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,Low_B,0.96,241.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,High_C,0.96,232.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,Low_C,0.96,225.7,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,High_D,0.96,287.3,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,Low_D,0.96,378.8,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,High_E,0.96,491.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,Low_E,0.96,600.9,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,High_F,0.96,757,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,Low_F,0.96,933.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,High_G,0.96,1183.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,0-72,Low_G,0.96,1471.9,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,High_B,0.96,216.7,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,Low_B,0.96,209.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,High_C,0.96,200.7,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,Low_C,0.96,234.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,High_D,0.96,334.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,Low_D,0.96,432.3,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,High_E,0.96,552.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,Low_E,0.96,668.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,High_F,0.96,833.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,Low_F,0.96,1019.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,High_G,0.96,1283.8,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,73-97,Low_G,0.96,1588.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,High_B,0.96,181.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,Low_B,0.96,173.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,High_C,0.96,211.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,Low_C,0.96,301.8,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,High_D,0.96,418.9,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,Low_D,0.96,532.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,High_E,0.96,671,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,Low_E,0.96,805.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,High_F,0.96,996.3,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,Low_F,0.96,1211.9,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,High_G,0.96,1517.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,98-199,Low_G,0.96,1869.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,High_B,0.96,138.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,Low_B,0.96,281.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,High_C,0.96,467.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,Low_C,0.96,630.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,High_D,0.96,838.6,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,Low_D,0.96,1032,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,High_E,0.96,1273.2,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,Low_E,0.96,1505.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,High_F,0.96,1836.5,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,Low_F,0.96,2210.4,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,High_G,0.96,2741.1,N/A +DHS,DHS_connection_preHCs,Electric Boiler,DHS CHP,200,Low_G,0.96,3353.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_D,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_D,0.96,16.1,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_E,0.96,55.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_E,0.96,95.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_F,0.96,154,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_F,0.96,222,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,High_G,0.96,320.2,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,0-72,Low_G,0.96,435,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_D,0.96,4.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_D,0.96,38,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_E,0.96,79,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_E,0.96,119.2,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_F,0.96,178.6,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_F,0.96,247.3,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,High_G,0.96,346.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,73-97,Low_G,0.96,463.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_C,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_C,0.96,1.1,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_D,0.96,40.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_D,0.96,79.2,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_E,0.96,127,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_E,0.96,173.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_F,0.96,242.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_F,0.96,321.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,High_G,0.96,436.3,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,98-199,Low_G,0.96,570.2,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,High_C,0.96,29.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_C,0.96,82.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,High_D,0.96,151.3,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_D,0.96,215.6,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,High_E,0.96,297,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_E,0.96,376.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,High_F,0.96,494.4,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_F,0.96,631.1,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,High_G,0.96,829.4,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS non-CHP,200,Low_G,0.96,1062.4,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,High_C,0.96,8.3,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_C,0.96,52.1,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,High_D,0.96,109.7,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_D,0.96,167.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,High_E,0.96,239.3,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_E,0.96,309.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,High_F,0.96,411.7,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_F,0.96,528,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,High_G,0.96,694,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,0-72,Low_G,0.96,886.3,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,High_C,0.96,31.6,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_C,0.96,79.6,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,High_D,0.96,142,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_D,0.96,203.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,High_E,0.96,279.2,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_E,0.96,352.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,High_F,0.96,458.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_F,0.96,579.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,High_G,0.96,752.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,73-97,Low_G,0.96,953.2,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,High_B,0.96,0,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_B,0.96,6.4,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,High_C,0.96,70.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_C,0.96,127.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,High_D,0.96,200.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_D,0.96,272.4,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,High_E,0.96,360.1,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_E,0.96,445.3,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,High_F,0.96,567.8,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_F,0.96,707.2,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,High_G,0.96,906.1,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,98-199,Low_G,0.96,1136.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,High_B,0.96,9.1,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,Low_B,0.96,99.7,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,High_C,0.96,214.3,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,Low_C,0.96,315.4,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,High_D,0.96,445.5,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,Low_D,0.96,567,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,High_E,0.96,719.6,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,Low_E,0.96,867.7,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,High_F,0.96,1081.4,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,Low_F,0.96,1325.2,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,High_G,0.96,1673.9,N/A +DHS,DHS_connection_preHCs,Solid Fossil Boiler,DHS CHP,200,Low_G,0.96,2078.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,High_B,0.95,81,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,Low_B,0.95,81.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,High_C,0.95,83.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,Low_C,0.95,85.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,High_D,0.95,88.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,Low_D,0.95,92.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,High_E,0.95,99.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,Low_E,0.95,106.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,High_F,0.95,116.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,Low_F,0.95,128,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,High_G,0.95,143.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,0-72,Low_G,0.95,159.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,High_B,0.95,102.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,Low_B,0.95,103.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,High_C,0.95,105,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,Low_C,0.95,107.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,High_D,0.95,112.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,Low_D,0.95,117.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,High_E,0.95,125.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,Low_E,0.95,134.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,High_F,0.95,148.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,Low_F,0.95,162.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,High_G,0.95,182.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,0-72,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,High_B,0.95,97.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,Low_B,0.95,98.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,High_C,0.95,100.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,Low_C,0.95,102.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,High_D,0.95,107,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,High_E,0.95,119.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,Low_E,0.95,128.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,High_F,0.95,141.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,Low_F,0.95,155.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,High_G,0.95,173.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,0-72,Low_G,0.95,193.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,High_B,0.95,77.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,Low_B,0.95,78.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,High_D,0.95,85,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,Low_D,0.95,89,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,High_E,0.95,95.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,Low_E,0.95,102,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,High_F,0.95,111.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,Low_F,0.95,122.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,High_G,0.95,137.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,0-72,Low_G,0.95,152.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,High_B,0.95,42,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,Low_B,0.95,42.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,High_C,0.95,42.7,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,Low_C,0.95,43.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,High_D,0.95,45,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,Low_D,0.95,46.7,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,High_E,0.95,49.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,Low_E,0.95,52.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,High_F,0.95,57,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,Low_F,0.95,62,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,High_G,0.95,68.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,0-72,Low_G,0.95,75.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,High_B,0.95,53.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,Low_B,0.95,53.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,High_C,0.95,54.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,Low_C,0.95,55.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,High_D,0.95,56.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,Low_D,0.95,59.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,High_E,0.95,62.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,Low_E,0.95,66.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,High_F,0.95,72.3,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,Low_F,0.95,78.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,High_G,0.95,87.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,0-72,Low_G,0.95,96.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,High_B,0.95,30.7,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,Low_B,0.95,30.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,High_C,0.95,31.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,Low_C,0.95,31.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,High_D,0.95,32.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,Low_D,0.95,34.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,High_E,0.95,36.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,Low_E,0.95,38.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,High_F,0.95,41.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,Low_F,0.95,45.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,High_G,0.95,50,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,0-72,Low_G,0.95,55.3,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,High_B,0.95,31.2,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,Low_B,0.95,30.9,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,High_C,0.95,30.8,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,Low_C,0.95,31,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,High_D,0.95,31.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,Low_D,0.95,32.2,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,High_E,0.95,33.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,Low_E,0.95,35.2,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,High_F,0.95,37.6,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,Low_F,0.95,40.4,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,High_G,0.95,44.4,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,0-72,Low_G,0.95,48.8,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,High_B,0.95,26.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,Low_B,0.95,25.9,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,High_C,0.95,25.8,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,Low_C,0.95,25.9,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,High_D,0.95,26.3,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,Low_D,0.95,27,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,High_E,0.95,28,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,Low_E,0.95,29.4,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,High_F,0.95,31.4,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,Low_F,0.95,33.8,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,High_G,0.95,37,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,0-72,Low_G,0.95,40.6,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,High_B,0.95,17.6,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,Low_B,0.95,17.7,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,High_C,0.95,17.9,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,Low_C,0.95,18.3,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,High_D,0.95,19,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,Low_D,0.95,19.8,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,High_E,0.95,21.1,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,Low_E,0.95,22.5,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,High_F,0.95,24.6,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,Low_F,0.95,26.9,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,High_G,0.95,30.1,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,0-72,Low_G,0.95,33.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,High_B,0.95,105.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,Low_B,0.95,106,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,High_C,0.95,107.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,Low_C,0.95,108.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,High_D,0.95,112.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,Low_D,0.95,116.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,High_E,0.95,123.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,Low_E,0.95,132.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,High_F,0.95,144,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,Low_F,0.95,157.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,High_G,0.95,175.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,0-72,Low_G,0.95,195,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,High_B,0.95,123.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,Low_B,0.95,123.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,High_C,0.95,125.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,Low_C,0.95,127.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,High_D,0.95,131.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,Low_D,0.95,136.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,High_E,0.95,145.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,Low_E,0.95,154.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,High_F,0.95,168.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,Low_F,0.95,184.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,High_G,0.95,205.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,0-72,Low_G,0.95,229.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,High_B,0.95,130.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,Low_B,0.95,131,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,High_C,0.95,132.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,Low_C,0.95,134.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,High_D,0.95,139,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,Low_D,0.95,144.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,High_E,0.95,153.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,Low_E,0.95,163.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,High_F,0.95,178.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,Low_F,0.95,195.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,High_G,0.95,218,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,0-72,Low_G,0.95,242.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,High_B,0.95,127.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,Low_B,0.95,127.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,High_C,0.95,128.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,Low_C,0.95,131,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,High_D,0.95,135.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,Low_D,0.95,140.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,High_E,0.95,149.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,Low_E,0.95,159.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,High_F,0.95,173.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,Low_F,0.95,189.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,High_G,0.95,211.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,0-72,Low_G,0.95,235.9,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,High_B,0.95,59.8,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,Low_B,0.95,60.1,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,High_C,0.95,61.2,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,Low_C,0.95,62.5,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,High_D,0.95,64.9,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,Low_D,0.95,67.8,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,High_E,0.95,72.1,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,Low_E,0.95,77.1,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,High_F,0.95,84.2,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,Low_F,0.95,91.9,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,High_G,0.95,102.4,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,0-72,Low_G,0.95,113.7,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,High_B,0.95,63.8,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,Low_B,0.95,64.3,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,High_C,0.95,65.3,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,Low_C,0.95,66.8,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,High_D,0.95,69.3,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,Low_D,0.95,72.4,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,High_E,0.95,77.1,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,Low_E,0.95,82.4,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,High_F,0.95,90,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,Low_F,0.95,98.3,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,High_G,0.95,109.5,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,0-72,Low_G,0.95,121.7,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,High_B,0.95,67.7,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,Low_B,0.95,68.2,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,High_C,0.95,69.3,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,Low_C,0.95,70.8,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,High_D,0.95,73.5,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,Low_D,0.95,76.8,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,High_E,0.95,81.8,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,Low_E,0.95,87.4,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,High_F,0.95,95.4,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,Low_F,0.95,104.3,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,High_G,0.95,116.3,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,0-72,Low_G,0.95,129.2,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,High_B,0.95,17.7,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,Low_B,0.95,17.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,High_C,0.95,17.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,Low_C,0.95,17.8,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,High_D,0.95,18.1,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,Low_D,0.95,18.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,High_E,0.95,19.4,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,Low_E,0.95,20.3,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,High_F,0.95,21.8,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,Low_F,0.95,23.4,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,High_G,0.95,25.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,0-72,Low_G,0.95,28.1,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,High_B,0.95,12.4,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,Low_B,0.95,12.4,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,High_C,0.95,12.6,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,Low_C,0.95,12.9,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,High_D,0.95,13.4,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,Low_D,0.95,14,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,High_E,0.95,14.9,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,Low_E,0.95,15.9,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,High_F,0.95,17.4,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,Low_F,0.95,19.1,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,High_G,0.95,21.3,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,0-72,Low_G,0.95,23.7,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,0-72,High_D,0.97,80.7,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,0-72,Low_D,0.97,85.5,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,0-72,High_E,0.97,92.7,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,0-72,Low_E,0.97,100.8,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,0-72,High_F,0.97,112.2,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,0-72,Low_F,0.97,124.6,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,0-72,High_G,0.97,141.3,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,0-72,Low_G,0.97,159.2,N/A +Loft Insulation,LI_greater100,N/A,N/A,0-72,High_D,0.97,21.4,N/A +Loft Insulation,LI_greater100,N/A,N/A,0-72,Low_D,0.97,22.3,N/A +Loft Insulation,LI_greater100,N/A,N/A,0-72,High_E,0.97,23.8,N/A +Loft Insulation,LI_greater100,N/A,N/A,0-72,Low_E,0.97,25.6,N/A +Loft Insulation,LI_greater100,N/A,N/A,0-72,High_F,0.97,28.1,N/A +Loft Insulation,LI_greater100,N/A,N/A,0-72,Low_F,0.97,31,N/A +Loft Insulation,LI_greater100,N/A,N/A,0-72,High_G,0.97,35,N/A +Loft Insulation,LI_greater100,N/A,N/A,0-72,Low_G,0.97,39.4,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,0-72,High_D,0.86,200.5,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,0-72,Low_D,0.86,215.6,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,0-72,High_E,0.86,236.5,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,0-72,Low_E,0.86,258.5,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,0-72,High_F,0.86,287.7,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,0-72,Low_F,0.86,318.2,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,0-72,High_G,0.86,357.8,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,0-72,Low_G,0.86,399,N/A +Other Insulation,RIRI_res_in,N/A,N/A,0-72,High_D,0.86,207.8,N/A +Other Insulation,RIRI_res_in,N/A,N/A,0-72,Low_D,0.86,223.8,N/A +Other Insulation,RIRI_res_in,N/A,N/A,0-72,High_E,0.86,245.9,N/A +Other Insulation,RIRI_res_in,N/A,N/A,0-72,Low_E,0.86,269,N/A +Other Insulation,RIRI_res_in,N/A,N/A,0-72,High_F,0.86,299.8,N/A +Other Insulation,RIRI_res_in,N/A,N/A,0-72,Low_F,0.86,332,N/A +Other Insulation,RIRI_res_in,N/A,N/A,0-72,High_G,0.86,373.8,N/A +Other Insulation,RIRI_res_in,N/A,N/A,0-72,Low_G,0.86,417.3,N/A +Other Insulation,FRI,N/A,N/A,0-72,High_D,0.99,299.2,N/A +Other Insulation,FRI,N/A,N/A,0-72,Low_D,0.99,319.6,N/A +Other Insulation,FRI,N/A,N/A,0-72,High_E,0.99,350.3,N/A +Other Insulation,FRI,N/A,N/A,0-72,Low_E,0.99,384.7,N/A +Other Insulation,FRI,N/A,N/A,0-72,High_F,0.99,433.3,N/A +Other Insulation,FRI,N/A,N/A,0-72,Low_F,0.99,486.5,N/A +Other Insulation,FRI,N/A,N/A,0-72,High_G,0.99,558,N/A +Other Insulation,FRI,N/A,N/A,0-72,Low_G,0.99,635.1,N/A +Other Insulation,UFI,N/A,N/A,0-72,High_D,0.97,72.3,N/A +Other Insulation,UFI,N/A,N/A,0-72,Low_D,0.97,75.1,N/A +Other Insulation,UFI,N/A,N/A,0-72,High_E,0.97,79,N/A +Other Insulation,UFI,N/A,N/A,0-72,Low_E,0.97,83.2,N/A +Other Insulation,UFI,N/A,N/A,0-72,High_F,0.97,88.9,N/A +Other Insulation,UFI,N/A,N/A,0-72,Low_F,0.97,94.9,N/A +Other Insulation,UFI,N/A,N/A,0-72,High_G,0.97,102.8,N/A +Other Insulation,UFI,N/A,N/A,0-72,Low_G,0.97,111.2,N/A +Other Insulation,SFI,N/A,N/A,0-72,High_D,0.98,44.9,N/A +Other Insulation,SFI,N/A,N/A,0-72,Low_D,0.98,46.6,N/A +Other Insulation,SFI,N/A,N/A,0-72,High_E,0.98,49.2,N/A +Other Insulation,SFI,N/A,N/A,0-72,Low_E,0.98,52,N/A +Other Insulation,SFI,N/A,N/A,0-72,High_F,0.98,56,N/A +Other Insulation,SFI,N/A,N/A,0-72,Low_F,0.98,60.3,N/A +Other Insulation,SFI,N/A,N/A,0-72,High_G,0.98,66.1,N/A +Other Insulation,SFI,N/A,N/A,0-72,Low_G,0.98,72.4,N/A +Other Insulation,DP,N/A,N/A,0-72,High_D,1,20.3,N/A +Other Insulation,DP,N/A,N/A,0-72,Low_D,1,21,N/A +Other Insulation,DP,N/A,N/A,0-72,High_E,1,22,N/A +Other Insulation,DP,N/A,N/A,0-72,Low_E,1,23.1,N/A +Other Insulation,DP,N/A,N/A,0-72,High_F,1,24.5,N/A +Other Insulation,DP,N/A,N/A,0-72,Low_F,1,26.1,N/A +Other Insulation,DP,N/A,N/A,0-72,High_G,1,28.3,N/A +Other Insulation,DP,N/A,N/A,0-72,Low_G,1,30.5,N/A +Other Insulation,WG_singletodouble,N/A,N/A,0-72,High_D,1,83.6,N/A +Other Insulation,WG_singletodouble,N/A,N/A,0-72,Low_D,1,86.4,N/A +Other Insulation,WG_singletodouble,N/A,N/A,0-72,High_E,1,90.8,N/A +Other Insulation,WG_singletodouble,N/A,N/A,0-72,Low_E,1,95.8,N/A +Other Insulation,WG_singletodouble,N/A,N/A,0-72,High_F,1,103,N/A +Other Insulation,WG_singletodouble,N/A,N/A,0-72,Low_F,1,110.9,N/A +Other Insulation,WG_singletodouble,N/A,N/A,0-72,High_G,1,121.8,N/A +Other Insulation,WG_singletodouble,N/A,N/A,0-72,Low_G,1,133.5,N/A +Other Insulation,WG_improveddouble,N/A,N/A,0-72,High_D,1,15,N/A +Other Insulation,WG_improveddouble,N/A,N/A,0-72,Low_D,1,15.6,N/A +Other Insulation,WG_improveddouble,N/A,N/A,0-72,High_E,1,16.5,N/A +Other Insulation,WG_improveddouble,N/A,N/A,0-72,Low_E,1,17.6,N/A +Other Insulation,WG_improveddouble,N/A,N/A,0-72,High_F,1,19.3,N/A +Other Insulation,WG_improveddouble,N/A,N/A,0-72,Low_F,1,21,N/A +Other Insulation,WG_improveddouble,N/A,N/A,0-72,High_G,1,23.5,N/A +Other Insulation,WG_improveddouble,N/A,N/A,0-72,Low_G,1,26.2,N/A +Other Insulation,HPED,N/A,N/A,0-72,High_D,1,7,N/A +Other Insulation,HPED,N/A,N/A,0-72,Low_D,1,7.2,N/A +Other Insulation,HPED,N/A,N/A,0-72,High_E,1,7.5,N/A +Other Insulation,HPED,N/A,N/A,0-72,Low_E,1,7.9,N/A +Other Insulation,HPED,N/A,N/A,0-72,High_F,1,8.5,N/A +Other Insulation,HPED,N/A,N/A,0-72,Low_F,1,9.1,N/A +Other Insulation,HPED,N/A,N/A,0-72,High_G,1,10,N/A +Other Insulation,HPED,N/A,N/A,0-72,Low_G,1,10.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,High_B,0.95,81,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,Low_B,0.95,81.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,High_C,0.95,83.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,Low_C,0.95,85.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,High_D,0.95,88.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,Low_D,0.95,92.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,High_E,0.95,99.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,Low_E,0.95,106.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,High_F,0.95,116.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,Low_F,0.95,128,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,High_G,0.95,143.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,0-72,Low_G,0.95,159.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,High_B,0.95,102.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,Low_B,0.95,103.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,High_C,0.95,105,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,Low_C,0.95,107.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,High_D,0.95,112.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,Low_D,0.95,117.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,High_E,0.95,125.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,Low_E,0.95,134.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,High_F,0.95,148.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,Low_F,0.95,162.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,High_G,0.95,182.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,0-72,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,High_B,0.95,97.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,Low_B,0.95,98.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,High_C,0.95,100.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,Low_C,0.95,102.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,High_D,0.95,107,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,High_E,0.95,119.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,Low_E,0.95,128.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,High_F,0.95,141.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,Low_F,0.95,155.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,High_G,0.95,173.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,0-72,Low_G,0.95,193.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,High_B,0.95,77.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,Low_B,0.95,78.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,High_D,0.95,85,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,Low_D,0.95,89,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,High_E,0.95,95.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,Low_E,0.95,102,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,High_F,0.95,111.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,Low_F,0.95,122.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,High_G,0.95,137.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,0-72,Low_G,0.95,152.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,High_B,0.95,42,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,Low_B,0.95,42.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,High_C,0.95,42.7,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,Low_C,0.95,43.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,High_D,0.95,45,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,Low_D,0.95,46.7,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,High_E,0.95,49.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,Low_E,0.95,52.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,High_F,0.95,57,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,Low_F,0.95,62,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,High_G,0.95,68.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,0-72,Low_G,0.95,75.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,High_B,0.95,53.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,Low_B,0.95,53.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,High_C,0.95,54.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,Low_C,0.95,55.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,High_D,0.95,56.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,Low_D,0.95,59.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,High_E,0.95,62.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,Low_E,0.95,66.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,High_F,0.95,72.3,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,Low_F,0.95,78.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,High_G,0.95,87.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,0-72,Low_G,0.95,96.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,High_B,0.95,30.7,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,Low_B,0.95,30.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,High_C,0.95,31.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,Low_C,0.95,31.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,High_D,0.95,32.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,Low_D,0.95,34.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,High_E,0.95,36.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,Low_E,0.95,38.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,High_F,0.95,41.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,Low_F,0.95,45.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,High_G,0.95,50,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,0-72,Low_G,0.95,55.3,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,High_B,0.95,31.2,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,Low_B,0.95,30.9,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,High_C,0.95,30.8,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,Low_C,0.95,31,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,High_D,0.95,31.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,Low_D,0.95,32.2,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,High_E,0.95,33.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,Low_E,0.95,35.2,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,High_F,0.95,37.6,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,Low_F,0.95,40.4,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,High_G,0.95,44.4,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,0-72,Low_G,0.95,48.8,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,High_B,0.95,26.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,Low_B,0.95,25.9,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,High_C,0.95,25.8,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,Low_C,0.95,25.9,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,High_D,0.95,26.3,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,Low_D,0.95,27,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,High_E,0.95,28,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,Low_E,0.95,29.4,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,High_F,0.95,31.4,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,Low_F,0.95,33.8,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,High_G,0.95,37,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,0-72,Low_G,0.95,40.6,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,High_B,0.95,17.6,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,Low_B,0.95,17.7,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,High_C,0.95,17.9,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,Low_C,0.95,18.3,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,High_D,0.95,19,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,Low_D,0.95,19.8,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,High_E,0.95,21.1,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,Low_E,0.95,22.5,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,High_F,0.95,24.6,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,Low_F,0.95,26.9,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,High_G,0.95,30.1,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,0-72,Low_G,0.95,33.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,High_B,0.95,105.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,Low_B,0.95,106,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,High_C,0.95,107.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,Low_C,0.95,108.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,High_D,0.95,112.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,Low_D,0.95,116.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,High_E,0.95,123.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,Low_E,0.95,132.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,High_F,0.95,144,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,Low_F,0.95,157.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,High_G,0.95,175.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,0-72,Low_G,0.95,195,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,High_B,0.95,123.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,Low_B,0.95,123.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,High_C,0.95,125.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,Low_C,0.95,127.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,High_D,0.95,131.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,Low_D,0.95,136.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,High_E,0.95,145.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,Low_E,0.95,154.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,High_F,0.95,168.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,Low_F,0.95,184.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,High_G,0.95,205.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,0-72,Low_G,0.95,229.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,High_B,0.95,130.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,Low_B,0.95,131,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,High_C,0.95,132.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,Low_C,0.95,134.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,High_D,0.95,139,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,Low_D,0.95,144.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,High_E,0.95,153.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,Low_E,0.95,163.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,High_F,0.95,178.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,Low_F,0.95,195.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,High_G,0.95,218,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,0-72,Low_G,0.95,242.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,High_B,0.95,127.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,Low_B,0.95,127.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,High_C,0.95,128.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,Low_C,0.95,131,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,High_D,0.95,135.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,Low_D,0.95,140.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,High_E,0.95,149.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,Low_E,0.95,159.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,High_F,0.95,173.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,Low_F,0.95,189.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,High_G,0.95,211.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,0-72,Low_G,0.95,235.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,High_B,0.95,81,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_B,0.95,81.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,High_C,0.95,83.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_C,0.95,85.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,High_D,0.95,88.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_D,0.95,92.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,High_E,0.95,99.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_E,0.95,106.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,High_F,0.95,116.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_F,0.95,128,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,High_G,0.95,143.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_G,0.95,159.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,High_B,0.95,102.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_B,0.95,103.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,High_C,0.95,105,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_C,0.95,107.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,High_D,0.95,112.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_D,0.95,117.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,High_E,0.95,125.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_E,0.95,134.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,High_F,0.95,148.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_F,0.95,162.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,High_G,0.95,182.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,High_B,0.95,97.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_B,0.95,98.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,High_C,0.95,100.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_C,0.95,102.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,High_D,0.95,107,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,High_E,0.95,119.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_E,0.95,128.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,High_F,0.95,141.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_F,0.95,155.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,High_G,0.95,173.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_G,0.95,193.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,High_B,0.95,77.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_B,0.95,78.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,High_D,0.95,85,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_D,0.95,89,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,High_E,0.95,95.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_E,0.95,102,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,High_F,0.95,111.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_F,0.95,122.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,High_G,0.95,137.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_G,0.95,152.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,High_B,0.95,42,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_B,0.95,42.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,High_C,0.95,42.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_C,0.95,43.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,High_D,0.95,45,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_D,0.95,46.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,High_E,0.95,49.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_E,0.95,52.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,High_F,0.95,57,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_F,0.95,62,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,High_G,0.95,68.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_G,0.95,75.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,High_B,0.95,53.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_B,0.95,53.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,High_C,0.95,54.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_C,0.95,55.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,High_D,0.95,56.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_D,0.95,59.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,High_E,0.95,62.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_E,0.95,66.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,High_F,0.95,72.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_F,0.95,78.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,High_G,0.95,87.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_G,0.95,96.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,High_B,0.95,30.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_B,0.95,30.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,High_C,0.95,31.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_C,0.95,31.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,High_D,0.95,32.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_D,0.95,34.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,High_E,0.95,36.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_E,0.95,38.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,High_F,0.95,41.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_F,0.95,45.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,High_G,0.95,50,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_G,0.95,55.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,High_B,0.95,31.2,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_B,0.95,30.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,High_C,0.95,30.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_C,0.95,31,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,High_D,0.95,31.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_D,0.95,32.2,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,High_E,0.95,33.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_E,0.95,35.2,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,High_F,0.95,37.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_F,0.95,40.4,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,High_G,0.95,44.4,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_G,0.95,48.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,High_B,0.95,26.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_B,0.95,25.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,High_C,0.95,25.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_C,0.95,25.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,High_D,0.95,26.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_D,0.95,27,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,High_E,0.95,28,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_E,0.95,29.4,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,High_F,0.95,31.4,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_F,0.95,33.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,High_G,0.95,37,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_G,0.95,40.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,High_B,0.95,17.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_B,0.95,17.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,High_C,0.95,17.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_C,0.95,18.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,High_D,0.95,19,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_D,0.95,19.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,High_E,0.95,21.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_E,0.95,22.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,High_F,0.95,24.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_F,0.95,26.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,High_G,0.95,30.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_G,0.95,33.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,High_B,0.95,105.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_B,0.95,106,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,High_C,0.95,107.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_C,0.95,108.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,High_D,0.95,112.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_D,0.95,116.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,High_E,0.95,123.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_E,0.95,132.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,High_F,0.95,144,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_F,0.95,157.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,High_G,0.95,175.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_G,0.95,195,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,High_B,0.95,123.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_B,0.95,123.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,High_C,0.95,125.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_C,0.95,127.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,High_D,0.95,131.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_D,0.95,136.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,High_E,0.95,145.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_E,0.95,154.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,High_F,0.95,168.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_F,0.95,184.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,High_G,0.95,205.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_G,0.95,229.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,High_B,0.95,130.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_B,0.95,131,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,High_C,0.95,132.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_C,0.95,134.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,High_D,0.95,139,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_D,0.95,144.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,High_E,0.95,153.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_E,0.95,163.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,High_F,0.95,178.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_F,0.95,195.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,High_G,0.95,218,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_G,0.95,242.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,High_B,0.95,127.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_B,0.95,127.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,High_C,0.95,128.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_C,0.95,131,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,High_D,0.95,135.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_D,0.95,140.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,High_E,0.95,149.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_E,0.95,159.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,High_F,0.95,173.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_F,0.95,189.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,High_G,0.95,211.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_G,0.95,235.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,High_B,0.95,81,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_B,0.95,81.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,High_C,0.95,83.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_C,0.95,85.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,High_D,0.95,88.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_D,0.95,92.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,High_E,0.95,99.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_E,0.95,106.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,High_F,0.95,116.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_F,0.95,128,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,High_G,0.95,143.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_G,0.95,159.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,High_B,0.95,102.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_B,0.95,103.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,High_C,0.95,105,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_C,0.95,107.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,High_D,0.95,112.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_D,0.95,117.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,High_E,0.95,125.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_E,0.95,134.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,High_F,0.95,148.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_F,0.95,162.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,High_G,0.95,182.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,High_B,0.95,97.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_B,0.95,98.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,High_C,0.95,100.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_C,0.95,102.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,High_D,0.95,107,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,High_E,0.95,119.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_E,0.95,128.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,High_F,0.95,141.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_F,0.95,155.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,High_G,0.95,173.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_G,0.95,193.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,High_B,0.95,77.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_B,0.95,78.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,High_D,0.95,85,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_D,0.95,89,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,High_E,0.95,95.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_E,0.95,102,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,High_F,0.95,111.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_F,0.95,122.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,High_G,0.95,137.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_G,0.95,152.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,High_B,0.95,42,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_B,0.95,42.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,High_C,0.95,42.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_C,0.95,43.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,High_D,0.95,45,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_D,0.95,46.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,High_E,0.95,49.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_E,0.95,52.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,High_F,0.95,57,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_F,0.95,62,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,High_G,0.95,68.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_G,0.95,75.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,High_B,0.95,53.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_B,0.95,53.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,High_C,0.95,54.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_C,0.95,55.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,High_D,0.95,56.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_D,0.95,59.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,High_E,0.95,62.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_E,0.95,66.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,High_F,0.95,72.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_F,0.95,78.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,High_G,0.95,87.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_G,0.95,96.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,High_B,0.95,30.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_B,0.95,30.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,High_C,0.95,31.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_C,0.95,31.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,High_D,0.95,32.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_D,0.95,34.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,High_E,0.95,36.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_E,0.95,38.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,High_F,0.95,41.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_F,0.95,45.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,High_G,0.95,50,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_G,0.95,55.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,High_B,0.95,31.2,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_B,0.95,30.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,High_C,0.95,30.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_C,0.95,31,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,High_D,0.95,31.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_D,0.95,32.2,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,High_E,0.95,33.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_E,0.95,35.2,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,High_F,0.95,37.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_F,0.95,40.4,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,High_G,0.95,44.4,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_G,0.95,48.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,High_B,0.95,26.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_B,0.95,25.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,High_C,0.95,25.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_C,0.95,25.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,High_D,0.95,26.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_D,0.95,27,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,High_E,0.95,28,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_E,0.95,29.4,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,High_F,0.95,31.4,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_F,0.95,33.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,High_G,0.95,37,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_G,0.95,40.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,High_B,0.95,17.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_B,0.95,17.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,High_C,0.95,17.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_C,0.95,18.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,High_D,0.95,19,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_D,0.95,19.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,High_E,0.95,21.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_E,0.95,22.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,High_F,0.95,24.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_F,0.95,26.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,High_G,0.95,30.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_G,0.95,33.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,High_B,0.95,105.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_B,0.95,106,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,High_C,0.95,107.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_C,0.95,108.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,High_D,0.95,112.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_D,0.95,116.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,High_E,0.95,123.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_E,0.95,132.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,High_F,0.95,144,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_F,0.95,157.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,High_G,0.95,175.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_G,0.95,195,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,High_B,0.95,123.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_B,0.95,123.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,High_C,0.95,125.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_C,0.95,127.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,High_D,0.95,131.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_D,0.95,136.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,High_E,0.95,145.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_E,0.95,154.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,High_F,0.95,168.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_F,0.95,184.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,High_G,0.95,205.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_G,0.95,229.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,High_B,0.95,130.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_B,0.95,131,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,High_C,0.95,132.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_C,0.95,134.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,High_D,0.95,139,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_D,0.95,144.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,High_E,0.95,153.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_E,0.95,163.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,High_F,0.95,178.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_F,0.95,195.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,High_G,0.95,218,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_G,0.95,242.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,High_B,0.95,127.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_B,0.95,127.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,High_C,0.95,128.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_C,0.95,131,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,High_D,0.95,135.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_D,0.95,140.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,High_E,0.95,149.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_E,0.95,159.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,High_F,0.95,173.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_F,0.95,189.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,High_G,0.95,211.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_G,0.95,235.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,High_B,0.95,81,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,Low_B,0.95,81.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,High_C,0.95,83.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,Low_C,0.95,85.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,High_D,0.95,88.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,Low_D,0.95,92.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,High_E,0.95,99.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,Low_E,0.95,106.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,High_F,0.95,116.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,Low_F,0.95,128,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,High_G,0.95,143.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,0-72,Low_G,0.95,159.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,High_B,0.95,102.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,Low_B,0.95,103.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,High_C,0.95,105,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,Low_C,0.95,107.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,High_D,0.95,112.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,Low_D,0.95,117.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,High_E,0.95,125.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,Low_E,0.95,134.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,High_F,0.95,148.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,Low_F,0.95,162.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,High_G,0.95,182.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,0-72,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,High_B,0.95,97.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,Low_B,0.95,98.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,High_C,0.95,100.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,Low_C,0.95,102.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,High_D,0.95,107,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,High_E,0.95,119.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,Low_E,0.95,128.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,High_F,0.95,141.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,Low_F,0.95,155.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,High_G,0.95,173.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,0-72,Low_G,0.95,193.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,High_B,0.95,77.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,Low_B,0.95,78.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,High_D,0.95,85,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,Low_D,0.95,89,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,High_E,0.95,95.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,Low_E,0.95,102,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,High_F,0.95,111.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,Low_F,0.95,122.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,High_G,0.95,137.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,0-72,Low_G,0.95,152.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,High_B,0.95,42,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,Low_B,0.95,42.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,High_C,0.95,42.7,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,Low_C,0.95,43.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,High_D,0.95,45,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,Low_D,0.95,46.7,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,High_E,0.95,49.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,Low_E,0.95,52.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,High_F,0.95,57,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,Low_F,0.95,62,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,High_G,0.95,68.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,0-72,Low_G,0.95,75.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,High_B,0.95,53.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,Low_B,0.95,53.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,High_C,0.95,54.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,Low_C,0.95,55.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,High_D,0.95,56.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,Low_D,0.95,59.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,High_E,0.95,62.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,Low_E,0.95,66.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,High_F,0.95,72.3,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,Low_F,0.95,78.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,High_G,0.95,87.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,0-72,Low_G,0.95,96.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,High_B,0.95,30.7,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,Low_B,0.95,30.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,High_C,0.95,31.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,Low_C,0.95,31.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,High_D,0.95,32.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,Low_D,0.95,34.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,High_E,0.95,36.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,Low_E,0.95,38.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,High_F,0.95,41.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,Low_F,0.95,45.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,High_G,0.95,50,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,0-72,Low_G,0.95,55.3,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,High_B,0.95,31.2,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,Low_B,0.95,30.9,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,High_C,0.95,30.8,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,Low_C,0.95,31,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,High_D,0.95,31.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,Low_D,0.95,32.2,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,High_E,0.95,33.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,Low_E,0.95,35.2,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,High_F,0.95,37.6,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,Low_F,0.95,40.4,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,High_G,0.95,44.4,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,0-72,Low_G,0.95,48.8,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,High_B,0.95,26.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,Low_B,0.95,25.9,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,High_C,0.95,25.8,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,Low_C,0.95,25.9,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,High_D,0.95,26.3,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,Low_D,0.95,27,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,High_E,0.95,28,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,Low_E,0.95,29.4,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,High_F,0.95,31.4,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,Low_F,0.95,33.8,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,High_G,0.95,37,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,0-72,Low_G,0.95,40.6,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,High_B,0.95,17.6,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,Low_B,0.95,17.7,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,High_C,0.95,17.9,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,Low_C,0.95,18.3,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,High_D,0.95,19,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,Low_D,0.95,19.8,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,High_E,0.95,21.1,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,Low_E,0.95,22.5,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,High_F,0.95,24.6,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,Low_F,0.95,26.9,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,High_G,0.95,30.1,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,0-72,Low_G,0.95,33.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,High_B,0.95,105.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,Low_B,0.95,106,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,High_C,0.95,107.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,Low_C,0.95,108.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,High_D,0.95,112.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,Low_D,0.95,116.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,High_E,0.95,123.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,Low_E,0.95,132.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,High_F,0.95,144,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,Low_F,0.95,157.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,High_G,0.95,175.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,0-72,Low_G,0.95,195,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,High_B,0.95,123.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,Low_B,0.95,123.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,High_C,0.95,125.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,Low_C,0.95,127.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,High_D,0.95,131.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,Low_D,0.95,136.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,High_E,0.95,145.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,Low_E,0.95,154.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,High_F,0.95,168.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,Low_F,0.95,184.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,High_G,0.95,205.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,0-72,Low_G,0.95,229.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,High_B,0.95,130.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,Low_B,0.95,131,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,High_C,0.95,132.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,Low_C,0.95,134.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,High_D,0.95,139,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,Low_D,0.95,144.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,High_E,0.95,153.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,Low_E,0.95,163.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,High_F,0.95,178.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,Low_F,0.95,195.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,High_G,0.95,218,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,0-72,Low_G,0.95,242.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,High_B,0.95,127.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,Low_B,0.95,127.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,High_C,0.95,128.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,Low_C,0.95,131,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,High_D,0.95,135.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,Low_D,0.95,140.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,High_E,0.95,149.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,Low_E,0.95,159.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,High_F,0.95,173.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,Low_F,0.95,189.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,High_G,0.95,211.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,0-72,Low_G,0.95,235.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,High_B,0.95,81,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_B,0.95,81.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,High_C,0.95,83.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_C,0.95,85.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,High_D,0.95,88.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_D,0.95,92.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,High_E,0.95,99.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_E,0.95,106.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,High_F,0.95,116.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_F,0.95,128,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,High_G,0.95,143.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,0-72,Low_G,0.95,159.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,High_B,0.95,102.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_B,0.95,103.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,High_C,0.95,105,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_C,0.95,107.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,High_D,0.95,112.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_D,0.95,117.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,High_E,0.95,125.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_E,0.95,134.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,High_F,0.95,148.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_F,0.95,162.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,High_G,0.95,182.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,0-72,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,High_B,0.95,97.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_B,0.95,98.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,High_C,0.95,100.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_C,0.95,102.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,High_D,0.95,107,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,High_E,0.95,119.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_E,0.95,128.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,High_F,0.95,141.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_F,0.95,155.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,High_G,0.95,173.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,0-72,Low_G,0.95,193.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,High_B,0.95,77.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_B,0.95,78.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,High_D,0.95,85,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_D,0.95,89,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,High_E,0.95,95.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_E,0.95,102,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,High_F,0.95,111.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_F,0.95,122.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,High_G,0.95,137.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,0-72,Low_G,0.95,152.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,High_B,0.95,42,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_B,0.95,42.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,High_C,0.95,42.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_C,0.95,43.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,High_D,0.95,45,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_D,0.95,46.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,High_E,0.95,49.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_E,0.95,52.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,High_F,0.95,57,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_F,0.95,62,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,High_G,0.95,68.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,0-72,Low_G,0.95,75.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,High_B,0.95,53.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_B,0.95,53.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,High_C,0.95,54.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_C,0.95,55.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,High_D,0.95,56.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_D,0.95,59.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,High_E,0.95,62.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_E,0.95,66.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,High_F,0.95,72.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_F,0.95,78.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,High_G,0.95,87.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,0-72,Low_G,0.95,96.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,High_B,0.95,30.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_B,0.95,30.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,High_C,0.95,31.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_C,0.95,31.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,High_D,0.95,32.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_D,0.95,34.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,High_E,0.95,36.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_E,0.95,38.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,High_F,0.95,41.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_F,0.95,45.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,High_G,0.95,50,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,0-72,Low_G,0.95,55.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,High_B,0.95,31.2,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_B,0.95,30.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,High_C,0.95,30.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_C,0.95,31,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,High_D,0.95,31.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_D,0.95,32.2,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,High_E,0.95,33.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_E,0.95,35.2,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,High_F,0.95,37.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_F,0.95,40.4,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,High_G,0.95,44.4,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,0-72,Low_G,0.95,48.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,High_B,0.95,26.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_B,0.95,25.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,High_C,0.95,25.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_C,0.95,25.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,High_D,0.95,26.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_D,0.95,27,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,High_E,0.95,28,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_E,0.95,29.4,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,High_F,0.95,31.4,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_F,0.95,33.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,High_G,0.95,37,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,0-72,Low_G,0.95,40.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,High_B,0.95,17.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_B,0.95,17.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,High_C,0.95,17.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_C,0.95,18.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,High_D,0.95,19,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_D,0.95,19.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,High_E,0.95,21.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_E,0.95,22.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,High_F,0.95,24.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_F,0.95,26.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,High_G,0.95,30.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,0-72,Low_G,0.95,33.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,High_B,0.95,105.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_B,0.95,106,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,High_C,0.95,107.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_C,0.95,108.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,High_D,0.95,112.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_D,0.95,116.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,High_E,0.95,123.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_E,0.95,132.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,High_F,0.95,144,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_F,0.95,157.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,High_G,0.95,175.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,0-72,Low_G,0.95,195,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,High_B,0.95,123.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_B,0.95,123.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,High_C,0.95,125.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_C,0.95,127.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,High_D,0.95,131.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_D,0.95,136.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,High_E,0.95,145.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_E,0.95,154.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,High_F,0.95,168.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_F,0.95,184.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,High_G,0.95,205.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,0-72,Low_G,0.95,229.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,High_B,0.95,130.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_B,0.95,131,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,High_C,0.95,132.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_C,0.95,134.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,High_D,0.95,139,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_D,0.95,144.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,High_E,0.95,153.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_E,0.95,163.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,High_F,0.95,178.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_F,0.95,195.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,High_G,0.95,218,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,0-72,Low_G,0.95,242.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,High_B,0.95,127.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_B,0.95,127.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,High_C,0.95,128.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_C,0.95,131,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,High_D,0.95,135.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_D,0.95,140.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,High_E,0.95,149.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_E,0.95,159.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,High_F,0.95,173.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_F,0.95,189.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,High_G,0.95,211.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,0-72,Low_G,0.95,235.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,High_B,0.95,162.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,Low_B,0.95,162.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,High_C,0.95,165.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,Low_C,0.95,169.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,High_D,0.95,177.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,Low_D,0.95,187.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,High_E,0.95,203.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,Low_E,0.95,222.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,High_F,0.95,249.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,Low_F,0.95,280.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,High_G,0.95,321.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,73-97,Low_G,0.95,367.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,High_B,0.95,212.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,Low_B,0.95,213,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,High_C,0.95,215.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,Low_C,0.95,221,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,High_D,0.95,231.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,Low_D,0.95,243.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,High_E,0.95,264.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,Low_E,0.95,288.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,High_F,0.95,322.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,Low_F,0.95,361.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,High_G,0.95,414.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,73-97,Low_G,0.95,471.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,High_B,0.95,201.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,Low_B,0.95,201.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,High_C,0.95,204.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,Low_C,0.95,209.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,High_D,0.95,219.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,Low_D,0.95,231.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,High_E,0.95,250.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,Low_E,0.95,273.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,High_F,0.95,306.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,Low_F,0.95,343.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,High_G,0.95,393.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,73-97,Low_G,0.95,448.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,High_B,0.95,155,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,Low_B,0.95,155.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,High_C,0.95,157.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,Low_C,0.95,161.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,High_D,0.95,169.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,Low_D,0.95,179,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,High_E,0.95,194.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,Low_E,0.95,212.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,High_F,0.95,238.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,Low_F,0.95,267.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,High_G,0.95,307.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,73-97,Low_G,0.95,350.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,High_B,0.95,78.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,Low_B,0.95,78.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,High_D,0.95,85.3,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,Low_D,0.95,90.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,High_E,0.95,97.7,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,Low_E,0.95,106.7,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,High_F,0.95,119.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,Low_F,0.95,134.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,High_G,0.95,153.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,73-97,Low_G,0.95,175.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,High_B,0.95,101.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,Low_B,0.95,101.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,High_C,0.95,102.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,Low_C,0.95,104.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,High_D,0.95,109.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,Low_D,0.95,115.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,High_E,0.95,125.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,Low_E,0.95,136.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,High_F,0.95,153,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,Low_F,0.95,171.3,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,High_G,0.95,196.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,73-97,Low_G,0.95,223.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,High_B,0.95,56.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,Low_B,0.95,56.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,High_C,0.95,57.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,Low_C,0.95,58.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,High_D,0.95,61.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,Low_D,0.95,65.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,High_E,0.95,70.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,Low_E,0.95,77.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,High_F,0.95,86.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,Low_F,0.95,97.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,High_G,0.95,111.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,73-97,Low_G,0.95,127.3,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,High_B,0.95,52.6,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,Low_B,0.95,52.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,High_C,0.95,53,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,Low_C,0.95,54.2,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,High_D,0.95,56.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,Low_D,0.95,59.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,High_E,0.95,64.4,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,Low_E,0.95,70.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,High_F,0.95,78.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,Low_F,0.95,87.8,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,High_G,0.95,100.6,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,73-97,Low_G,0.95,114.7,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,High_B,0.95,43.6,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,Low_B,0.95,43.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,High_C,0.95,44,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,Low_C,0.95,45,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,High_D,0.95,46.9,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,Low_D,0.95,49.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,High_E,0.95,53.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,Low_E,0.95,58.3,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,High_F,0.95,65.3,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,Low_F,0.95,73.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,High_G,0.95,83.8,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,73-97,Low_G,0.95,95.5,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,High_B,0.95,35.5,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,Low_B,0.95,35.3,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,High_C,0.95,35.6,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,Low_C,0.95,36.3,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,High_D,0.95,37.8,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,Low_D,0.95,39.7,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,High_E,0.95,42.9,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,Low_E,0.95,46.6,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,High_F,0.95,52.1,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,Low_F,0.95,58.3,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,High_G,0.95,66.8,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,73-97,Low_G,0.95,76.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,High_B,0.95,195.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,Low_B,0.95,196.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,High_C,0.95,199.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,Low_C,0.95,205.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,High_D,0.95,215.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,Low_D,0.95,228.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,High_E,0.95,248.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,Low_E,0.95,271.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,High_F,0.95,304.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,Low_F,0.95,341.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,High_G,0.95,392.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,73-97,Low_G,0.95,446.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,High_B,0.95,234.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,Low_B,0.95,235.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,High_C,0.95,239.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,Low_C,0.95,245.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,High_D,0.95,257.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,Low_D,0.95,272.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,High_E,0.95,296.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,Low_E,0.95,323.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,High_F,0.95,362.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,Low_F,0.95,405.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,High_G,0.95,464.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,73-97,Low_G,0.95,528.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,High_B,0.95,250.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,Low_B,0.95,251.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,High_C,0.95,255.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,Low_C,0.95,262.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,High_D,0.95,275.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,Low_D,0.95,290.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,High_E,0.95,315.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,Low_E,0.95,344.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,High_F,0.95,385.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,Low_F,0.95,431.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,High_G,0.95,494.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,73-97,Low_G,0.95,562.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,High_B,0.95,242.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,Low_B,0.95,243.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,High_C,0.95,247.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,Low_C,0.95,254.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,High_D,0.95,266.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,Low_D,0.95,281.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,High_E,0.95,305.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,Low_E,0.95,333.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,High_F,0.95,373.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,Low_F,0.95,418.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,High_G,0.95,479.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,73-97,Low_G,0.95,545.5,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,High_B,0.95,117.8,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,Low_B,0.95,117.7,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,High_C,0.95,119.1,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,Low_C,0.95,121.8,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,High_D,0.95,127.2,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,Low_D,0.95,134.2,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,High_E,0.95,145.6,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,Low_E,0.95,158.8,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,High_F,0.95,178.2,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,Low_F,0.95,199.8,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,High_G,0.95,229.5,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,73-97,Low_G,0.95,262,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,High_B,0.95,126.7,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,Low_B,0.95,126.5,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,High_C,0.95,128,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,Low_C,0.95,130.8,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,High_D,0.95,136.6,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,Low_D,0.95,144.2,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,High_E,0.95,156.3,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,Low_E,0.95,170.4,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,High_F,0.95,191.1,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,Low_F,0.95,214.2,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,High_G,0.95,246,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,73-97,Low_G,0.95,280.7,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,High_B,0.95,135.2,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,Low_B,0.95,135,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,High_C,0.95,136.5,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,Low_C,0.95,139.5,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,High_D,0.95,145.7,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,Low_D,0.95,153.6,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,High_E,0.95,166.5,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,Low_E,0.95,181.5,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,High_F,0.95,203.4,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,Low_F,0.95,228,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,High_G,0.95,261.7,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,73-97,Low_G,0.95,298.5,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,High_B,0.95,16.9,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,Low_B,0.95,16.7,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,High_C,0.95,16.8,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,Low_C,0.95,17.1,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,High_D,0.95,17.9,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,Low_D,0.95,18.9,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,High_E,0.95,20.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,Low_E,0.95,22.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,High_F,0.95,25.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,Low_F,0.95,28.9,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,High_G,0.95,33.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,73-97,Low_G,0.95,38.8,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,High_B,0.95,25,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,Low_B,0.95,24.9,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,High_C,0.95,25.1,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,Low_C,0.95,25.6,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,High_D,0.95,26.7,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,Low_D,0.95,28,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,High_E,0.95,30.3,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,Low_E,0.95,33,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,High_F,0.95,36.9,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,Low_F,0.95,41.2,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,High_G,0.95,47.3,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,73-97,Low_G,0.95,53.9,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,73-97,High_D,0.97,43.3,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,73-97,Low_D,0.97,45.7,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,73-97,High_E,0.97,49.6,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,73-97,Low_E,0.97,54.2,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,73-97,High_F,0.97,61,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,73-97,Low_F,0.97,68.7,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,73-97,High_G,0.97,79.3,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,73-97,Low_G,0.97,91,N/A +Loft Insulation,LI_greater100,N/A,N/A,73-97,High_D,0.97,10.6,N/A +Loft Insulation,LI_greater100,N/A,N/A,73-97,Low_D,0.97,11.1,N/A +Loft Insulation,LI_greater100,N/A,N/A,73-97,High_E,0.97,12.1,N/A +Loft Insulation,LI_greater100,N/A,N/A,73-97,Low_E,0.97,13.2,N/A +Loft Insulation,LI_greater100,N/A,N/A,73-97,High_F,0.97,14.8,N/A +Loft Insulation,LI_greater100,N/A,N/A,73-97,Low_F,0.97,16.7,N/A +Loft Insulation,LI_greater100,N/A,N/A,73-97,High_G,0.97,19.2,N/A +Loft Insulation,LI_greater100,N/A,N/A,73-97,Low_G,0.97,22,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,73-97,High_D,0.86,169.6,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,73-97,Low_D,0.86,175.7,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,73-97,High_E,0.86,187.3,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,73-97,Low_E,0.86,202.3,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,73-97,High_F,0.86,225.6,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,73-97,Low_F,0.86,252.8,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,73-97,High_G,0.86,291.4,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,73-97,Low_G,0.86,334.6,N/A +Other Insulation,RIRI_res_in,N/A,N/A,73-97,High_D,0.86,175.5,N/A +Other Insulation,RIRI_res_in,N/A,N/A,73-97,Low_D,0.86,181.8,N/A +Other Insulation,RIRI_res_in,N/A,N/A,73-97,High_E,0.86,193.7,N/A +Other Insulation,RIRI_res_in,N/A,N/A,73-97,Low_E,0.86,209.2,N/A +Other Insulation,RIRI_res_in,N/A,N/A,73-97,High_F,0.86,233.2,N/A +Other Insulation,RIRI_res_in,N/A,N/A,73-97,Low_F,0.86,261.3,N/A +Other Insulation,RIRI_res_in,N/A,N/A,73-97,High_G,0.86,301.1,N/A +Other Insulation,RIRI_res_in,N/A,N/A,73-97,Low_G,0.86,345.7,N/A +Other Insulation,FRI,N/A,N/A,73-97,High_D,0.99,174.9,N/A +Other Insulation,FRI,N/A,N/A,73-97,Low_D,0.99,184.4,N/A +Other Insulation,FRI,N/A,N/A,73-97,High_E,0.99,199.9,N/A +Other Insulation,FRI,N/A,N/A,73-97,Low_E,0.99,218.5,N/A +Other Insulation,FRI,N/A,N/A,73-97,High_F,0.99,245.7,N/A +Other Insulation,FRI,N/A,N/A,73-97,Low_F,0.99,276.5,N/A +Other Insulation,FRI,N/A,N/A,73-97,High_G,0.99,318.9,N/A +Other Insulation,FRI,N/A,N/A,73-97,Low_G,0.99,365.5,N/A +Other Insulation,UFI,N/A,N/A,73-97,High_D,0.97,44.9,N/A +Other Insulation,UFI,N/A,N/A,73-97,Low_D,0.97,47.7,N/A +Other Insulation,UFI,N/A,N/A,73-97,High_E,0.97,52.3,N/A +Other Insulation,UFI,N/A,N/A,73-97,Low_E,0.97,57.8,N/A +Other Insulation,UFI,N/A,N/A,73-97,High_F,0.97,65.9,N/A +Other Insulation,UFI,N/A,N/A,73-97,Low_F,0.97,75,N/A +Other Insulation,UFI,N/A,N/A,73-97,High_G,0.97,87.5,N/A +Other Insulation,UFI,N/A,N/A,73-97,Low_G,0.97,101.3,N/A +Other Insulation,SFI,N/A,N/A,73-97,High_D,0.98,32.7,N/A +Other Insulation,SFI,N/A,N/A,73-97,Low_D,0.98,34.6,N/A +Other Insulation,SFI,N/A,N/A,73-97,High_E,0.98,37.6,N/A +Other Insulation,SFI,N/A,N/A,73-97,Low_E,0.98,41.3,N/A +Other Insulation,SFI,N/A,N/A,73-97,High_F,0.98,46.6,N/A +Other Insulation,SFI,N/A,N/A,73-97,Low_F,0.98,52.6,N/A +Other Insulation,SFI,N/A,N/A,73-97,High_G,0.98,60.9,N/A +Other Insulation,SFI,N/A,N/A,73-97,Low_G,0.98,70,N/A +Other Insulation,DP,N/A,N/A,73-97,High_D,1,19.4,N/A +Other Insulation,DP,N/A,N/A,73-97,Low_D,1,20.5,N/A +Other Insulation,DP,N/A,N/A,73-97,High_E,1,22.4,N/A +Other Insulation,DP,N/A,N/A,73-97,Low_E,1,24.6,N/A +Other Insulation,DP,N/A,N/A,73-97,High_F,1,27.8,N/A +Other Insulation,DP,N/A,N/A,73-97,Low_F,1,31.5,N/A +Other Insulation,DP,N/A,N/A,73-97,High_G,1,36.5,N/A +Other Insulation,DP,N/A,N/A,73-97,Low_G,1,42,N/A +Other Insulation,WG_singletodouble,N/A,N/A,73-97,High_D,1,68.6,N/A +Other Insulation,WG_singletodouble,N/A,N/A,73-97,Low_D,1,72.4,N/A +Other Insulation,WG_singletodouble,N/A,N/A,73-97,High_E,1,78.8,N/A +Other Insulation,WG_singletodouble,N/A,N/A,73-97,Low_E,1,86.6,N/A +Other Insulation,WG_singletodouble,N/A,N/A,73-97,High_F,1,98.1,N/A +Other Insulation,WG_singletodouble,N/A,N/A,73-97,Low_F,1,111.3,N/A +Other Insulation,WG_singletodouble,N/A,N/A,73-97,High_G,1,129.6,N/A +Other Insulation,WG_singletodouble,N/A,N/A,73-97,Low_G,1,149.8,N/A +Other Insulation,WG_improveddouble,N/A,N/A,73-97,High_D,1,13.1,N/A +Other Insulation,WG_improveddouble,N/A,N/A,73-97,Low_D,1,13.9,N/A +Other Insulation,WG_improveddouble,N/A,N/A,73-97,High_E,1,15.1,N/A +Other Insulation,WG_improveddouble,N/A,N/A,73-97,Low_E,1,16.6,N/A +Other Insulation,WG_improveddouble,N/A,N/A,73-97,High_F,1,18.7,N/A +Other Insulation,WG_improveddouble,N/A,N/A,73-97,Low_F,1,21.1,N/A +Other Insulation,WG_improveddouble,N/A,N/A,73-97,High_G,1,24.4,N/A +Other Insulation,WG_improveddouble,N/A,N/A,73-97,Low_G,1,27.9,N/A +Other Insulation,HPED,N/A,N/A,73-97,High_D,1,8.8,N/A +Other Insulation,HPED,N/A,N/A,73-97,Low_D,1,9.3,N/A +Other Insulation,HPED,N/A,N/A,73-97,High_E,1,10.1,N/A +Other Insulation,HPED,N/A,N/A,73-97,Low_E,1,11.1,N/A +Other Insulation,HPED,N/A,N/A,73-97,High_F,1,12.6,N/A +Other Insulation,HPED,N/A,N/A,73-97,Low_F,1,14.3,N/A +Other Insulation,HPED,N/A,N/A,73-97,High_G,1,16.6,N/A +Other Insulation,HPED,N/A,N/A,73-97,Low_G,1,19.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,High_B,0.95,162.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,Low_B,0.95,162.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,High_C,0.95,165.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,Low_C,0.95,169.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,High_D,0.95,177.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,Low_D,0.95,187.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,High_E,0.95,203.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,Low_E,0.95,222.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,High_F,0.95,249.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,Low_F,0.95,280.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,High_G,0.95,321.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,73-97,Low_G,0.95,367.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,High_B,0.95,212.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,Low_B,0.95,213,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,High_C,0.95,215.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,Low_C,0.95,221,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,High_D,0.95,231.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,Low_D,0.95,243.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,High_E,0.95,264.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,Low_E,0.95,288.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,High_F,0.95,322.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,Low_F,0.95,361.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,High_G,0.95,414.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,73-97,Low_G,0.95,471.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,High_B,0.95,201.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,Low_B,0.95,201.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,High_C,0.95,204.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,Low_C,0.95,209.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,High_D,0.95,219.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,Low_D,0.95,231.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,High_E,0.95,250.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,Low_E,0.95,273.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,High_F,0.95,306.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,Low_F,0.95,343.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,High_G,0.95,393.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,73-97,Low_G,0.95,448.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,High_B,0.95,155,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,Low_B,0.95,155.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,High_C,0.95,157.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,Low_C,0.95,161.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,High_D,0.95,169.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,Low_D,0.95,179,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,High_E,0.95,194.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,Low_E,0.95,212.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,High_F,0.95,238.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,Low_F,0.95,267.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,High_G,0.95,307.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,73-97,Low_G,0.95,350.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,High_B,0.95,78.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,Low_B,0.95,78.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,High_D,0.95,85.3,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,Low_D,0.95,90.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,High_E,0.95,97.7,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,Low_E,0.95,106.7,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,High_F,0.95,119.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,Low_F,0.95,134.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,High_G,0.95,153.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,73-97,Low_G,0.95,175.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,High_B,0.95,101.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,Low_B,0.95,101.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,High_C,0.95,102.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,Low_C,0.95,104.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,High_D,0.95,109.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,Low_D,0.95,115.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,High_E,0.95,125.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,Low_E,0.95,136.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,High_F,0.95,153,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,Low_F,0.95,171.3,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,High_G,0.95,196.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,73-97,Low_G,0.95,223.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,High_B,0.95,56.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,Low_B,0.95,56.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,High_C,0.95,57.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,Low_C,0.95,58.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,High_D,0.95,61.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,Low_D,0.95,65.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,High_E,0.95,70.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,Low_E,0.95,77.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,High_F,0.95,86.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,Low_F,0.95,97.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,High_G,0.95,111.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,73-97,Low_G,0.95,127.3,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,High_B,0.95,52.6,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,Low_B,0.95,52.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,High_C,0.95,53,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,Low_C,0.95,54.2,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,High_D,0.95,56.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,Low_D,0.95,59.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,High_E,0.95,64.4,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,Low_E,0.95,70.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,High_F,0.95,78.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,Low_F,0.95,87.8,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,High_G,0.95,100.6,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,73-97,Low_G,0.95,114.7,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,High_B,0.95,43.6,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,Low_B,0.95,43.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,High_C,0.95,44,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,Low_C,0.95,45,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,High_D,0.95,46.9,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,Low_D,0.95,49.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,High_E,0.95,53.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,Low_E,0.95,58.3,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,High_F,0.95,65.3,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,Low_F,0.95,73.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,High_G,0.95,83.8,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,73-97,Low_G,0.95,95.5,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,High_B,0.95,35.5,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,Low_B,0.95,35.3,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,High_C,0.95,35.6,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,Low_C,0.95,36.3,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,High_D,0.95,37.8,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,Low_D,0.95,39.7,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,High_E,0.95,42.9,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,Low_E,0.95,46.6,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,High_F,0.95,52.1,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,Low_F,0.95,58.3,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,High_G,0.95,66.8,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,73-97,Low_G,0.95,76.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,High_B,0.95,195.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,Low_B,0.95,196.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,High_C,0.95,199.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,Low_C,0.95,205.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,High_D,0.95,215.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,Low_D,0.95,228.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,High_E,0.95,248.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,Low_E,0.95,271.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,High_F,0.95,304.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,Low_F,0.95,341.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,High_G,0.95,392.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,73-97,Low_G,0.95,446.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,High_B,0.95,234.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,Low_B,0.95,235.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,High_C,0.95,239.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,Low_C,0.95,245.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,High_D,0.95,257.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,Low_D,0.95,272.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,High_E,0.95,296.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,Low_E,0.95,323.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,High_F,0.95,362.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,Low_F,0.95,405.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,High_G,0.95,464.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,73-97,Low_G,0.95,528.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,High_B,0.95,250.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,Low_B,0.95,251.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,High_C,0.95,255.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,Low_C,0.95,262.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,High_D,0.95,275.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,Low_D,0.95,290.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,High_E,0.95,315.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,Low_E,0.95,344.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,High_F,0.95,385.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,Low_F,0.95,431.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,High_G,0.95,494.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,73-97,Low_G,0.95,562.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,High_B,0.95,242.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,Low_B,0.95,243.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,High_C,0.95,247.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,Low_C,0.95,254.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,High_D,0.95,266.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,Low_D,0.95,281.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,High_E,0.95,305.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,Low_E,0.95,333.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,High_F,0.95,373.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,Low_F,0.95,418.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,High_G,0.95,479.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,73-97,Low_G,0.95,545.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,High_B,0.95,162.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_B,0.95,162.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,High_C,0.95,165.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_C,0.95,169.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,High_D,0.95,177.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_D,0.95,187.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,High_E,0.95,203.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_E,0.95,222.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,High_F,0.95,249.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_F,0.95,280.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,High_G,0.95,321.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_G,0.95,367.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,High_B,0.95,212.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_B,0.95,213,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,High_C,0.95,215.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_C,0.95,221,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,High_D,0.95,231.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_D,0.95,243.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,High_E,0.95,264.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_E,0.95,288.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,High_F,0.95,322.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_F,0.95,361.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,High_G,0.95,414.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_G,0.95,471.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,High_B,0.95,201.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_B,0.95,201.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,High_C,0.95,204.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_C,0.95,209.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,High_D,0.95,219.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_D,0.95,231.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,High_E,0.95,250.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_E,0.95,273.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,High_F,0.95,306.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_F,0.95,343.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,High_G,0.95,393.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_G,0.95,448.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,High_B,0.95,155,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_B,0.95,155.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,High_C,0.95,157.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_C,0.95,161.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,High_D,0.95,169.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_D,0.95,179,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,High_E,0.95,194.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_E,0.95,212.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,High_F,0.95,238.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_F,0.95,267.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,High_G,0.95,307.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_G,0.95,350.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,High_B,0.95,78.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_B,0.95,78.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,High_D,0.95,85.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_D,0.95,90.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,High_E,0.95,97.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_E,0.95,106.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,High_F,0.95,119.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_F,0.95,134.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,High_G,0.95,153.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_G,0.95,175.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,High_B,0.95,101.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_B,0.95,101.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,High_C,0.95,102.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_C,0.95,104.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,High_D,0.95,109.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_D,0.95,115.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,High_E,0.95,125.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_E,0.95,136.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,High_F,0.95,153,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_F,0.95,171.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,High_G,0.95,196.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_G,0.95,223.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,High_B,0.95,56.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_B,0.95,56.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,High_C,0.95,57.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_C,0.95,58.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,High_D,0.95,61.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_D,0.95,65.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,High_E,0.95,70.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_E,0.95,77.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,High_F,0.95,86.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_F,0.95,97.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,High_G,0.95,111.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_G,0.95,127.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,High_B,0.95,52.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_B,0.95,52.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,High_C,0.95,53,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_C,0.95,54.2,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,High_D,0.95,56.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_D,0.95,59.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,High_E,0.95,64.4,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_E,0.95,70.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,High_F,0.95,78.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_F,0.95,87.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,High_G,0.95,100.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_G,0.95,114.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,High_B,0.95,43.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_B,0.95,43.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,High_C,0.95,44,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_C,0.95,45,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,High_D,0.95,46.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_D,0.95,49.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,High_E,0.95,53.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_E,0.95,58.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,High_F,0.95,65.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_F,0.95,73.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,High_G,0.95,83.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_G,0.95,95.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,High_B,0.95,35.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_B,0.95,35.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,High_C,0.95,35.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_C,0.95,36.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,High_D,0.95,37.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_D,0.95,39.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,High_E,0.95,42.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_E,0.95,46.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,High_F,0.95,52.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_F,0.95,58.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,High_G,0.95,66.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_G,0.95,76.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,High_B,0.95,195.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_B,0.95,196.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,High_C,0.95,199.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_C,0.95,205.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,High_D,0.95,215.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_D,0.95,228.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,High_E,0.95,248.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_E,0.95,271.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,High_F,0.95,304.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_F,0.95,341.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,High_G,0.95,392.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_G,0.95,446.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,High_B,0.95,234.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_B,0.95,235.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,High_C,0.95,239.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_C,0.95,245.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,High_D,0.95,257.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_D,0.95,272.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,High_E,0.95,296.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_E,0.95,323.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,High_F,0.95,362.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_F,0.95,405.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,High_G,0.95,464.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_G,0.95,528.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,High_B,0.95,250.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_B,0.95,251.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,High_C,0.95,255.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_C,0.95,262.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,High_D,0.95,275.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_D,0.95,290.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,High_E,0.95,315.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_E,0.95,344.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,High_F,0.95,385.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_F,0.95,431.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,High_G,0.95,494.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_G,0.95,562.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,High_B,0.95,242.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_B,0.95,243.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,High_C,0.95,247.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_C,0.95,254.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,High_D,0.95,266.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_D,0.95,281.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,High_E,0.95,305.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_E,0.95,333.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,High_F,0.95,373.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_F,0.95,418.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,High_G,0.95,479.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_G,0.95,545.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,High_B,0.95,162.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_B,0.95,162.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,High_C,0.95,165.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_C,0.95,169.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,High_D,0.95,177.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_D,0.95,187.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,High_E,0.95,203.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_E,0.95,222.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,High_F,0.95,249.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_F,0.95,280.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,High_G,0.95,321.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_G,0.95,367.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,High_B,0.95,212.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_B,0.95,213,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,High_C,0.95,215.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_C,0.95,221,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,High_D,0.95,231.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_D,0.95,243.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,High_E,0.95,264.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_E,0.95,288.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,High_F,0.95,322.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_F,0.95,361.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,High_G,0.95,414.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_G,0.95,471.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,High_B,0.95,201.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_B,0.95,201.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,High_C,0.95,204.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_C,0.95,209.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,High_D,0.95,219.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_D,0.95,231.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,High_E,0.95,250.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_E,0.95,273.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,High_F,0.95,306.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_F,0.95,343.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,High_G,0.95,393.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_G,0.95,448.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,High_B,0.95,155,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_B,0.95,155.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,High_C,0.95,157.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_C,0.95,161.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,High_D,0.95,169.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_D,0.95,179,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,High_E,0.95,194.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_E,0.95,212.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,High_F,0.95,238.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_F,0.95,267.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,High_G,0.95,307.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_G,0.95,350.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,High_B,0.95,78.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_B,0.95,78.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,High_D,0.95,85.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_D,0.95,90.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,High_E,0.95,97.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_E,0.95,106.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,High_F,0.95,119.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_F,0.95,134.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,High_G,0.95,153.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_G,0.95,175.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,High_B,0.95,101.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_B,0.95,101.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,High_C,0.95,102.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_C,0.95,104.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,High_D,0.95,109.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_D,0.95,115.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,High_E,0.95,125.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_E,0.95,136.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,High_F,0.95,153,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_F,0.95,171.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,High_G,0.95,196.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_G,0.95,223.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,High_B,0.95,56.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_B,0.95,56.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,High_C,0.95,57.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_C,0.95,58.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,High_D,0.95,61.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_D,0.95,65.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,High_E,0.95,70.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_E,0.95,77.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,High_F,0.95,86.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_F,0.95,97.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,High_G,0.95,111.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_G,0.95,127.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,High_B,0.95,52.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_B,0.95,52.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,High_C,0.95,53,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_C,0.95,54.2,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,High_D,0.95,56.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_D,0.95,59.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,High_E,0.95,64.4,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_E,0.95,70.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,High_F,0.95,78.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_F,0.95,87.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,High_G,0.95,100.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_G,0.95,114.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,High_B,0.95,43.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_B,0.95,43.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,High_C,0.95,44,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_C,0.95,45,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,High_D,0.95,46.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_D,0.95,49.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,High_E,0.95,53.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_E,0.95,58.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,High_F,0.95,65.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_F,0.95,73.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,High_G,0.95,83.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_G,0.95,95.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,High_B,0.95,35.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_B,0.95,35.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,High_C,0.95,35.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_C,0.95,36.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,High_D,0.95,37.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_D,0.95,39.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,High_E,0.95,42.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_E,0.95,46.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,High_F,0.95,52.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_F,0.95,58.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,High_G,0.95,66.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_G,0.95,76.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,High_B,0.95,195.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_B,0.95,196.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,High_C,0.95,199.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_C,0.95,205.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,High_D,0.95,215.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_D,0.95,228.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,High_E,0.95,248.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_E,0.95,271.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,High_F,0.95,304.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_F,0.95,341.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,High_G,0.95,392.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_G,0.95,446.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,High_B,0.95,234.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_B,0.95,235.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,High_C,0.95,239.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_C,0.95,245.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,High_D,0.95,257.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_D,0.95,272.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,High_E,0.95,296.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_E,0.95,323.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,High_F,0.95,362.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_F,0.95,405.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,High_G,0.95,464.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_G,0.95,528.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,High_B,0.95,250.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_B,0.95,251.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,High_C,0.95,255.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_C,0.95,262.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,High_D,0.95,275.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_D,0.95,290.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,High_E,0.95,315.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_E,0.95,344.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,High_F,0.95,385.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_F,0.95,431.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,High_G,0.95,494.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_G,0.95,562.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,High_B,0.95,242.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_B,0.95,243.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,High_C,0.95,247.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_C,0.95,254.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,High_D,0.95,266.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_D,0.95,281.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,High_E,0.95,305.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_E,0.95,333.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,High_F,0.95,373.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_F,0.95,418.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,High_G,0.95,479.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_G,0.95,545.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,High_B,0.95,162.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,Low_B,0.95,162.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,High_C,0.95,165.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,Low_C,0.95,169.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,High_D,0.95,177.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,Low_D,0.95,187.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,High_E,0.95,203.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,Low_E,0.95,222.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,High_F,0.95,249.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,Low_F,0.95,280.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,High_G,0.95,321.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,73-97,Low_G,0.95,367.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,High_B,0.95,212.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,Low_B,0.95,213,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,High_C,0.95,215.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,Low_C,0.95,221,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,High_D,0.95,231.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,Low_D,0.95,243.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,High_E,0.95,264.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,Low_E,0.95,288.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,High_F,0.95,322.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,Low_F,0.95,361.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,High_G,0.95,414.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,73-97,Low_G,0.95,471.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,High_B,0.95,201.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,Low_B,0.95,201.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,High_C,0.95,204.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,Low_C,0.95,209.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,High_D,0.95,219.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,Low_D,0.95,231.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,High_E,0.95,250.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,Low_E,0.95,273.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,High_F,0.95,306.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,Low_F,0.95,343.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,High_G,0.95,393.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,73-97,Low_G,0.95,448.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,High_B,0.95,155,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,Low_B,0.95,155.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,High_C,0.95,157.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,Low_C,0.95,161.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,High_D,0.95,169.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,Low_D,0.95,179,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,High_E,0.95,194.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,Low_E,0.95,212.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,High_F,0.95,238.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,Low_F,0.95,267.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,High_G,0.95,307.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,73-97,Low_G,0.95,350.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,High_B,0.95,78.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,Low_B,0.95,78.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,High_D,0.95,85.3,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,Low_D,0.95,90.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,High_E,0.95,97.7,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,Low_E,0.95,106.7,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,High_F,0.95,119.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,Low_F,0.95,134.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,High_G,0.95,153.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,73-97,Low_G,0.95,175.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,High_B,0.95,101.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,Low_B,0.95,101.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,High_C,0.95,102.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,Low_C,0.95,104.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,High_D,0.95,109.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,Low_D,0.95,115.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,High_E,0.95,125.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,Low_E,0.95,136.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,High_F,0.95,153,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,Low_F,0.95,171.3,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,High_G,0.95,196.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,73-97,Low_G,0.95,223.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,High_B,0.95,56.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,Low_B,0.95,56.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,High_C,0.95,57.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,Low_C,0.95,58.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,High_D,0.95,61.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,Low_D,0.95,65.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,High_E,0.95,70.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,Low_E,0.95,77.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,High_F,0.95,86.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,Low_F,0.95,97.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,High_G,0.95,111.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,73-97,Low_G,0.95,127.3,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,High_B,0.95,52.6,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,Low_B,0.95,52.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,High_C,0.95,53,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,Low_C,0.95,54.2,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,High_D,0.95,56.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,Low_D,0.95,59.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,High_E,0.95,64.4,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,Low_E,0.95,70.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,High_F,0.95,78.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,Low_F,0.95,87.8,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,High_G,0.95,100.6,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,73-97,Low_G,0.95,114.7,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,High_B,0.95,43.6,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,Low_B,0.95,43.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,High_C,0.95,44,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,Low_C,0.95,45,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,High_D,0.95,46.9,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,Low_D,0.95,49.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,High_E,0.95,53.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,Low_E,0.95,58.3,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,High_F,0.95,65.3,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,Low_F,0.95,73.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,High_G,0.95,83.8,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,73-97,Low_G,0.95,95.5,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,High_B,0.95,35.5,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,Low_B,0.95,35.3,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,High_C,0.95,35.6,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,Low_C,0.95,36.3,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,High_D,0.95,37.8,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,Low_D,0.95,39.7,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,High_E,0.95,42.9,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,Low_E,0.95,46.6,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,High_F,0.95,52.1,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,Low_F,0.95,58.3,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,High_G,0.95,66.8,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,73-97,Low_G,0.95,76.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,High_B,0.95,195.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,Low_B,0.95,196.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,High_C,0.95,199.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,Low_C,0.95,205.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,High_D,0.95,215.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,Low_D,0.95,228.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,High_E,0.95,248.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,Low_E,0.95,271.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,High_F,0.95,304.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,Low_F,0.95,341.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,High_G,0.95,392.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,73-97,Low_G,0.95,446.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,High_B,0.95,234.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,Low_B,0.95,235.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,High_C,0.95,239.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,Low_C,0.95,245.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,High_D,0.95,257.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,Low_D,0.95,272.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,High_E,0.95,296.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,Low_E,0.95,323.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,High_F,0.95,362.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,Low_F,0.95,405.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,High_G,0.95,464.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,73-97,Low_G,0.95,528.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,High_B,0.95,250.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,Low_B,0.95,251.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,High_C,0.95,255.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,Low_C,0.95,262.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,High_D,0.95,275.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,Low_D,0.95,290.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,High_E,0.95,315.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,Low_E,0.95,344.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,High_F,0.95,385.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,Low_F,0.95,431.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,High_G,0.95,494.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,73-97,Low_G,0.95,562.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,High_B,0.95,242.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,Low_B,0.95,243.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,High_C,0.95,247.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,Low_C,0.95,254.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,High_D,0.95,266.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,Low_D,0.95,281.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,High_E,0.95,305.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,Low_E,0.95,333.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,High_F,0.95,373.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,Low_F,0.95,418.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,High_G,0.95,479.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,73-97,Low_G,0.95,545.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,High_B,0.95,162.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_B,0.95,162.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,High_C,0.95,165.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_C,0.95,169.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,High_D,0.95,177.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_D,0.95,187.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,High_E,0.95,203.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_E,0.95,222.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,High_F,0.95,249.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_F,0.95,280.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,High_G,0.95,321.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,73-97,Low_G,0.95,367.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,High_B,0.95,212.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_B,0.95,213,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,High_C,0.95,215.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_C,0.95,221,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,High_D,0.95,231.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_D,0.95,243.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,High_E,0.95,264.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_E,0.95,288.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,High_F,0.95,322.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_F,0.95,361.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,High_G,0.95,414.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,73-97,Low_G,0.95,471.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,High_B,0.95,201.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_B,0.95,201.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,High_C,0.95,204.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_C,0.95,209.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,High_D,0.95,219.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_D,0.95,231.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,High_E,0.95,250.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_E,0.95,273.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,High_F,0.95,306.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_F,0.95,343.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,High_G,0.95,393.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,73-97,Low_G,0.95,448.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,High_B,0.95,155,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_B,0.95,155.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,High_C,0.95,157.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_C,0.95,161.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,High_D,0.95,169.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_D,0.95,179,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,High_E,0.95,194.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_E,0.95,212.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,High_F,0.95,238.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_F,0.95,267.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,High_G,0.95,307.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,73-97,Low_G,0.95,350.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,High_B,0.95,78.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_B,0.95,78.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,High_C,0.95,79.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_C,0.95,81.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,High_D,0.95,85.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_D,0.95,90.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,High_E,0.95,97.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_E,0.95,106.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,High_F,0.95,119.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_F,0.95,134.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,High_G,0.95,153.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,73-97,Low_G,0.95,175.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,High_B,0.95,101.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_B,0.95,101.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,High_C,0.95,102.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_C,0.95,104.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,High_D,0.95,109.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_D,0.95,115.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,High_E,0.95,125.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_E,0.95,136.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,High_F,0.95,153,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_F,0.95,171.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,High_G,0.95,196.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,73-97,Low_G,0.95,223.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,High_B,0.95,56.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_B,0.95,56.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,High_C,0.95,57.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_C,0.95,58.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,High_D,0.95,61.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_D,0.95,65.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,High_E,0.95,70.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_E,0.95,77.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,High_F,0.95,86.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_F,0.95,97.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,High_G,0.95,111.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,73-97,Low_G,0.95,127.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,High_B,0.95,52.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_B,0.95,52.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,High_C,0.95,53,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_C,0.95,54.2,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,High_D,0.95,56.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_D,0.95,59.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,High_E,0.95,64.4,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_E,0.95,70.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,High_F,0.95,78.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_F,0.95,87.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,High_G,0.95,100.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,73-97,Low_G,0.95,114.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,High_B,0.95,43.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_B,0.95,43.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,High_C,0.95,44,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_C,0.95,45,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,High_D,0.95,46.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_D,0.95,49.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,High_E,0.95,53.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_E,0.95,58.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,High_F,0.95,65.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_F,0.95,73.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,High_G,0.95,83.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,73-97,Low_G,0.95,95.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,High_B,0.95,35.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_B,0.95,35.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,High_C,0.95,35.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_C,0.95,36.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,High_D,0.95,37.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_D,0.95,39.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,High_E,0.95,42.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_E,0.95,46.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,High_F,0.95,52.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_F,0.95,58.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,High_G,0.95,66.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,73-97,Low_G,0.95,76.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,High_B,0.95,195.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_B,0.95,196.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,High_C,0.95,199.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_C,0.95,205.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,High_D,0.95,215.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_D,0.95,228.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,High_E,0.95,248.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_E,0.95,271.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,High_F,0.95,304.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_F,0.95,341.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,High_G,0.95,392.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,73-97,Low_G,0.95,446.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,High_B,0.95,234.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_B,0.95,235.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,High_C,0.95,239.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_C,0.95,245.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,High_D,0.95,257.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_D,0.95,272.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,High_E,0.95,296.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_E,0.95,323.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,High_F,0.95,362.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_F,0.95,405.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,High_G,0.95,464.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,73-97,Low_G,0.95,528.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,High_B,0.95,250.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_B,0.95,251.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,High_C,0.95,255.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_C,0.95,262.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,High_D,0.95,275.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_D,0.95,290.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,High_E,0.95,315.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_E,0.95,344.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,High_F,0.95,385.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_F,0.95,431.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,High_G,0.95,494.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,73-97,Low_G,0.95,562.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,High_B,0.95,242.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_B,0.95,243.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,High_C,0.95,247.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_C,0.95,254.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,High_D,0.95,266.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_D,0.95,281.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,High_E,0.95,305.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_E,0.95,333.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,High_F,0.95,373.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_F,0.95,418.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,High_G,0.95,479.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,73-97,Low_G,0.95,545.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,High_B,0.95,186.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,Low_B,0.95,187.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,High_C,0.95,191.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,Low_C,0.95,196.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,High_D,0.95,206.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,Low_D,0.95,218.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,High_E,0.95,237.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,Low_E,0.95,259.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,High_F,0.95,291.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,Low_F,0.95,325.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,High_G,0.95,373.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,98-199,Low_G,0.95,424.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,High_B,0.95,244.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,Low_B,0.95,245.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,High_C,0.95,250.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,Low_C,0.95,257,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,High_D,0.95,269.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,Low_D,0.95,284.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,High_E,0.95,308.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,Low_E,0.95,336.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,High_F,0.95,376.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,Low_F,0.95,421.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,High_G,0.95,481.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,98-199,Low_G,0.95,547.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,High_B,0.95,232,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,Low_B,0.95,232.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,High_C,0.95,237.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,Low_C,0.95,243.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,High_D,0.95,255.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,Low_D,0.95,270.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,High_E,0.95,293.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,Low_E,0.95,319.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,High_F,0.95,357.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,Low_F,0.95,400,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,High_G,0.95,457.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,98-199,Low_G,0.95,520,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,High_B,0.95,178,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,Low_B,0.95,178.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,High_C,0.95,182.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,Low_C,0.95,187.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,High_D,0.95,197,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,Low_D,0.95,208.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,High_E,0.95,226.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,Low_E,0.95,247.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,High_F,0.95,278,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,Low_F,0.95,311.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,High_G,0.95,356.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,98-199,Low_G,0.95,405.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,High_B,0.95,90.3,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,Low_B,0.95,90.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,High_C,0.95,92.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,Low_C,0.95,94.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,High_D,0.95,99,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,Low_D,0.95,104.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,High_E,0.95,113.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,Low_E,0.95,124.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,High_F,0.95,139.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,Low_F,0.95,155.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,High_G,0.95,178.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,98-199,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,High_B,0.95,116.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,Low_B,0.95,116.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,High_C,0.95,118.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,Low_C,0.95,121.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,High_D,0.95,127.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,Low_D,0.95,134.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,High_E,0.95,145.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,Low_E,0.95,159,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,High_F,0.95,178.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,Low_F,0.95,199.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,High_G,0.95,228.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,98-199,Low_G,0.95,259.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,High_B,0.95,64.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,Low_B,0.95,65.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,High_C,0.95,66.3,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,Low_C,0.95,68.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,High_D,0.95,71.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,Low_D,0.95,75.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,High_E,0.95,82.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,Low_E,0.95,89.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,High_F,0.95,100.7,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,Low_F,0.95,112.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,High_G,0.95,129.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,98-199,Low_G,0.95,147.4,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,High_B,0.95,60.3,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,Low_B,0.95,60.3,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,High_C,0.95,61.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,Low_C,0.95,62.6,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,High_D,0.95,65.4,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,Low_D,0.95,69.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,High_E,0.95,74.9,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,Low_E,0.95,81.7,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,High_F,0.95,91.6,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,Low_F,0.95,102.6,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,High_G,0.95,117.7,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,98-199,Low_G,0.95,134.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,High_B,0.95,51.4,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,Low_B,0.95,51.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,High_C,0.95,51.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,Low_C,0.95,52.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,High_D,0.95,54.7,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,Low_D,0.95,57.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,High_E,0.95,62.2,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,Low_E,0.95,67.8,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,High_F,0.95,76,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,Low_F,0.95,85.2,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,High_G,0.95,97.9,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,98-199,Low_G,0.95,111.8,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,High_B,0.95,40.8,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,Low_B,0.95,40.7,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,High_C,0.95,41.1,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,Low_C,0.95,42,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,High_D,0.95,43.8,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,Low_D,0.95,46.2,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,High_E,0.95,50,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,Low_E,0.95,54.5,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,High_F,0.95,61.1,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,Low_F,0.95,68.5,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,High_G,0.95,78.6,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,98-199,Low_G,0.95,89.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,High_B,0.95,222.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,Low_B,0.95,224.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,High_C,0.95,229.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,Low_C,0.95,237,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,High_D,0.95,250,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,Low_D,0.95,265.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,High_E,0.95,289.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,Low_E,0.95,316.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,High_F,0.95,355.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,Low_F,0.95,398.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,High_G,0.95,456.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,98-199,Low_G,0.95,518.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,High_B,0.95,267,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,Low_B,0.95,269.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,High_C,0.95,275.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,Low_C,0.95,284,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,High_D,0.95,299.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,Low_D,0.95,317.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,High_E,0.95,345.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,Low_E,0.95,377.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,High_F,0.95,423.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,Low_F,0.95,473.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,High_G,0.95,541.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,98-199,Low_G,0.95,614.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,High_B,0.95,285.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,Low_B,0.95,287.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,High_C,0.95,294.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,Low_C,0.95,303.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,High_D,0.95,319.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,Low_D,0.95,338.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,High_E,0.95,368.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,Low_E,0.95,402.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,High_F,0.95,450.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,Low_F,0.95,503.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,High_G,0.95,575.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,98-199,Low_G,0.95,653.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,High_B,0.95,276.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,Low_B,0.95,278.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,High_C,0.95,284.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,Low_C,0.95,293.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,High_D,0.95,309.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,Low_D,0.95,328,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,High_E,0.95,357,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,Low_E,0.95,389.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,High_F,0.95,436.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,Low_F,0.95,488.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,High_G,0.95,558.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,98-199,Low_G,0.95,634.3,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,High_B,0.95,135.7,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,Low_B,0.95,135.8,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,High_C,0.95,137.8,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,Low_C,0.95,141.3,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,High_D,0.95,147.9,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,Low_D,0.95,156.3,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,High_E,0.95,169.7,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,Low_E,0.95,185.2,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,High_F,0.95,207.7,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,Low_F,0.95,232.7,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,High_G,0.95,267,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,98-199,Low_G,0.95,304.3,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,High_B,0.95,145.9,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,Low_B,0.95,146.1,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,High_C,0.95,148.2,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,Low_C,0.95,151.8,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,High_D,0.95,158.9,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,Low_D,0.95,167.9,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,High_E,0.95,182.2,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,Low_E,0.95,198.8,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,High_F,0.95,222.8,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,Low_F,0.95,249.6,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,High_G,0.95,286.3,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,98-199,Low_G,0.95,326.2,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,High_B,0.95,155.7,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,Low_B,0.95,155.9,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,High_C,0.95,158.1,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,Low_C,0.95,161.9,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,High_D,0.95,169.4,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,Low_D,0.95,178.9,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,High_E,0.95,194.1,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,Low_E,0.95,211.7,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,High_F,0.95,237.2,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,Low_F,0.95,265.7,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,High_G,0.95,304.6,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,98-199,Low_G,0.95,347.1,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,High_B,0.95,19.3,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,Low_B,0.95,19.1,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,High_C,0.95,19.2,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,Low_C,0.95,19.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,High_D,0.95,20.4,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,Low_D,0.95,21.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,High_E,0.95,23.5,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,Low_E,0.95,25.8,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,High_F,0.95,29.3,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,Low_F,0.95,33.1,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,High_G,0.95,38.4,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,98-199,Low_G,0.95,44.3,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,High_B,0.95,28.8,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,Low_B,0.95,28.7,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,High_C,0.95,29,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,Low_C,0.95,29.6,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,High_D,0.95,30.9,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,Low_D,0.95,32.6,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,High_E,0.95,35.3,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,Low_E,0.95,38.5,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,High_F,0.95,43.2,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,Low_F,0.95,48.4,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,High_G,0.95,55.6,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,98-199,Low_G,0.95,63.5,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,98-199,High_D,0.97,49.4,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,98-199,Low_D,0.97,52.2,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,98-199,High_E,0.97,56.7,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,98-199,Low_E,0.97,62,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,98-199,High_F,0.97,69.6,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,98-199,Low_F,0.97,78.2,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,98-199,High_G,0.97,89.9,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,98-199,Low_G,0.97,102.8,N/A +Loft Insulation,LI_greater100,N/A,N/A,98-199,High_D,0.97,12,N/A +Loft Insulation,LI_greater100,N/A,N/A,98-199,Low_D,0.97,12.7,N/A +Loft Insulation,LI_greater100,N/A,N/A,98-199,High_E,0.97,13.7,N/A +Loft Insulation,LI_greater100,N/A,N/A,98-199,Low_E,0.97,15,N/A +Loft Insulation,LI_greater100,N/A,N/A,98-199,High_F,0.97,16.9,N/A +Loft Insulation,LI_greater100,N/A,N/A,98-199,Low_F,0.97,19,N/A +Loft Insulation,LI_greater100,N/A,N/A,98-199,High_G,0.97,21.9,N/A +Loft Insulation,LI_greater100,N/A,N/A,98-199,Low_G,0.97,25,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,98-199,High_D,0.86,185.2,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,98-199,Low_D,0.86,192.4,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,98-199,High_E,0.86,205.6,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,98-199,Low_E,0.86,222.2,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,98-199,High_F,0.86,247.6,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,98-199,Low_F,0.86,277,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,98-199,High_G,0.86,318.3,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,98-199,Low_G,0.86,364.4,N/A +Other Insulation,RIRI_res_in,N/A,N/A,98-199,High_D,0.86,191.9,N/A +Other Insulation,RIRI_res_in,N/A,N/A,98-199,Low_D,0.86,199.4,N/A +Other Insulation,RIRI_res_in,N/A,N/A,98-199,High_E,0.86,213,N/A +Other Insulation,RIRI_res_in,N/A,N/A,98-199,Low_E,0.86,230.1,N/A +Other Insulation,RIRI_res_in,N/A,N/A,98-199,High_F,0.86,256.3,N/A +Other Insulation,RIRI_res_in,N/A,N/A,98-199,Low_F,0.86,286.7,N/A +Other Insulation,RIRI_res_in,N/A,N/A,98-199,High_G,0.86,329.5,N/A +Other Insulation,RIRI_res_in,N/A,N/A,98-199,Low_G,0.86,377.1,N/A +Other Insulation,FRI,N/A,N/A,98-199,High_D,0.99,199,N/A +Other Insulation,FRI,N/A,N/A,98-199,Low_D,0.99,210.3,N/A +Other Insulation,FRI,N/A,N/A,98-199,High_E,0.99,228.5,N/A +Other Insulation,FRI,N/A,N/A,98-199,Low_E,0.99,249.7,N/A +Other Insulation,FRI,N/A,N/A,98-199,High_F,0.99,280.5,N/A +Other Insulation,FRI,N/A,N/A,98-199,Low_F,0.99,315,N/A +Other Insulation,FRI,N/A,N/A,98-199,High_G,0.99,362.3,N/A +Other Insulation,FRI,N/A,N/A,98-199,Low_G,0.99,414,N/A +Other Insulation,UFI,N/A,N/A,98-199,High_D,0.97,48.2,N/A +Other Insulation,UFI,N/A,N/A,98-199,Low_D,0.97,51.2,N/A +Other Insulation,UFI,N/A,N/A,98-199,High_E,0.97,56.2,N/A +Other Insulation,UFI,N/A,N/A,98-199,Low_E,0.97,62,N/A +Other Insulation,UFI,N/A,N/A,98-199,High_F,0.97,70.6,N/A +Other Insulation,UFI,N/A,N/A,98-199,Low_F,0.97,80.3,N/A +Other Insulation,UFI,N/A,N/A,98-199,High_G,0.97,93.7,N/A +Other Insulation,UFI,N/A,N/A,98-199,Low_G,0.97,108.4,N/A +Other Insulation,SFI,N/A,N/A,98-199,High_D,0.98,31.6,N/A +Other Insulation,SFI,N/A,N/A,98-199,Low_D,0.98,33.4,N/A +Other Insulation,SFI,N/A,N/A,98-199,High_E,0.98,36.3,N/A +Other Insulation,SFI,N/A,N/A,98-199,Low_E,0.98,39.9,N/A +Other Insulation,SFI,N/A,N/A,98-199,High_F,0.98,45,N/A +Other Insulation,SFI,N/A,N/A,98-199,Low_F,0.98,50.8,N/A +Other Insulation,SFI,N/A,N/A,98-199,High_G,0.98,58.9,N/A +Other Insulation,SFI,N/A,N/A,98-199,Low_G,0.98,67.7,N/A +Other Insulation,DP,N/A,N/A,98-199,High_D,1,24.4,N/A +Other Insulation,DP,N/A,N/A,98-199,Low_D,1,25.8,N/A +Other Insulation,DP,N/A,N/A,98-199,High_E,1,28.2,N/A +Other Insulation,DP,N/A,N/A,98-199,Low_E,1,31,N/A +Other Insulation,DP,N/A,N/A,98-199,High_F,1,35.1,N/A +Other Insulation,DP,N/A,N/A,98-199,Low_F,1,39.7,N/A +Other Insulation,DP,N/A,N/A,98-199,High_G,1,46,N/A +Other Insulation,DP,N/A,N/A,98-199,Low_G,1,52.9,N/A +Other Insulation,WG_singletodouble,N/A,N/A,98-199,High_D,1,81.1,N/A +Other Insulation,WG_singletodouble,N/A,N/A,98-199,Low_D,1,86,N/A +Other Insulation,WG_singletodouble,N/A,N/A,98-199,High_E,1,93.8,N/A +Other Insulation,WG_singletodouble,N/A,N/A,98-199,Low_E,1,103,N/A +Other Insulation,WG_singletodouble,N/A,N/A,98-199,High_F,1,116.4,N/A +Other Insulation,WG_singletodouble,N/A,N/A,98-199,Low_F,1,131.4,N/A +Other Insulation,WG_singletodouble,N/A,N/A,98-199,High_G,1,152.1,N/A +Other Insulation,WG_singletodouble,N/A,N/A,98-199,Low_G,1,174.7,N/A +Other Insulation,WG_improveddouble,N/A,N/A,98-199,High_D,1,15.1,N/A +Other Insulation,WG_improveddouble,N/A,N/A,98-199,Low_D,1,16,N/A +Other Insulation,WG_improveddouble,N/A,N/A,98-199,High_E,1,17.4,N/A +Other Insulation,WG_improveddouble,N/A,N/A,98-199,Low_E,1,19.1,N/A +Other Insulation,WG_improveddouble,N/A,N/A,98-199,High_F,1,21.5,N/A +Other Insulation,WG_improveddouble,N/A,N/A,98-199,Low_F,1,24.2,N/A +Other Insulation,WG_improveddouble,N/A,N/A,98-199,High_G,1,28,N/A +Other Insulation,WG_improveddouble,N/A,N/A,98-199,Low_G,1,32.1,N/A +Other Insulation,HPED,N/A,N/A,98-199,High_D,1,7.9,N/A +Other Insulation,HPED,N/A,N/A,98-199,Low_D,1,8.4,N/A +Other Insulation,HPED,N/A,N/A,98-199,High_E,1,9.1,N/A +Other Insulation,HPED,N/A,N/A,98-199,Low_E,1,10,N/A +Other Insulation,HPED,N/A,N/A,98-199,High_F,1,11.3,N/A +Other Insulation,HPED,N/A,N/A,98-199,Low_F,1,12.8,N/A +Other Insulation,HPED,N/A,N/A,98-199,High_G,1,14.9,N/A +Other Insulation,HPED,N/A,N/A,98-199,Low_G,1,17.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,High_B,0.95,186.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,Low_B,0.95,187.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,High_C,0.95,191.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,Low_C,0.95,196.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,High_D,0.95,206.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,Low_D,0.95,218.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,High_E,0.95,237.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,Low_E,0.95,259.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,High_F,0.95,291.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,Low_F,0.95,325.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,High_G,0.95,373.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,98-199,Low_G,0.95,424.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,High_B,0.95,244.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,Low_B,0.95,245.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,High_C,0.95,250.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,Low_C,0.95,257,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,High_D,0.95,269.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,Low_D,0.95,284.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,High_E,0.95,308.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,Low_E,0.95,336.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,High_F,0.95,376.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,Low_F,0.95,421.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,High_G,0.95,481.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,98-199,Low_G,0.95,547.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,High_B,0.95,232,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,Low_B,0.95,232.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,High_C,0.95,237.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,Low_C,0.95,243.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,High_D,0.95,255.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,Low_D,0.95,270.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,High_E,0.95,293.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,Low_E,0.95,319.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,High_F,0.95,357.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,Low_F,0.95,400,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,High_G,0.95,457.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,98-199,Low_G,0.95,520,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,High_B,0.95,178,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,Low_B,0.95,178.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,High_C,0.95,182.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,Low_C,0.95,187.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,High_D,0.95,197,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,Low_D,0.95,208.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,High_E,0.95,226.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,Low_E,0.95,247.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,High_F,0.95,278,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,Low_F,0.95,311.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,High_G,0.95,356.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,98-199,Low_G,0.95,405.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,High_B,0.95,90.3,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,Low_B,0.95,90.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,High_C,0.95,92.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,Low_C,0.95,94.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,High_D,0.95,99,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,Low_D,0.95,104.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,High_E,0.95,113.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,Low_E,0.95,124.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,High_F,0.95,139.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,Low_F,0.95,155.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,High_G,0.95,178.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,98-199,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,High_B,0.95,116.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,Low_B,0.95,116.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,High_C,0.95,118.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,Low_C,0.95,121.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,High_D,0.95,127.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,Low_D,0.95,134.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,High_E,0.95,145.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,Low_E,0.95,159,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,High_F,0.95,178.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,Low_F,0.95,199.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,High_G,0.95,228.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,98-199,Low_G,0.95,259.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,High_B,0.95,64.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,Low_B,0.95,65.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,High_C,0.95,66.3,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,Low_C,0.95,68.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,High_D,0.95,71.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,Low_D,0.95,75.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,High_E,0.95,82.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,Low_E,0.95,89.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,High_F,0.95,100.7,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,Low_F,0.95,112.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,High_G,0.95,129.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,98-199,Low_G,0.95,147.4,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,High_B,0.95,60.3,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,Low_B,0.95,60.3,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,High_C,0.95,61.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,Low_C,0.95,62.6,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,High_D,0.95,65.4,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,Low_D,0.95,69.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,High_E,0.95,74.9,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,Low_E,0.95,81.7,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,High_F,0.95,91.6,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,Low_F,0.95,102.6,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,High_G,0.95,117.7,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,98-199,Low_G,0.95,134.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,High_B,0.95,51.4,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,Low_B,0.95,51.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,High_C,0.95,51.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,Low_C,0.95,52.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,High_D,0.95,54.7,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,Low_D,0.95,57.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,High_E,0.95,62.2,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,Low_E,0.95,67.8,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,High_F,0.95,76,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,Low_F,0.95,85.2,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,High_G,0.95,97.9,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,98-199,Low_G,0.95,111.8,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,High_B,0.95,40.8,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,Low_B,0.95,40.7,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,High_C,0.95,41.1,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,Low_C,0.95,42,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,High_D,0.95,43.8,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,Low_D,0.95,46.2,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,High_E,0.95,50,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,Low_E,0.95,54.5,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,High_F,0.95,61.1,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,Low_F,0.95,68.5,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,High_G,0.95,78.6,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,98-199,Low_G,0.95,89.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,High_B,0.95,222.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,Low_B,0.95,224.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,High_C,0.95,229.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,Low_C,0.95,237,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,High_D,0.95,250,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,Low_D,0.95,265.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,High_E,0.95,289.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,Low_E,0.95,316.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,High_F,0.95,355.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,Low_F,0.95,398.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,High_G,0.95,456.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,98-199,Low_G,0.95,518.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,High_B,0.95,267,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,Low_B,0.95,269.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,High_C,0.95,275.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,Low_C,0.95,284,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,High_D,0.95,299.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,Low_D,0.95,317.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,High_E,0.95,345.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,Low_E,0.95,377.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,High_F,0.95,423.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,Low_F,0.95,473.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,High_G,0.95,541.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,98-199,Low_G,0.95,614.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,High_B,0.95,285.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,Low_B,0.95,287.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,High_C,0.95,294.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,Low_C,0.95,303.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,High_D,0.95,319.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,Low_D,0.95,338.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,High_E,0.95,368.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,Low_E,0.95,402.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,High_F,0.95,450.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,Low_F,0.95,503.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,High_G,0.95,575.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,98-199,Low_G,0.95,653.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,High_B,0.95,276.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,Low_B,0.95,278.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,High_C,0.95,284.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,Low_C,0.95,293.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,High_D,0.95,309.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,Low_D,0.95,328,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,High_E,0.95,357,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,Low_E,0.95,389.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,High_F,0.95,436.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,Low_F,0.95,488.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,High_G,0.95,558.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,98-199,Low_G,0.95,634.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,High_B,0.95,186.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_B,0.95,187.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,High_C,0.95,191.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_C,0.95,196.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,High_D,0.95,206.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_D,0.95,218.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,High_E,0.95,237.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_E,0.95,259.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,High_F,0.95,291.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_F,0.95,325.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,High_G,0.95,373.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_G,0.95,424.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,High_B,0.95,244.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_B,0.95,245.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,High_C,0.95,250.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_C,0.95,257,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,High_D,0.95,269.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_D,0.95,284.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,High_E,0.95,308.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_E,0.95,336.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,High_F,0.95,376.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_F,0.95,421.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,High_G,0.95,481.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_G,0.95,547.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,High_B,0.95,232,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_B,0.95,232.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,High_C,0.95,237.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_C,0.95,243.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,High_D,0.95,255.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_D,0.95,270.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,High_E,0.95,293.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_E,0.95,319.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,High_F,0.95,357.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_F,0.95,400,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,High_G,0.95,457.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_G,0.95,520,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,High_B,0.95,178,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_B,0.95,178.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,High_C,0.95,182.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_C,0.95,187.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,High_D,0.95,197,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_D,0.95,208.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,High_E,0.95,226.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_E,0.95,247.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,High_F,0.95,278,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_F,0.95,311.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,High_G,0.95,356.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_G,0.95,405.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,High_B,0.95,90.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_B,0.95,90.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,High_C,0.95,92.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_C,0.95,94.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,High_D,0.95,99,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_D,0.95,104.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,High_E,0.95,113.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_E,0.95,124.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,High_F,0.95,139.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_F,0.95,155.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,High_G,0.95,178.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,High_B,0.95,116.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_B,0.95,116.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,High_C,0.95,118.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_C,0.95,121.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,High_D,0.95,127.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_D,0.95,134.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,High_E,0.95,145.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_E,0.95,159,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,High_F,0.95,178.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_F,0.95,199.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,High_G,0.95,228.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_G,0.95,259.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,High_B,0.95,64.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_B,0.95,65.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,High_C,0.95,66.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_C,0.95,68.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,High_D,0.95,71.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_D,0.95,75.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,High_E,0.95,82.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_E,0.95,89.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,High_F,0.95,100.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_F,0.95,112.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,High_G,0.95,129.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_G,0.95,147.4,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,High_B,0.95,60.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_B,0.95,60.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,High_C,0.95,61.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_C,0.95,62.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,High_D,0.95,65.4,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_D,0.95,69.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,High_E,0.95,74.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_E,0.95,81.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,High_F,0.95,91.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_F,0.95,102.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,High_G,0.95,117.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_G,0.95,134.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,High_B,0.95,51.4,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_B,0.95,51.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,High_C,0.95,51.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_C,0.95,52.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,High_D,0.95,54.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_D,0.95,57.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,High_E,0.95,62.2,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_E,0.95,67.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,High_F,0.95,76,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_F,0.95,85.2,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,High_G,0.95,97.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_G,0.95,111.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,High_B,0.95,40.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_B,0.95,40.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,High_C,0.95,41.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_C,0.95,42,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,High_D,0.95,43.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_D,0.95,46.2,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,High_E,0.95,50,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_E,0.95,54.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,High_F,0.95,61.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_F,0.95,68.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,High_G,0.95,78.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_G,0.95,89.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,High_B,0.95,222.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_B,0.95,224.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,High_C,0.95,229.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_C,0.95,237,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,High_D,0.95,250,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_D,0.95,265.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,High_E,0.95,289.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_E,0.95,316.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,High_F,0.95,355.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_F,0.95,398.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,High_G,0.95,456.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_G,0.95,518.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,High_B,0.95,267,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_B,0.95,269.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,High_C,0.95,275.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_C,0.95,284,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,High_D,0.95,299.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_D,0.95,317.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,High_E,0.95,345.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_E,0.95,377.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,High_F,0.95,423.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_F,0.95,473.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,High_G,0.95,541.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_G,0.95,614.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,High_B,0.95,285.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_B,0.95,287.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,High_C,0.95,294.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_C,0.95,303.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,High_D,0.95,319.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_D,0.95,338.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,High_E,0.95,368.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_E,0.95,402.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,High_F,0.95,450.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_F,0.95,503.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,High_G,0.95,575.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_G,0.95,653.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,High_B,0.95,276.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_B,0.95,278.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,High_C,0.95,284.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_C,0.95,293.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,High_D,0.95,309.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_D,0.95,328,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,High_E,0.95,357,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_E,0.95,389.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,High_F,0.95,436.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_F,0.95,488.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,High_G,0.95,558.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_G,0.95,634.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,High_B,0.95,186.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_B,0.95,187.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,High_C,0.95,191.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_C,0.95,196.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,High_D,0.95,206.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_D,0.95,218.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,High_E,0.95,237.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_E,0.95,259.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,High_F,0.95,291.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_F,0.95,325.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,High_G,0.95,373.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_G,0.95,424.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,High_B,0.95,244.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_B,0.95,245.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,High_C,0.95,250.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_C,0.95,257,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,High_D,0.95,269.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_D,0.95,284.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,High_E,0.95,308.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_E,0.95,336.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,High_F,0.95,376.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_F,0.95,421.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,High_G,0.95,481.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_G,0.95,547.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,High_B,0.95,232,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_B,0.95,232.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,High_C,0.95,237.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_C,0.95,243.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,High_D,0.95,255.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_D,0.95,270.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,High_E,0.95,293.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_E,0.95,319.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,High_F,0.95,357.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_F,0.95,400,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,High_G,0.95,457.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_G,0.95,520,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,High_B,0.95,178,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_B,0.95,178.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,High_C,0.95,182.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_C,0.95,187.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,High_D,0.95,197,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_D,0.95,208.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,High_E,0.95,226.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_E,0.95,247.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,High_F,0.95,278,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_F,0.95,311.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,High_G,0.95,356.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_G,0.95,405.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,High_B,0.95,90.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_B,0.95,90.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,High_C,0.95,92.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_C,0.95,94.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,High_D,0.95,99,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_D,0.95,104.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,High_E,0.95,113.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_E,0.95,124.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,High_F,0.95,139.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_F,0.95,155.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,High_G,0.95,178.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,High_B,0.95,116.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_B,0.95,116.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,High_C,0.95,118.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_C,0.95,121.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,High_D,0.95,127.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_D,0.95,134.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,High_E,0.95,145.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_E,0.95,159,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,High_F,0.95,178.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_F,0.95,199.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,High_G,0.95,228.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_G,0.95,259.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,High_B,0.95,64.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_B,0.95,65.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,High_C,0.95,66.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_C,0.95,68.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,High_D,0.95,71.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_D,0.95,75.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,High_E,0.95,82.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_E,0.95,89.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,High_F,0.95,100.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_F,0.95,112.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,High_G,0.95,129.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_G,0.95,147.4,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,High_B,0.95,60.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_B,0.95,60.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,High_C,0.95,61.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_C,0.95,62.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,High_D,0.95,65.4,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_D,0.95,69.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,High_E,0.95,74.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_E,0.95,81.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,High_F,0.95,91.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_F,0.95,102.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,High_G,0.95,117.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_G,0.95,134.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,High_B,0.95,51.4,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_B,0.95,51.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,High_C,0.95,51.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_C,0.95,52.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,High_D,0.95,54.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_D,0.95,57.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,High_E,0.95,62.2,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_E,0.95,67.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,High_F,0.95,76,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_F,0.95,85.2,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,High_G,0.95,97.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_G,0.95,111.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,High_B,0.95,40.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_B,0.95,40.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,High_C,0.95,41.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_C,0.95,42,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,High_D,0.95,43.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_D,0.95,46.2,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,High_E,0.95,50,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_E,0.95,54.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,High_F,0.95,61.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_F,0.95,68.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,High_G,0.95,78.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_G,0.95,89.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,High_B,0.95,222.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_B,0.95,224.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,High_C,0.95,229.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_C,0.95,237,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,High_D,0.95,250,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_D,0.95,265.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,High_E,0.95,289.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_E,0.95,316.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,High_F,0.95,355.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_F,0.95,398.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,High_G,0.95,456.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_G,0.95,518.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,High_B,0.95,267,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_B,0.95,269.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,High_C,0.95,275.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_C,0.95,284,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,High_D,0.95,299.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_D,0.95,317.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,High_E,0.95,345.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_E,0.95,377.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,High_F,0.95,423.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_F,0.95,473.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,High_G,0.95,541.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_G,0.95,614.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,High_B,0.95,285.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_B,0.95,287.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,High_C,0.95,294.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_C,0.95,303.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,High_D,0.95,319.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_D,0.95,338.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,High_E,0.95,368.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_E,0.95,402.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,High_F,0.95,450.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_F,0.95,503.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,High_G,0.95,575.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_G,0.95,653.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,High_B,0.95,276.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_B,0.95,278.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,High_C,0.95,284.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_C,0.95,293.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,High_D,0.95,309.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_D,0.95,328,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,High_E,0.95,357,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_E,0.95,389.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,High_F,0.95,436.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_F,0.95,488.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,High_G,0.95,558.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_G,0.95,634.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,High_B,0.95,186.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,Low_B,0.95,187.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,High_C,0.95,191.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,Low_C,0.95,196.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,High_D,0.95,206.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,Low_D,0.95,218.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,High_E,0.95,237.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,Low_E,0.95,259.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,High_F,0.95,291.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,Low_F,0.95,325.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,High_G,0.95,373.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,98-199,Low_G,0.95,424.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,High_B,0.95,244.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,Low_B,0.95,245.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,High_C,0.95,250.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,Low_C,0.95,257,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,High_D,0.95,269.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,Low_D,0.95,284.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,High_E,0.95,308.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,Low_E,0.95,336.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,High_F,0.95,376.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,Low_F,0.95,421.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,High_G,0.95,481.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,98-199,Low_G,0.95,547.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,High_B,0.95,232,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,Low_B,0.95,232.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,High_C,0.95,237.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,Low_C,0.95,243.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,High_D,0.95,255.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,Low_D,0.95,270.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,High_E,0.95,293.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,Low_E,0.95,319.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,High_F,0.95,357.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,Low_F,0.95,400,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,High_G,0.95,457.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,98-199,Low_G,0.95,520,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,High_B,0.95,178,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,Low_B,0.95,178.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,High_C,0.95,182.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,Low_C,0.95,187.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,High_D,0.95,197,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,Low_D,0.95,208.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,High_E,0.95,226.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,Low_E,0.95,247.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,High_F,0.95,278,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,Low_F,0.95,311.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,High_G,0.95,356.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,98-199,Low_G,0.95,405.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,High_B,0.95,90.3,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,Low_B,0.95,90.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,High_C,0.95,92.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,Low_C,0.95,94.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,High_D,0.95,99,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,Low_D,0.95,104.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,High_E,0.95,113.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,Low_E,0.95,124.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,High_F,0.95,139.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,Low_F,0.95,155.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,High_G,0.95,178.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,98-199,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,High_B,0.95,116.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,Low_B,0.95,116.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,High_C,0.95,118.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,Low_C,0.95,121.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,High_D,0.95,127.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,Low_D,0.95,134.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,High_E,0.95,145.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,Low_E,0.95,159,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,High_F,0.95,178.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,Low_F,0.95,199.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,High_G,0.95,228.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,98-199,Low_G,0.95,259.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,High_B,0.95,64.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,Low_B,0.95,65.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,High_C,0.95,66.3,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,Low_C,0.95,68.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,High_D,0.95,71.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,Low_D,0.95,75.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,High_E,0.95,82.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,Low_E,0.95,89.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,High_F,0.95,100.7,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,Low_F,0.95,112.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,High_G,0.95,129.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,98-199,Low_G,0.95,147.4,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,High_B,0.95,60.3,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,Low_B,0.95,60.3,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,High_C,0.95,61.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,Low_C,0.95,62.6,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,High_D,0.95,65.4,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,Low_D,0.95,69.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,High_E,0.95,74.9,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,Low_E,0.95,81.7,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,High_F,0.95,91.6,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,Low_F,0.95,102.6,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,High_G,0.95,117.7,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,98-199,Low_G,0.95,134.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,High_B,0.95,51.4,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,Low_B,0.95,51.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,High_C,0.95,51.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,Low_C,0.95,52.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,High_D,0.95,54.7,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,Low_D,0.95,57.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,High_E,0.95,62.2,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,Low_E,0.95,67.8,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,High_F,0.95,76,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,Low_F,0.95,85.2,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,High_G,0.95,97.9,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,98-199,Low_G,0.95,111.8,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,High_B,0.95,40.8,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,Low_B,0.95,40.7,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,High_C,0.95,41.1,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,Low_C,0.95,42,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,High_D,0.95,43.8,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,Low_D,0.95,46.2,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,High_E,0.95,50,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,Low_E,0.95,54.5,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,High_F,0.95,61.1,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,Low_F,0.95,68.5,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,High_G,0.95,78.6,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,98-199,Low_G,0.95,89.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,High_B,0.95,222.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,Low_B,0.95,224.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,High_C,0.95,229.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,Low_C,0.95,237,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,High_D,0.95,250,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,Low_D,0.95,265.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,High_E,0.95,289.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,Low_E,0.95,316.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,High_F,0.95,355.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,Low_F,0.95,398.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,High_G,0.95,456.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,98-199,Low_G,0.95,518.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,High_B,0.95,267,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,Low_B,0.95,269.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,High_C,0.95,275.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,Low_C,0.95,284,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,High_D,0.95,299.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,Low_D,0.95,317.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,High_E,0.95,345.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,Low_E,0.95,377.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,High_F,0.95,423.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,Low_F,0.95,473.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,High_G,0.95,541.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,98-199,Low_G,0.95,614.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,High_B,0.95,285.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,Low_B,0.95,287.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,High_C,0.95,294.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,Low_C,0.95,303.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,High_D,0.95,319.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,Low_D,0.95,338.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,High_E,0.95,368.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,Low_E,0.95,402.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,High_F,0.95,450.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,Low_F,0.95,503.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,High_G,0.95,575.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,98-199,Low_G,0.95,653.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,High_B,0.95,276.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,Low_B,0.95,278.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,High_C,0.95,284.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,Low_C,0.95,293.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,High_D,0.95,309.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,Low_D,0.95,328,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,High_E,0.95,357,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,Low_E,0.95,389.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,High_F,0.95,436.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,Low_F,0.95,488.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,High_G,0.95,558.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,98-199,Low_G,0.95,634.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,High_B,0.95,186.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_B,0.95,187.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,High_C,0.95,191.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_C,0.95,196.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,High_D,0.95,206.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_D,0.95,218.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,High_E,0.95,237.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_E,0.95,259.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,High_F,0.95,291.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_F,0.95,325.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,High_G,0.95,373.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,98-199,Low_G,0.95,424.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,High_B,0.95,244.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_B,0.95,245.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,High_C,0.95,250.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_C,0.95,257,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,High_D,0.95,269.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_D,0.95,284.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,High_E,0.95,308.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_E,0.95,336.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,High_F,0.95,376.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_F,0.95,421.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,High_G,0.95,481.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,98-199,Low_G,0.95,547.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,High_B,0.95,232,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_B,0.95,232.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,High_C,0.95,237.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_C,0.95,243.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,High_D,0.95,255.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_D,0.95,270.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,High_E,0.95,293.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_E,0.95,319.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,High_F,0.95,357.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_F,0.95,400,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,High_G,0.95,457.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,98-199,Low_G,0.95,520,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,High_B,0.95,178,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_B,0.95,178.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,High_C,0.95,182.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_C,0.95,187.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,High_D,0.95,197,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_D,0.95,208.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,High_E,0.95,226.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_E,0.95,247.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,High_F,0.95,278,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_F,0.95,311.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,High_G,0.95,356.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,98-199,Low_G,0.95,405.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,High_B,0.95,90.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_B,0.95,90.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,High_C,0.95,92.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_C,0.95,94.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,High_D,0.95,99,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_D,0.95,104.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,High_E,0.95,113.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_E,0.95,124.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,High_F,0.95,139.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_F,0.95,155.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,High_G,0.95,178.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,98-199,Low_G,0.95,203.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,High_B,0.95,116.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_B,0.95,116.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,High_C,0.95,118.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_C,0.95,121.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,High_D,0.95,127.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_D,0.95,134.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,High_E,0.95,145.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_E,0.95,159,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,High_F,0.95,178.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_F,0.95,199.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,High_G,0.95,228.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,98-199,Low_G,0.95,259.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,High_B,0.95,64.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_B,0.95,65.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,High_C,0.95,66.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_C,0.95,68.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,High_D,0.95,71.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_D,0.95,75.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,High_E,0.95,82.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_E,0.95,89.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,High_F,0.95,100.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_F,0.95,112.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,High_G,0.95,129.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,98-199,Low_G,0.95,147.4,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,High_B,0.95,60.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_B,0.95,60.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,High_C,0.95,61.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_C,0.95,62.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,High_D,0.95,65.4,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_D,0.95,69.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,High_E,0.95,74.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_E,0.95,81.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,High_F,0.95,91.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_F,0.95,102.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,High_G,0.95,117.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,98-199,Low_G,0.95,134.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,High_B,0.95,51.4,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_B,0.95,51.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,High_C,0.95,51.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_C,0.95,52.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,High_D,0.95,54.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_D,0.95,57.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,High_E,0.95,62.2,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_E,0.95,67.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,High_F,0.95,76,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_F,0.95,85.2,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,High_G,0.95,97.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,98-199,Low_G,0.95,111.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,High_B,0.95,40.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_B,0.95,40.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,High_C,0.95,41.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_C,0.95,42,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,High_D,0.95,43.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_D,0.95,46.2,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,High_E,0.95,50,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_E,0.95,54.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,High_F,0.95,61.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_F,0.95,68.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,High_G,0.95,78.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,98-199,Low_G,0.95,89.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,High_B,0.95,222.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_B,0.95,224.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,High_C,0.95,229.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_C,0.95,237,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,High_D,0.95,250,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_D,0.95,265.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,High_E,0.95,289.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_E,0.95,316.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,High_F,0.95,355.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_F,0.95,398.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,High_G,0.95,456.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,98-199,Low_G,0.95,518.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,High_B,0.95,267,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_B,0.95,269.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,High_C,0.95,275.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_C,0.95,284,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,High_D,0.95,299.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_D,0.95,317.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,High_E,0.95,345.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_E,0.95,377.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,High_F,0.95,423.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_F,0.95,473.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,High_G,0.95,541.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,98-199,Low_G,0.95,614.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,High_B,0.95,285.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_B,0.95,287.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,High_C,0.95,294.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_C,0.95,303.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,High_D,0.95,319.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_D,0.95,338.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,High_E,0.95,368.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_E,0.95,402.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,High_F,0.95,450.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_F,0.95,503.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,High_G,0.95,575.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,98-199,Low_G,0.95,653.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,High_B,0.95,276.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_B,0.95,278.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,High_C,0.95,284.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_C,0.95,293.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,High_D,0.95,309.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_D,0.95,328,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,High_E,0.95,357,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_E,0.95,389.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,High_F,0.95,436.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_F,0.95,488.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,High_G,0.95,558.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,98-199,Low_G,0.95,634.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,High_B,0.95,293.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,Low_B,0.95,297.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,High_C,0.95,306.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,Low_C,0.95,317.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,High_D,0.95,335.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,Low_D,0.95,357.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,High_E,0.95,389.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,Low_E,0.95,426.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,High_F,0.95,477.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,Low_F,0.95,533,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,High_G,0.95,608.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.55,N/A,N/A,200,Low_G,0.95,688.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,High_B,0.95,385.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,Low_B,0.95,390.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,High_C,0.95,401.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,Low_C,0.95,415.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,High_D,0.95,438.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,Low_D,0.95,465.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,High_E,0.95,507.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,Low_E,0.95,553.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,High_F,0.95,618.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,Low_F,0.95,689.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,High_G,0.95,784.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.23,N/A,N/A,200,Low_G,0.95,887.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,High_B,0.95,364.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,Low_B,0.95,369.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,High_C,0.95,380.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,Low_C,0.95,393.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,High_D,0.95,415.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,Low_D,0.95,441.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,High_E,0.95,481,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,Low_E,0.95,524.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,High_F,0.95,586.8,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,Low_F,0.95,654.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,High_G,0.95,745.5,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.3,N/A,N/A,200,Low_G,0.95,843.4,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,High_B,0.95,280,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,Low_B,0.95,283.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,High_C,0.95,292.2,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,Low_C,0.95,302.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,High_D,0.95,320.3,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,Low_D,0.95,340.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,High_E,0.95,371.9,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,Low_E,0.95,406.7,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,High_F,0.95,455.6,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,Low_F,0.95,509.1,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,High_G,0.95,581,N/A +External / Internal Wall Insulation,IWI_solid_1.7_0.6,N/A,N/A,200,Low_G,0.95,658.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,High_B,0.95,142,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,Low_B,0.95,143.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,High_C,0.95,147.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,Low_C,0.95,151.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,High_D,0.95,160.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,Low_D,0.95,170.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,High_E,0.95,185.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,Low_E,0.95,202.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,High_F,0.95,226.3,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,Low_F,0.95,252.7,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,High_G,0.95,288.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.45,N/A,N/A,200,Low_G,0.95,327.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,High_B,0.95,182.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,Low_B,0.95,184.7,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,High_C,0.95,189.3,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,Low_C,0.95,195.3,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,High_D,0.95,205.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,Low_D,0.95,218.3,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,High_E,0.95,237.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,Low_E,0.95,258.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,High_F,0.95,289.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,Low_F,0.95,323.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,High_G,0.95,368.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.3,N/A,N/A,200,Low_G,0.95,417.6,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,High_B,0.95,102.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,Low_B,0.95,103.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,High_C,0.95,105.9,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,Low_C,0.95,109.4,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,High_D,0.95,115.5,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,Low_D,0.95,122.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,High_E,0.95,133.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,Low_E,0.95,146.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,High_F,0.95,163.8,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,Low_F,0.95,183.1,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,High_G,0.95,209.2,N/A +External / Internal Wall Insulation,IWI_solid_1.0_0.6,N/A,N/A,200,Low_G,0.95,237.4,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,High_B,0.95,95.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,Low_B,0.95,95.8,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,High_C,0.95,97.8,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,Low_C,0.95,100.7,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,High_D,0.95,105.9,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,High_E,0.95,121.7,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,Low_E,0.95,132.7,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,High_F,0.95,148.3,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,Low_F,0.95,165.5,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,High_G,0.95,188.9,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.24,N/A,N/A,200,Low_G,0.95,214.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,High_B,0.95,78.8,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,Low_B,0.95,79.4,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,High_C,0.95,81.2,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,Low_C,0.95,83.6,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,High_D,0.95,87.9,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,Low_D,0.95,93.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,High_E,0.95,101.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,Low_E,0.95,110.3,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,High_F,0.95,123.3,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,Low_F,0.95,137.7,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,High_G,0.95,157.1,N/A +External / Internal Wall Insulation,IWI_solid_0.6_0.3,N/A,N/A,200,Low_G,0.95,178.2,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,High_B,0.95,63.5,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,Low_B,0.95,64,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,High_C,0.95,65.4,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,Low_C,0.95,67.3,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,High_D,0.95,70.7,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,Low_D,0.95,74.9,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,High_E,0.95,81.3,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,Low_E,0.95,88.6,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,High_F,0.95,99.1,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,Low_F,0.95,110.7,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,High_G,0.95,126.3,N/A +External / Internal Wall Insulation,IWI_solid_0.45_0.21,N/A,N/A,200,Low_G,0.95,143.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,High_B,0.95,353.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,Low_B,0.95,359.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,High_C,0.95,370.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,Low_C,0.95,383.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,High_D,0.95,406.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,Low_D,0.95,433.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,High_E,0.95,473.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,Low_E,0.95,518.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,High_F,0.95,581.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,Low_F,0.95,649.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,High_G,0.95,742,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.6,N/A,N/A,200,Low_G,0.95,841.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,High_B,0.95,425.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,Low_B,0.95,431.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,High_C,0.95,444.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,Low_C,0.95,460.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,High_D,0.95,486.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,Low_D,0.95,518.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,High_E,0.95,565.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,Low_E,0.95,617.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,High_F,0.95,691.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,Low_F,0.95,772.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,High_G,0.95,880.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.35,N/A,N/A,200,Low_G,0.95,997.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,High_B,0.95,454.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,Low_B,0.95,461.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,High_C,0.95,474.7,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,Low_C,0.95,491.6,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,High_D,0.95,519.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,Low_D,0.95,553,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,High_E,0.95,602.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,Low_E,0.95,658.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,High_F,0.95,736.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,Low_F,0.95,822.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,High_G,0.95,937.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.25,N/A,N/A,200,Low_G,0.95,1061.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,High_B,0.95,439.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,Low_B,0.95,446.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,High_C,0.95,459.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,Low_C,0.95,475.8,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,High_D,0.95,503.4,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,Low_D,0.95,535.5,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,High_E,0.95,583.9,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,Low_E,0.95,638,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,High_F,0.95,714.2,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,Low_F,0.95,797.3,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,High_G,0.95,909.1,N/A +External / Internal Wall Insulation,IWI_solid_2.0_0.3,N/A,N/A,200,Low_G,0.95,1029.2,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,High_B,0.95,211.6,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,Low_B,0.95,214.1,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,High_C,0.95,219.8,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,Low_C,0.95,227.2,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,High_D,0.95,239.9,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,Low_D,0.95,254.8,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,High_E,0.95,277.4,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,Low_E,0.95,302.9,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,High_F,0.95,338.9,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,Low_F,0.95,378.3,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,High_G,0.95,431.5,N/A +Cavity Wall Insulation,CWI_0.040,N/A,N/A,200,Low_G,0.95,488.7,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,High_B,0.95,227.6,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,Low_B,0.95,230.2,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,High_C,0.95,236.3,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,Low_C,0.95,244.2,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,High_D,0.95,257.7,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,Low_D,0.95,273.7,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,High_E,0.95,297.9,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,Low_E,0.95,325.1,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,High_F,0.95,363.6,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,Low_F,0.95,405.7,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,High_G,0.95,462.6,N/A +Cavity Wall Insulation,CWI_0.033,N/A,N/A,200,Low_G,0.95,523.8,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,High_B,0.95,242.9,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,Low_B,0.95,245.7,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,High_C,0.95,252.1,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,Low_C,0.95,260.5,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,High_D,0.95,274.8,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,Low_D,0.95,291.7,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,High_E,0.95,317.4,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,Low_E,0.95,346.3,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,High_F,0.95,387.1,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,Low_F,0.95,431.9,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,High_G,0.95,492.2,N/A +Cavity Wall Insulation,CWI_0.027,N/A,N/A,200,Low_G,0.95,557.3,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,High_B,0.95,30.1,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,Low_B,0.95,30.1,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,High_C,0.95,30.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,Low_C,0.95,31.4,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,High_D,0.95,33.1,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,Low_D,0.95,35.1,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,High_E,0.95,38.4,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,Low_E,0.95,42.2,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,High_F,0.95,47.6,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,Low_F,0.95,53.8,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,High_G,0.95,62.1,N/A +Cavity Wall Insulation,PWI_Cavity,N/A,N/A,200,Low_G,0.95,71.2,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,High_B,0.95,44.8,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,Low_B,0.95,45.1,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,High_C,0.95,46.1,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,Low_C,0.95,47.4,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,High_D,0.95,49.9,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,Low_D,0.95,52.8,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,High_E,0.95,57.4,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,Low_E,0.95,62.6,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,High_F,0.95,70,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,Low_F,0.95,78.2,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,High_G,0.95,89.3,N/A +Cavity Wall Insulation,CWI_partial_fill,N/A,N/A,200,Low_G,0.95,101.3,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,200,High_D,0.97,76.6,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,200,Low_D,0.97,81.2,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,200,High_E,0.97,88.5,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,200,Low_E,0.97,96.9,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,200,High_F,0.97,109,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,200,Low_F,0.97,122.4,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,200,High_G,0.97,140.8,N/A +Loft Insulation,LI_lessequal100,N/A,N/A,200,Low_G,0.97,160.8,N/A +Loft Insulation,LI_greater100,N/A,N/A,200,High_D,0.97,18.7,N/A +Loft Insulation,LI_greater100,N/A,N/A,200,Low_D,0.97,19.8,N/A +Loft Insulation,LI_greater100,N/A,N/A,200,High_E,0.97,21.6,N/A +Loft Insulation,LI_greater100,N/A,N/A,200,Low_E,0.97,23.6,N/A +Loft Insulation,LI_greater100,N/A,N/A,200,High_F,0.97,26.5,N/A +Loft Insulation,LI_greater100,N/A,N/A,200,Low_F,0.97,29.8,N/A +Loft Insulation,LI_greater100,N/A,N/A,200,High_G,0.97,34.2,N/A +Loft Insulation,LI_greater100,N/A,N/A,200,Low_G,0.97,39,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,200,High_D,0.86,265.2,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,200,Low_D,0.86,276.4,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,200,High_E,0.86,295.9,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,200,Low_E,0.86,319.9,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,200,High_F,0.86,355.9,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,200,Low_F,0.86,397.3,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,200,High_G,0.86,455,N/A +Other Insulation,RIRI_res_unin,N/A,N/A,200,Low_G,0.86,519,N/A +Other Insulation,RIRI_res_in,N/A,N/A,200,High_D,0.86,275.8,N/A +Other Insulation,RIRI_res_in,N/A,N/A,200,Low_D,0.86,287.3,N/A +Other Insulation,RIRI_res_in,N/A,N/A,200,High_E,0.86,307.5,N/A +Other Insulation,RIRI_res_in,N/A,N/A,200,Low_E,0.86,332.3,N/A +Other Insulation,RIRI_res_in,N/A,N/A,200,High_F,0.86,369.7,N/A +Other Insulation,RIRI_res_in,N/A,N/A,200,Low_F,0.86,412.6,N/A +Other Insulation,RIRI_res_in,N/A,N/A,200,High_G,0.86,472.5,N/A +Other Insulation,RIRI_res_in,N/A,N/A,200,Low_G,0.86,538.8,N/A +Other Insulation,FRI,N/A,N/A,200,High_D,0.99,309.2,N/A +Other Insulation,FRI,N/A,N/A,200,Low_D,0.99,328.2,N/A +Other Insulation,FRI,N/A,N/A,200,High_E,0.99,357.7,N/A +Other Insulation,FRI,N/A,N/A,200,Low_E,0.99,391.6,N/A +Other Insulation,FRI,N/A,N/A,200,High_F,0.99,440.2,N/A +Other Insulation,FRI,N/A,N/A,200,Low_F,0.99,494.1,N/A +Other Insulation,FRI,N/A,N/A,200,High_G,0.99,567.4,N/A +Other Insulation,FRI,N/A,N/A,200,Low_G,0.99,646.9,N/A +Other Insulation,UFI,N/A,N/A,200,High_D,0.97,77.2,N/A +Other Insulation,UFI,N/A,N/A,200,Low_D,0.97,82.2,N/A +Other Insulation,UFI,N/A,N/A,200,High_E,0.97,90.3,N/A +Other Insulation,UFI,N/A,N/A,200,Low_E,0.97,99.8,N/A +Other Insulation,UFI,N/A,N/A,200,High_F,0.97,113.7,N/A +Other Insulation,UFI,N/A,N/A,200,Low_F,0.97,129.3,N/A +Other Insulation,UFI,N/A,N/A,200,High_G,0.97,150.8,N/A +Other Insulation,UFI,N/A,N/A,200,Low_G,0.97,174.3,N/A +Other Insulation,SFI,N/A,N/A,200,High_D,0.98,45.5,N/A +Other Insulation,SFI,N/A,N/A,200,Low_D,0.98,48.3,N/A +Other Insulation,SFI,N/A,N/A,200,High_E,0.98,52.7,N/A +Other Insulation,SFI,N/A,N/A,200,Low_E,0.98,57.8,N/A +Other Insulation,SFI,N/A,N/A,200,High_F,0.98,65.3,N/A +Other Insulation,SFI,N/A,N/A,200,Low_F,0.98,73.6,N/A +Other Insulation,SFI,N/A,N/A,200,High_G,0.98,84.9,N/A +Other Insulation,SFI,N/A,N/A,200,Low_G,0.98,97.2,N/A +Other Insulation,DP,N/A,N/A,200,High_D,1,48.6,N/A +Other Insulation,DP,N/A,N/A,200,Low_D,1,51.7,N/A +Other Insulation,DP,N/A,N/A,200,High_E,1,56.5,N/A +Other Insulation,DP,N/A,N/A,200,Low_E,1,62.1,N/A +Other Insulation,DP,N/A,N/A,200,High_F,1,70.2,N/A +Other Insulation,DP,N/A,N/A,200,Low_F,1,79.2,N/A +Other Insulation,DP,N/A,N/A,200,High_G,1,91.4,N/A +Other Insulation,DP,N/A,N/A,200,Low_G,1,104.7,N/A +Other Insulation,WG_singletodouble,N/A,N/A,200,High_D,1,147.4,N/A +Other Insulation,WG_singletodouble,N/A,N/A,200,Low_D,1,156.8,N/A +Other Insulation,WG_singletodouble,N/A,N/A,200,High_E,1,171.4,N/A +Other Insulation,WG_singletodouble,N/A,N/A,200,Low_E,1,188.2,N/A +Other Insulation,WG_singletodouble,N/A,N/A,200,High_F,1,212.3,N/A +Other Insulation,WG_singletodouble,N/A,N/A,200,Low_F,1,239.1,N/A +Other Insulation,WG_singletodouble,N/A,N/A,200,High_G,1,275.6,N/A +Other Insulation,WG_singletodouble,N/A,N/A,200,Low_G,1,315.2,N/A +Other Insulation,WG_improveddouble,N/A,N/A,200,High_D,1,26.4,N/A +Other Insulation,WG_improveddouble,N/A,N/A,200,Low_D,1,28,N/A +Other Insulation,WG_improveddouble,N/A,N/A,200,High_E,1,30.6,N/A +Other Insulation,WG_improveddouble,N/A,N/A,200,Low_E,1,33.6,N/A +Other Insulation,WG_improveddouble,N/A,N/A,200,High_F,1,37.8,N/A +Other Insulation,WG_improveddouble,N/A,N/A,200,Low_F,1,42.5,N/A +Other Insulation,WG_improveddouble,N/A,N/A,200,High_G,1,48.9,N/A +Other Insulation,WG_improveddouble,N/A,N/A,200,Low_G,1,55.9,N/A +Other Insulation,HPED,N/A,N/A,200,High_D,1,7.7,N/A +Other Insulation,HPED,N/A,N/A,200,Low_D,1,8.2,N/A +Other Insulation,HPED,N/A,N/A,200,High_E,1,9,N/A +Other Insulation,HPED,N/A,N/A,200,Low_E,1,9.8,N/A +Other Insulation,HPED,N/A,N/A,200,High_F,1,11.1,N/A +Other Insulation,HPED,N/A,N/A,200,Low_F,1,12.5,N/A +Other Insulation,HPED,N/A,N/A,200,High_G,1,14.5,N/A +Other Insulation,HPED,N/A,N/A,200,Low_G,1,16.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,High_B,0.95,293.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,Low_B,0.95,297.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,High_C,0.95,306.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,Low_C,0.95,317.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,High_D,0.95,335.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,Low_D,0.95,357.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,High_E,0.95,389.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,Low_E,0.95,426.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,High_F,0.95,477.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,Low_F,0.95,533,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,High_G,0.95,608.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.55,N/A,N/A,200,Low_G,0.95,688.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,High_B,0.95,385.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,Low_B,0.95,390.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,High_C,0.95,401.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,Low_C,0.95,415.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,High_D,0.95,438.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,Low_D,0.95,465.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,High_E,0.95,507.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,Low_E,0.95,553.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,High_F,0.95,618.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,Low_F,0.95,689.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,High_G,0.95,784.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.23,N/A,N/A,200,Low_G,0.95,887.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,High_B,0.95,364.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,Low_B,0.95,369.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,High_C,0.95,380.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,Low_C,0.95,393.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,High_D,0.95,415.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,Low_D,0.95,441.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,High_E,0.95,481,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,Low_E,0.95,524.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,High_F,0.95,586.8,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,Low_F,0.95,654.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,High_G,0.95,745.5,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.3,N/A,N/A,200,Low_G,0.95,843.4,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,High_B,0.95,280,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,Low_B,0.95,283.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,High_C,0.95,292.2,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,Low_C,0.95,302.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,High_D,0.95,320.3,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,Low_D,0.95,340.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,High_E,0.95,371.9,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,Low_E,0.95,406.7,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,High_F,0.95,455.6,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,Low_F,0.95,509.1,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,High_G,0.95,581,N/A +External / Internal Wall Insulation,EWI_solid_1.7_0.6,N/A,N/A,200,Low_G,0.95,658.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,High_B,0.95,142,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,Low_B,0.95,143.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,High_C,0.95,147.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,Low_C,0.95,151.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,High_D,0.95,160.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,Low_D,0.95,170.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,High_E,0.95,185.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,Low_E,0.95,202.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,High_F,0.95,226.3,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,Low_F,0.95,252.7,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,High_G,0.95,288.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.45,N/A,N/A,200,Low_G,0.95,327.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,High_B,0.95,182.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,Low_B,0.95,184.7,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,High_C,0.95,189.3,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,Low_C,0.95,195.3,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,High_D,0.95,205.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,Low_D,0.95,218.3,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,High_E,0.95,237.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,Low_E,0.95,258.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,High_F,0.95,289.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,Low_F,0.95,323.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,High_G,0.95,368.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.3,N/A,N/A,200,Low_G,0.95,417.6,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,High_B,0.95,102.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,Low_B,0.95,103.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,High_C,0.95,105.9,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,Low_C,0.95,109.4,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,High_D,0.95,115.5,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,Low_D,0.95,122.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,High_E,0.95,133.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,Low_E,0.95,146.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,High_F,0.95,163.8,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,Low_F,0.95,183.1,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,High_G,0.95,209.2,N/A +External / Internal Wall Insulation,EWI_solid_1.0_0.6,N/A,N/A,200,Low_G,0.95,237.4,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,High_B,0.95,95.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,Low_B,0.95,95.8,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,High_C,0.95,97.8,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,Low_C,0.95,100.7,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,High_D,0.95,105.9,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,High_E,0.95,121.7,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,Low_E,0.95,132.7,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,High_F,0.95,148.3,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,Low_F,0.95,165.5,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,High_G,0.95,188.9,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.24,N/A,N/A,200,Low_G,0.95,214.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,High_B,0.95,78.8,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,Low_B,0.95,79.4,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,High_C,0.95,81.2,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,Low_C,0.95,83.6,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,High_D,0.95,87.9,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,Low_D,0.95,93.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,High_E,0.95,101.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,Low_E,0.95,110.3,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,High_F,0.95,123.3,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,Low_F,0.95,137.7,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,High_G,0.95,157.1,N/A +External / Internal Wall Insulation,EWI_solid_0.6_0.3,N/A,N/A,200,Low_G,0.95,178.2,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,High_B,0.95,63.5,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,Low_B,0.95,64,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,High_C,0.95,65.4,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,Low_C,0.95,67.3,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,High_D,0.95,70.7,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,Low_D,0.95,74.9,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,High_E,0.95,81.3,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,Low_E,0.95,88.6,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,High_F,0.95,99.1,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,Low_F,0.95,110.7,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,High_G,0.95,126.3,N/A +External / Internal Wall Insulation,EWI_solid_0.45_0.21,N/A,N/A,200,Low_G,0.95,143.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,High_B,0.95,353.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,Low_B,0.95,359.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,High_C,0.95,370.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,Low_C,0.95,383.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,High_D,0.95,406.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,Low_D,0.95,433.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,High_E,0.95,473.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,Low_E,0.95,518.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,High_F,0.95,581.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,Low_F,0.95,649.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,High_G,0.95,742,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.6,N/A,N/A,200,Low_G,0.95,841.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,High_B,0.95,425.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,Low_B,0.95,431.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,High_C,0.95,444.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,Low_C,0.95,460.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,High_D,0.95,486.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,Low_D,0.95,518.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,High_E,0.95,565.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,Low_E,0.95,617.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,High_F,0.95,691.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,Low_F,0.95,772.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,High_G,0.95,880.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.35,N/A,N/A,200,Low_G,0.95,997.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,High_B,0.95,454.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,Low_B,0.95,461.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,High_C,0.95,474.7,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,Low_C,0.95,491.6,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,High_D,0.95,519.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,Low_D,0.95,553,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,High_E,0.95,602.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,Low_E,0.95,658.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,High_F,0.95,736.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,Low_F,0.95,822.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,High_G,0.95,937.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.25,N/A,N/A,200,Low_G,0.95,1061.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,High_B,0.95,439.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,Low_B,0.95,446.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,High_C,0.95,459.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,Low_C,0.95,475.8,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,High_D,0.95,503.4,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,Low_D,0.95,535.5,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,High_E,0.95,583.9,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,Low_E,0.95,638,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,High_F,0.95,714.2,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,Low_F,0.95,797.3,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,High_G,0.95,909.1,N/A +External / Internal Wall Insulation,EWI_solid_2.0_0.3,N/A,N/A,200,Low_G,0.95,1029.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,High_B,0.95,293.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,Low_B,0.95,297.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,High_C,0.95,306.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,Low_C,0.95,317.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,High_D,0.95,335.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,Low_D,0.95,357.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,High_E,0.95,389.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,Low_E,0.95,426.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,High_F,0.95,477.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,Low_F,0.95,533,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,High_G,0.95,608.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.55,N/A,N/A,200,Low_G,0.95,688.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,High_B,0.95,385.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,Low_B,0.95,390.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,High_C,0.95,401.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,Low_C,0.95,415.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,High_D,0.95,438.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,Low_D,0.95,465.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,High_E,0.95,507.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,Low_E,0.95,553.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,High_F,0.95,618.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,Low_F,0.95,689.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,High_G,0.95,784.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.23,N/A,N/A,200,Low_G,0.95,887.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,High_B,0.95,364.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,Low_B,0.95,369.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,High_C,0.95,380.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,Low_C,0.95,393.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,High_D,0.95,415.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,Low_D,0.95,441.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,High_E,0.95,481,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,Low_E,0.95,524.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,High_F,0.95,586.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,Low_F,0.95,654.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,High_G,0.95,745.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.3,N/A,N/A,200,Low_G,0.95,843.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,High_B,0.95,280,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,Low_B,0.95,283.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,High_C,0.95,292.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,Low_C,0.95,302.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,High_D,0.95,320.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,Low_D,0.95,340.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,High_E,0.95,371.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,Low_E,0.95,406.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,High_F,0.95,455.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,Low_F,0.95,509.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,High_G,0.95,581,N/A +External / Internal Wall Insulation,EWI_cavity_1.7_0.6,N/A,N/A,200,Low_G,0.95,658.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,High_B,0.95,142,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,Low_B,0.95,143.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,High_C,0.95,147.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,Low_C,0.95,151.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,High_D,0.95,160.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,Low_D,0.95,170.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,High_E,0.95,185.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,Low_E,0.95,202.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,High_F,0.95,226.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,Low_F,0.95,252.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,High_G,0.95,288.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.45,N/A,N/A,200,Low_G,0.95,327.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,High_B,0.95,182.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,Low_B,0.95,184.7,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,High_C,0.95,189.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,Low_C,0.95,195.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,High_D,0.95,205.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,Low_D,0.95,218.3,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,High_E,0.95,237.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,Low_E,0.95,258.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,High_F,0.95,289.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,Low_F,0.95,323.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,High_G,0.95,368.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.3,N/A,N/A,200,Low_G,0.95,417.6,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,High_B,0.95,102.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,Low_B,0.95,103.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,High_C,0.95,105.9,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,Low_C,0.95,109.4,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,High_D,0.95,115.5,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,Low_D,0.95,122.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,High_E,0.95,133.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,Low_E,0.95,146.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,High_F,0.95,163.8,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,Low_F,0.95,183.1,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,High_G,0.95,209.2,N/A +External / Internal Wall Insulation,EWI_cavity_1.0_0.6,N/A,N/A,200,Low_G,0.95,237.4,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,High_B,0.95,95.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,Low_B,0.95,95.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,High_C,0.95,97.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,Low_C,0.95,100.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,High_D,0.95,105.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,High_E,0.95,121.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,Low_E,0.95,132.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,High_F,0.95,148.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,Low_F,0.95,165.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,High_G,0.95,188.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.24,N/A,N/A,200,Low_G,0.95,214.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,High_B,0.95,78.8,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,Low_B,0.95,79.4,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,High_C,0.95,81.2,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,Low_C,0.95,83.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,High_D,0.95,87.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,Low_D,0.95,93.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,High_E,0.95,101.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,Low_E,0.95,110.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,High_F,0.95,123.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,Low_F,0.95,137.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,High_G,0.95,157.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.6_0.3,N/A,N/A,200,Low_G,0.95,178.2,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,High_B,0.95,63.5,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,Low_B,0.95,64,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,High_C,0.95,65.4,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,Low_C,0.95,67.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,High_D,0.95,70.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,Low_D,0.95,74.9,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,High_E,0.95,81.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,Low_E,0.95,88.6,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,High_F,0.95,99.1,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,Low_F,0.95,110.7,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,High_G,0.95,126.3,N/A +External / Internal Wall Insulation,EWI_cavity_0.45_0.21,N/A,N/A,200,Low_G,0.95,143.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,High_B,0.95,353.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,Low_B,0.95,359.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,High_C,0.95,370.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,Low_C,0.95,383.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,High_D,0.95,406.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,Low_D,0.95,433.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,High_E,0.95,473.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,Low_E,0.95,518.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,High_F,0.95,581.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,Low_F,0.95,649.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,High_G,0.95,742,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.6,N/A,N/A,200,Low_G,0.95,841.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,High_B,0.95,425.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,Low_B,0.95,431.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,High_C,0.95,444.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,Low_C,0.95,460.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,High_D,0.95,486.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,Low_D,0.95,518.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,High_E,0.95,565.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,Low_E,0.95,617.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,High_F,0.95,691.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,Low_F,0.95,772.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,High_G,0.95,880.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.35,N/A,N/A,200,Low_G,0.95,997.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,High_B,0.95,454.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,Low_B,0.95,461.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,High_C,0.95,474.7,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,Low_C,0.95,491.6,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,High_D,0.95,519.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,Low_D,0.95,553,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,High_E,0.95,602.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,Low_E,0.95,658.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,High_F,0.95,736.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,Low_F,0.95,822.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,High_G,0.95,937.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.25,N/A,N/A,200,Low_G,0.95,1061.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,High_B,0.95,439.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,Low_B,0.95,446.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,High_C,0.95,459.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,Low_C,0.95,475.8,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,High_D,0.95,503.4,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,Low_D,0.95,535.5,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,High_E,0.95,583.9,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,Low_E,0.95,638,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,High_F,0.95,714.2,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,Low_F,0.95,797.3,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,High_G,0.95,909.1,N/A +External / Internal Wall Insulation,EWI_cavity_2.0_0.3,N/A,N/A,200,Low_G,0.95,1029.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,High_B,0.95,293.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,Low_B,0.95,297.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,High_C,0.95,306.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,Low_C,0.95,317.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,High_D,0.95,335.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,Low_D,0.95,357.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,High_E,0.95,389.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,Low_E,0.95,426.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,High_F,0.95,477.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,Low_F,0.95,533,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,High_G,0.95,608.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.55,N/A,N/A,200,Low_G,0.95,688.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,High_B,0.95,385.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,Low_B,0.95,390.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,High_C,0.95,401.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,Low_C,0.95,415.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,High_D,0.95,438.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,Low_D,0.95,465.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,High_E,0.95,507.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,Low_E,0.95,553.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,High_F,0.95,618.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,Low_F,0.95,689.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,High_G,0.95,784.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.23,N/A,N/A,200,Low_G,0.95,887.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,High_B,0.95,364.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,Low_B,0.95,369.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,High_C,0.95,380.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,Low_C,0.95,393.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,High_D,0.95,415.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,Low_D,0.95,441.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,High_E,0.95,481,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,Low_E,0.95,524.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,High_F,0.95,586.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,Low_F,0.95,654.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,High_G,0.95,745.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.3,N/A,N/A,200,Low_G,0.95,843.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,High_B,0.95,280,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,Low_B,0.95,283.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,High_C,0.95,292.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,Low_C,0.95,302.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,High_D,0.95,320.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,Low_D,0.95,340.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,High_E,0.95,371.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,Low_E,0.95,406.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,High_F,0.95,455.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,Low_F,0.95,509.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,High_G,0.95,581,N/A +External / Internal Wall Insulation,IWI_cavity_1.7_0.6,N/A,N/A,200,Low_G,0.95,658.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,High_B,0.95,142,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,Low_B,0.95,143.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,High_C,0.95,147.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,Low_C,0.95,151.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,High_D,0.95,160.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,Low_D,0.95,170.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,High_E,0.95,185.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,Low_E,0.95,202.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,High_F,0.95,226.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,Low_F,0.95,252.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,High_G,0.95,288.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.45,N/A,N/A,200,Low_G,0.95,327.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,High_B,0.95,182.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,Low_B,0.95,184.7,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,High_C,0.95,189.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,Low_C,0.95,195.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,High_D,0.95,205.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,Low_D,0.95,218.3,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,High_E,0.95,237.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,Low_E,0.95,258.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,High_F,0.95,289.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,Low_F,0.95,323.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,High_G,0.95,368.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.3,N/A,N/A,200,Low_G,0.95,417.6,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,High_B,0.95,102.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,Low_B,0.95,103.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,High_C,0.95,105.9,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,Low_C,0.95,109.4,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,High_D,0.95,115.5,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,Low_D,0.95,122.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,High_E,0.95,133.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,Low_E,0.95,146.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,High_F,0.95,163.8,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,Low_F,0.95,183.1,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,High_G,0.95,209.2,N/A +External / Internal Wall Insulation,IWI_cavity_1.0_0.6,N/A,N/A,200,Low_G,0.95,237.4,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,High_B,0.95,95.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,Low_B,0.95,95.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,High_C,0.95,97.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,Low_C,0.95,100.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,High_D,0.95,105.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,High_E,0.95,121.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,Low_E,0.95,132.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,High_F,0.95,148.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,Low_F,0.95,165.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,High_G,0.95,188.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.24,N/A,N/A,200,Low_G,0.95,214.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,High_B,0.95,78.8,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,Low_B,0.95,79.4,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,High_C,0.95,81.2,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,Low_C,0.95,83.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,High_D,0.95,87.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,Low_D,0.95,93.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,High_E,0.95,101.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,Low_E,0.95,110.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,High_F,0.95,123.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,Low_F,0.95,137.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,High_G,0.95,157.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.6_0.3,N/A,N/A,200,Low_G,0.95,178.2,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,High_B,0.95,63.5,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,Low_B,0.95,64,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,High_C,0.95,65.4,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,Low_C,0.95,67.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,High_D,0.95,70.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,Low_D,0.95,74.9,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,High_E,0.95,81.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,Low_E,0.95,88.6,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,High_F,0.95,99.1,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,Low_F,0.95,110.7,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,High_G,0.95,126.3,N/A +External / Internal Wall Insulation,IWI_cavity_0.45_0.21,N/A,N/A,200,Low_G,0.95,143.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,High_B,0.95,353.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,Low_B,0.95,359.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,High_C,0.95,370.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,Low_C,0.95,383.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,High_D,0.95,406.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,Low_D,0.95,433.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,High_E,0.95,473.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,Low_E,0.95,518.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,High_F,0.95,581.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,Low_F,0.95,649.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,High_G,0.95,742,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.6,N/A,N/A,200,Low_G,0.95,841.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,High_B,0.95,425.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,Low_B,0.95,431.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,High_C,0.95,444.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,Low_C,0.95,460.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,High_D,0.95,486.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,Low_D,0.95,518.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,High_E,0.95,565.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,Low_E,0.95,617.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,High_F,0.95,691.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,Low_F,0.95,772.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,High_G,0.95,880.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.35,N/A,N/A,200,Low_G,0.95,997.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,High_B,0.95,454.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,Low_B,0.95,461.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,High_C,0.95,474.7,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,Low_C,0.95,491.6,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,High_D,0.95,519.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,Low_D,0.95,553,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,High_E,0.95,602.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,Low_E,0.95,658.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,High_F,0.95,736.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,Low_F,0.95,822.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,High_G,0.95,937.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.25,N/A,N/A,200,Low_G,0.95,1061.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,High_B,0.95,439.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,Low_B,0.95,446.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,High_C,0.95,459.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,Low_C,0.95,475.8,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,High_D,0.95,503.4,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,Low_D,0.95,535.5,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,High_E,0.95,583.9,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,Low_E,0.95,638,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,High_F,0.95,714.2,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,Low_F,0.95,797.3,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,High_G,0.95,909.1,N/A +External / Internal Wall Insulation,IWI_cavity_2.0_0.3,N/A,N/A,200,Low_G,0.95,1029.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,High_B,0.95,293.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,Low_B,0.95,297.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,High_C,0.95,306.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,Low_C,0.95,317.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,High_D,0.95,335.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,Low_D,0.95,357.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,High_E,0.95,389.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,Low_E,0.95,426.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,High_F,0.95,477.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,Low_F,0.95,533,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,High_G,0.95,608.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.55,N/A,N/A,200,Low_G,0.95,688.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,High_B,0.95,385.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,Low_B,0.95,390.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,High_C,0.95,401.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,Low_C,0.95,415.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,High_D,0.95,438.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,Low_D,0.95,465.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,High_E,0.95,507.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,Low_E,0.95,553.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,High_F,0.95,618.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,Low_F,0.95,689.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,High_G,0.95,784.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.23,N/A,N/A,200,Low_G,0.95,887.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,High_B,0.95,364.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,Low_B,0.95,369.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,High_C,0.95,380.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,Low_C,0.95,393.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,High_D,0.95,415.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,Low_D,0.95,441.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,High_E,0.95,481,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,Low_E,0.95,524.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,High_F,0.95,586.8,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,Low_F,0.95,654.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,High_G,0.95,745.5,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.3,N/A,N/A,200,Low_G,0.95,843.4,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,High_B,0.95,280,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,Low_B,0.95,283.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,High_C,0.95,292.2,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,Low_C,0.95,302.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,High_D,0.95,320.3,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,Low_D,0.95,340.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,High_E,0.95,371.9,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,Low_E,0.95,406.7,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,High_F,0.95,455.6,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,Low_F,0.95,509.1,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,High_G,0.95,581,N/A +External / Internal Wall Insulation,HWI_solid_1.7_0.6,N/A,N/A,200,Low_G,0.95,658.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,High_B,0.95,142,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,Low_B,0.95,143.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,High_C,0.95,147.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,Low_C,0.95,151.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,High_D,0.95,160.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,Low_D,0.95,170.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,High_E,0.95,185.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,Low_E,0.95,202.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,High_F,0.95,226.3,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,Low_F,0.95,252.7,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,High_G,0.95,288.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.45,N/A,N/A,200,Low_G,0.95,327.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,High_B,0.95,182.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,Low_B,0.95,184.7,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,High_C,0.95,189.3,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,Low_C,0.95,195.3,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,High_D,0.95,205.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,Low_D,0.95,218.3,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,High_E,0.95,237.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,Low_E,0.95,258.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,High_F,0.95,289.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,Low_F,0.95,323.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,High_G,0.95,368.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.3,N/A,N/A,200,Low_G,0.95,417.6,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,High_B,0.95,102.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,Low_B,0.95,103.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,High_C,0.95,105.9,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,Low_C,0.95,109.4,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,High_D,0.95,115.5,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,Low_D,0.95,122.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,High_E,0.95,133.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,Low_E,0.95,146.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,High_F,0.95,163.8,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,Low_F,0.95,183.1,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,High_G,0.95,209.2,N/A +External / Internal Wall Insulation,HWI_solid_1.0_0.6,N/A,N/A,200,Low_G,0.95,237.4,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,High_B,0.95,95.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,Low_B,0.95,95.8,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,High_C,0.95,97.8,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,Low_C,0.95,100.7,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,High_D,0.95,105.9,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,High_E,0.95,121.7,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,Low_E,0.95,132.7,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,High_F,0.95,148.3,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,Low_F,0.95,165.5,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,High_G,0.95,188.9,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.24,N/A,N/A,200,Low_G,0.95,214.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,High_B,0.95,78.8,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,Low_B,0.95,79.4,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,High_C,0.95,81.2,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,Low_C,0.95,83.6,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,High_D,0.95,87.9,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,Low_D,0.95,93.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,High_E,0.95,101.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,Low_E,0.95,110.3,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,High_F,0.95,123.3,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,Low_F,0.95,137.7,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,High_G,0.95,157.1,N/A +External / Internal Wall Insulation,HWI_solid_0.6_0.3,N/A,N/A,200,Low_G,0.95,178.2,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,High_B,0.95,63.5,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,Low_B,0.95,64,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,High_C,0.95,65.4,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,Low_C,0.95,67.3,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,High_D,0.95,70.7,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,Low_D,0.95,74.9,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,High_E,0.95,81.3,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,Low_E,0.95,88.6,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,High_F,0.95,99.1,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,Low_F,0.95,110.7,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,High_G,0.95,126.3,N/A +External / Internal Wall Insulation,HWI_solid_0.45_0.21,N/A,N/A,200,Low_G,0.95,143.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,High_B,0.95,353.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,Low_B,0.95,359.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,High_C,0.95,370.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,Low_C,0.95,383.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,High_D,0.95,406.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,Low_D,0.95,433.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,High_E,0.95,473.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,Low_E,0.95,518.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,High_F,0.95,581.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,Low_F,0.95,649.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,High_G,0.95,742,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.6,N/A,N/A,200,Low_G,0.95,841.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,High_B,0.95,425.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,Low_B,0.95,431.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,High_C,0.95,444.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,Low_C,0.95,460.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,High_D,0.95,486.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,Low_D,0.95,518.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,High_E,0.95,565.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,Low_E,0.95,617.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,High_F,0.95,691.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,Low_F,0.95,772.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,High_G,0.95,880.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.35,N/A,N/A,200,Low_G,0.95,997.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,High_B,0.95,454.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,Low_B,0.95,461.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,High_C,0.95,474.7,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,Low_C,0.95,491.6,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,High_D,0.95,519.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,Low_D,0.95,553,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,High_E,0.95,602.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,Low_E,0.95,658.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,High_F,0.95,736.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,Low_F,0.95,822.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,High_G,0.95,937.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.25,N/A,N/A,200,Low_G,0.95,1061.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,High_B,0.95,439.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,Low_B,0.95,446.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,High_C,0.95,459.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,Low_C,0.95,475.8,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,High_D,0.95,503.4,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,Low_D,0.95,535.5,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,High_E,0.95,583.9,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,Low_E,0.95,638,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,High_F,0.95,714.2,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,Low_F,0.95,797.3,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,High_G,0.95,909.1,N/A +External / Internal Wall Insulation,HWI_solid_2.0_0.3,N/A,N/A,200,Low_G,0.95,1029.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,High_B,0.95,293.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,Low_B,0.95,297.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,High_C,0.95,306.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,Low_C,0.95,317.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,High_D,0.95,335.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,Low_D,0.95,357.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,High_E,0.95,389.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,Low_E,0.95,426.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,High_F,0.95,477.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,Low_F,0.95,533,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,High_G,0.95,608.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.55,N/A,N/A,200,Low_G,0.95,688.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,High_B,0.95,385.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,Low_B,0.95,390.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,High_C,0.95,401.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,Low_C,0.95,415.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,High_D,0.95,438.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,Low_D,0.95,465.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,High_E,0.95,507.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,Low_E,0.95,553.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,High_F,0.95,618.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,Low_F,0.95,689.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,High_G,0.95,784.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.23,N/A,N/A,200,Low_G,0.95,887.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,High_B,0.95,364.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,Low_B,0.95,369.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,High_C,0.95,380.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,Low_C,0.95,393.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,High_D,0.95,415.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,Low_D,0.95,441.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,High_E,0.95,481,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,Low_E,0.95,524.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,High_F,0.95,586.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,Low_F,0.95,654.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,High_G,0.95,745.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.3,N/A,N/A,200,Low_G,0.95,843.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,High_B,0.95,280,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,Low_B,0.95,283.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,High_C,0.95,292.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,Low_C,0.95,302.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,High_D,0.95,320.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,Low_D,0.95,340.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,High_E,0.95,371.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,Low_E,0.95,406.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,High_F,0.95,455.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,Low_F,0.95,509.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,High_G,0.95,581,N/A +External / Internal Wall Insulation,HWI_cavity_1.7_0.6,N/A,N/A,200,Low_G,0.95,658.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,High_B,0.95,142,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,Low_B,0.95,143.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,High_C,0.95,147.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,Low_C,0.95,151.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,High_D,0.95,160.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,Low_D,0.95,170.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,High_E,0.95,185.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,Low_E,0.95,202.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,High_F,0.95,226.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,Low_F,0.95,252.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,High_G,0.95,288.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.45,N/A,N/A,200,Low_G,0.95,327.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,High_B,0.95,182.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,Low_B,0.95,184.7,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,High_C,0.95,189.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,Low_C,0.95,195.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,High_D,0.95,205.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,Low_D,0.95,218.3,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,High_E,0.95,237.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,Low_E,0.95,258.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,High_F,0.95,289.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,Low_F,0.95,323.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,High_G,0.95,368.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.3,N/A,N/A,200,Low_G,0.95,417.6,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,High_B,0.95,102.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,Low_B,0.95,103.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,High_C,0.95,105.9,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,Low_C,0.95,109.4,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,High_D,0.95,115.5,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,Low_D,0.95,122.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,High_E,0.95,133.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,Low_E,0.95,146.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,High_F,0.95,163.8,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,Low_F,0.95,183.1,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,High_G,0.95,209.2,N/A +External / Internal Wall Insulation,HWI_cavity_1.0_0.6,N/A,N/A,200,Low_G,0.95,237.4,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,High_B,0.95,95.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,Low_B,0.95,95.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,High_C,0.95,97.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,Low_C,0.95,100.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,High_D,0.95,105.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,Low_D,0.95,112.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,High_E,0.95,121.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,Low_E,0.95,132.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,High_F,0.95,148.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,Low_F,0.95,165.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,High_G,0.95,188.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.24,N/A,N/A,200,Low_G,0.95,214.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,High_B,0.95,78.8,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,Low_B,0.95,79.4,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,High_C,0.95,81.2,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,Low_C,0.95,83.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,High_D,0.95,87.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,Low_D,0.95,93.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,High_E,0.95,101.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,Low_E,0.95,110.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,High_F,0.95,123.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,Low_F,0.95,137.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,High_G,0.95,157.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.6_0.3,N/A,N/A,200,Low_G,0.95,178.2,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,High_B,0.95,63.5,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,Low_B,0.95,64,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,High_C,0.95,65.4,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,Low_C,0.95,67.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,High_D,0.95,70.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,Low_D,0.95,74.9,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,High_E,0.95,81.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,Low_E,0.95,88.6,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,High_F,0.95,99.1,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,Low_F,0.95,110.7,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,High_G,0.95,126.3,N/A +External / Internal Wall Insulation,HWI_cavity_0.45_0.21,N/A,N/A,200,Low_G,0.95,143.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,High_B,0.95,353.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,Low_B,0.95,359.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,High_C,0.95,370.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,Low_C,0.95,383.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,High_D,0.95,406.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,Low_D,0.95,433.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,High_E,0.95,473.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,Low_E,0.95,518.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,High_F,0.95,581.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,Low_F,0.95,649.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,High_G,0.95,742,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.6,N/A,N/A,200,Low_G,0.95,841.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,High_B,0.95,425.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,Low_B,0.95,431.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,High_C,0.95,444.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,Low_C,0.95,460.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,High_D,0.95,486.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,Low_D,0.95,518.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,High_E,0.95,565.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,Low_E,0.95,617.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,High_F,0.95,691.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,Low_F,0.95,772.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,High_G,0.95,880.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.35,N/A,N/A,200,Low_G,0.95,997.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,High_B,0.95,454.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,Low_B,0.95,461.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,High_C,0.95,474.7,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,Low_C,0.95,491.6,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,High_D,0.95,519.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,Low_D,0.95,553,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,High_E,0.95,602.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,Low_E,0.95,658.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,High_F,0.95,736.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,Low_F,0.95,822.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,High_G,0.95,937.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.25,N/A,N/A,200,Low_G,0.95,1061.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,High_B,0.95,439.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,Low_B,0.95,446.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,High_C,0.95,459.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,Low_C,0.95,475.8,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,High_D,0.95,503.4,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,Low_D,0.95,535.5,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,High_E,0.95,583.9,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,Low_E,0.95,638,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,High_F,0.95,714.2,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,Low_F,0.95,797.3,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,High_G,0.95,909.1,N/A +External / Internal Wall Insulation,HWI_cavity_2.0_0.3,N/A,N/A,200,Low_G,0.95,1029.2,N/A +Fixed Value Increase,B_Broken_Repair,N/A,N/A,0-72,N/A,1,168,N/A +Fixed Value Increase,B_Broken_Repair,N/A,N/A,73-97,N/A,1,154,N/A +Fixed Value Increase,B_Broken_Repair,N/A,N/A,98-199,N/A,1,140,N/A +Fixed Value Increase,B_Broken_Repair,N/A,N/A,200,N/A,1,140,N/A +Fixed Value Increase,B_Broken_Replace,N/A,N/A,0-72,N/A,1,169,N/A +Fixed Value Increase,B_Broken_Replace,N/A,N/A,73-97,N/A,1,154,N/A +Fixed Value Increase,B_Broken_Replace,N/A,N/A,98-199,N/A,1,140,N/A +Fixed Value Increase,B_Broken_Replace,N/A,N/A,200,N/A,1,140,N/A +Fixed Value Increase,BFR_High,N/A,N/A,0-72,N/A,1,42.1,N/A +Fixed Value Increase,BFR_High,N/A,N/A,73-97,N/A,1,42.1,N/A +Fixed Value Increase,BFR_High,N/A,N/A,98-199,N/A,1,42.1,N/A +Fixed Value Increase,BFR_High,N/A,N/A,200,N/A,1,42.1,N/A +Fixed Value Increase,BFR_Highest,N/A,N/A,0-72,N/A,1,70.2,N/A +Fixed Value Increase,BFR_Highest,N/A,N/A,73-97,N/A,1,70.2,N/A +Fixed Value Increase,BFR_Highest,N/A,N/A,98-199,N/A,1,70.2,N/A +Fixed Value Increase,BFR_Highest,N/A,N/A,200,N/A,1,70.2,N/A +Fixed Value Increase,BFR_Low,N/A,N/A,0-72,N/A,1,7,N/A +Fixed Value Increase,BFR_Low,N/A,N/A,73-97,N/A,1,7,N/A +Fixed Value Increase,BFR_Low,N/A,N/A,98-199,N/A,1,7,N/A +Fixed Value Increase,BFR_Low,N/A,N/A,200,N/A,1,7,N/A +Fixed Value Increase,BFR_Medium,N/A,N/A,0-72,N/A,1,19.7,N/A +Fixed Value Increase,BFR_Medium,N/A,N/A,73-97,N/A,1,19.7,N/A +Fixed Value Increase,BFR_Medium,N/A,N/A,98-199,N/A,1,19.7,N/A +Fixed Value Increase,BFR_Medium,N/A,N/A,200,N/A,1,19.7,N/A +Fixed Value Increase,ESH_Broken_Repair,N/A,N/A,0-72,N/A,1,48,N/A +Fixed Value Increase,ESH_Broken_Repair,N/A,N/A,73-97,N/A,1,44,N/A +Fixed Value Increase,ESH_Broken_Repair,N/A,N/A,98-199,N/A,1,40,N/A +Fixed Value Increase,ESH_Broken_Repair,N/A,N/A,200,N/A,1,40,N/A +Fixed Value Increase,ESH_Broken_Replace,N/A,N/A,0-72,N/A,1,48,N/A +Fixed Value Increase,ESH_Broken_Replace,N/A,N/A,73-97,N/A,1,44,N/A +Fixed Value Increase,ESH_Broken_Replace,N/A,N/A,98-199,N/A,1,40,N/A +Fixed Value Increase,ESH_Broken_Replace,N/A,N/A,200,N/A,1,40,N/A +Other Insulation,PRI,N/A,N/A,0-72,High_D,0.95,157.9,N/A +Other Insulation,PRI,N/A,N/A,0-72,Low_D,0.95,166.3,N/A +Other Insulation,PRI,N/A,N/A,0-72,High_E,0.95,179.3,N/A +Other Insulation,PRI,N/A,N/A,0-72,Low_E,0.95,194,N/A +Other Insulation,PRI,N/A,N/A,0-72,High_F,0.95,215,N/A +Other Insulation,PRI,N/A,N/A,0-72,Low_F,0.95,238.2,N/A +Other Insulation,PRI,N/A,N/A,0-72,High_G,0.95,269.6,N/A +Other Insulation,PRI,N/A,N/A,0-72,Low_G,0.95,303.6,N/A +Other Insulation,PRI,N/A,N/A,73-97,High_D,0.95,81.8,N/A +Other Insulation,PRI,N/A,N/A,73-97,Low_D,0.95,86.7,N/A +Other Insulation,PRI,N/A,N/A,73-97,High_E,0.95,94.6,N/A +Other Insulation,PRI,N/A,N/A,73-97,Low_E,0.95,103.7,N/A +Other Insulation,PRI,N/A,N/A,73-97,High_F,0.95,116.9,N/A +Other Insulation,PRI,N/A,N/A,73-97,Low_F,0.95,131.7,N/A +Other Insulation,PRI,N/A,N/A,73-97,High_G,0.95,151.8,N/A +Other Insulation,PRI,N/A,N/A,73-97,Low_G,0.95,173.8,N/A +Other Insulation,PRI,N/A,N/A,98-199,High_D,0.95,92.8,N/A +Other Insulation,PRI,N/A,N/A,98-199,Low_D,0.95,98.5,N/A +Other Insulation,PRI,N/A,N/A,98-199,High_E,0.95,107.5,N/A +Other Insulation,PRI,N/A,N/A,98-199,Low_E,0.95,117.9,N/A +Other Insulation,PRI,N/A,N/A,98-199,High_F,0.95,132.9,N/A +Other Insulation,PRI,N/A,N/A,98-199,Low_F,0.95,149.5,N/A +Other Insulation,PRI,N/A,N/A,98-199,High_G,0.95,172.1,N/A +Other Insulation,PRI,N/A,N/A,98-199,Low_G,0.95,196.7,N/A +Other Insulation,PRI,N/A,N/A,200,High_D,0.95,144,N/A +Other Insulation,PRI,N/A,N/A,200,Low_D,0.95,153.3,N/A +Other Insulation,PRI,N/A,N/A,200,High_E,0.95,167.8,N/A +Other Insulation,PRI,N/A,N/A,200,Low_E,0.95,184.3,N/A +Other Insulation,PRI,N/A,N/A,200,High_F,0.95,207.8,N/A +Other Insulation,PRI,N/A,N/A,200,Low_F,0.95,233.8,N/A +Other Insulation,PRI,N/A,N/A,200,High_G,0.95,269,N/A +Other Insulation,PRI,N/A,N/A,200,Low_G,0.95,307.1,N/A +Other Insulation,PHI,N/A,N/A,98-199,High_B,1,66.4,N/A +Other Insulation,PHI,N/A,N/A,98-199,Low_B,1,70.5,N/A +Other Insulation,PHI,N/A,N/A,98-199,High_C,1,76.7,N/A +Other Insulation,PHI,N/A,N/A,98-199,Low_C,1,82.9,N/A +Other Insulation,PHI,N/A,N/A,98-199,High_D,1,92.1,N/A +Other Insulation,PHI,N/A,N/A,98-199,Low_D,1,101.8,N/A +Other Insulation,PHI,N/A,N/A,98-199,High_E,1,115.3,N/A +Other Insulation,PHI,N/A,N/A,98-199,Low_E,1,129.5,N/A +Other Insulation,PHI,N/A,N/A,98-199,High_F,1,148.6,N/A +Other Insulation,PHI,N/A,N/A,98-199,Low_F,1,168.7,N/A +Other Insulation,PHI,N/A,N/A,98-199,High_G,1,194.8,N/A +Other Insulation,PHI,N/A,N/A,98-199,Low_G,1,222.1,N/A +Other Insulation,PHI,N/A,N/A,73-97,High_B,1,80.2,N/A +Other Insulation,PHI,N/A,N/A,73-97,Low_B,1,85.2,N/A +Other Insulation,PHI,N/A,N/A,73-97,High_C,1,92.6,N/A +Other Insulation,PHI,N/A,N/A,73-97,Low_C,1,100.2,N/A +Other Insulation,PHI,N/A,N/A,73-97,High_D,1,111.2,N/A +Other Insulation,PHI,N/A,N/A,73-97,Low_D,1,122.8,N/A +Other Insulation,PHI,N/A,N/A,73-97,High_E,1,138.9,N/A +Other Insulation,PHI,N/A,N/A,73-97,Low_E,1,155.9,N/A +Other Insulation,PHI,N/A,N/A,73-97,High_F,1,178.6,N/A +Other Insulation,PHI,N/A,N/A,73-97,Low_F,1,202.4,N/A +Other Insulation,PHI,N/A,N/A,73-97,High_G,1,233.5,N/A +Other Insulation,PHI,N/A,N/A,73-97,Low_G,1,265.9,N/A +Other Insulation,PHI,N/A,N/A,0-72,High_B,1,88.3,N/A +Other Insulation,PHI,N/A,N/A,0-72,Low_B,1,93.8,N/A +Other Insulation,PHI,N/A,N/A,0-72,High_C,1,101.9,N/A +Other Insulation,PHI,N/A,N/A,0-72,Low_C,1,110.2,N/A +Other Insulation,PHI,N/A,N/A,0-72,High_D,1,122.3,N/A +Other Insulation,PHI,N/A,N/A,0-72,Low_D,1,135,N/A +Other Insulation,PHI,N/A,N/A,0-72,High_E,1,152.8,N/A +Other Insulation,PHI,N/A,N/A,0-72,Low_E,1,171.4,N/A +Other Insulation,PHI,N/A,N/A,0-72,High_F,1,196.5,N/A +Other Insulation,PHI,N/A,N/A,0-72,Low_F,1,222.7,N/A +Other Insulation,PHI,N/A,N/A,0-72,High_G,1,256.8,N/A +Other Insulation,PHI,N/A,N/A,0-72,Low_G,1,292.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,High_D,0.96,380.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,Low_D,0.96,486,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,High_E,0.96,615.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,Low_E,0.96,739.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,High_F,0.96,913.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,Low_F,0.96,1107.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,High_G,0.96,1380.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,0-72,Low_G,0.96,1691.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,High_D,0.96,399.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,Low_D,0.96,504.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,High_E,0.96,633.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,Low_E,0.96,757.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,High_F,0.96,931.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,Low_F,0.96,1125.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,High_G,0.96,1398.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,73-97,Low_G,0.96,1709.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,High_D,0.96,438,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,Low_D,0.96,547.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,High_E,0.96,680.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,Low_E,0.96,808.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,High_F,0.96,988.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,Low_F,0.96,1188.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,High_G,0.96,1470.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,98-199,Low_G,0.96,1792.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,High_D,0.96,818.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,Low_D,0.96,996.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,High_E,0.96,1217.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,Low_E,0.96,1430.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,High_F,0.96,1729.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,Low_F,0.96,2062.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,High_G,0.96,2530.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Fuel Cell mCHP,200,Low_G,0.96,3064.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,High_D,0.96,189.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,Low_D,0.96,225.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,High_E,0.96,269.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,Low_E,0.96,312.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,High_F,0.96,371.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,Low_F,0.96,437.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,High_G,0.96,530.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,0-72,Low_G,0.96,637.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,High_D,0.96,204.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,Low_D,0.96,243.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,High_E,0.96,291,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,Low_E,0.96,336.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,High_F,0.96,401,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,Low_F,0.96,472.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,High_G,0.96,573.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,73-97,Low_G,0.96,688.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,High_D,0.96,234.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,Low_D,0.96,279.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,High_E,0.96,334.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,Low_E,0.96,387.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,High_F,0.96,461,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,Low_F,0.96,543.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,High_G,0.96,659.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,98-199,Low_G,0.96,791.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,High_D,0.96,418.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,Low_D,0.96,496.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,High_E,0.96,594.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,Low_E,0.96,688.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,High_F,0.96,819.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,Low_F,0.96,966.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,High_G,0.96,1173,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,GSHP,200,Low_G,0.96,1408.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,High_D,0.96,133.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,Low_D,0.96,157.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,High_E,0.96,186.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,Low_E,0.96,214.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,High_F,0.96,253.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,Low_F,0.96,297.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,High_G,0.96,358.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,0-72,Low_G,0.96,429,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,High_D,0.96,142.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,Low_D,0.96,168.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,High_E,0.96,199.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,Low_E,0.96,230,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,High_F,0.96,272.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,Low_F,0.96,319.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,High_G,0.96,386,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,73-97,Low_G,0.96,461.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,High_D,0.96,162,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,Low_D,0.96,191.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,High_E,0.96,227.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,Low_E,0.96,262.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,High_F,0.96,311.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,Low_F,0.96,365.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,High_G,0.96,442,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,98-199,Low_G,0.96,529.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,High_D,0.96,283,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,Low_D,0.96,334.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,High_E,0.96,399.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,Low_E,0.96,461,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,High_F,0.96,547.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,Low_F,0.96,644.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,High_G,0.96,780.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Air to Water ASHP,200,Low_G,0.96,936.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,High_D,0.96,181.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,Low_D,0.96,215.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,High_E,0.96,257.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,Low_E,0.96,297.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,High_F,0.96,353.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,Low_F,0.96,416.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,High_G,0.96,504.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,0-72,Low_G,0.96,605.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,High_D,0.96,195.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,Low_D,0.96,232.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,High_E,0.96,277.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,Low_E,0.96,320.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,High_F,0.96,381.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,Low_F,0.96,449.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,High_G,0.96,544.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,73-97,Low_G,0.96,653.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,High_D,0.96,223.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,Low_D,0.96,266.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,High_E,0.96,318.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,Low_E,0.96,368.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,High_F,0.96,438.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,Low_F,0.96,516.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,High_G,0.96,626.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,98-199,Low_G,0.96,751.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,High_D,0.96,397.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,Low_D,0.96,472.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,High_E,0.96,564.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,Low_E,0.96,653.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,High_F,0.96,778.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,Low_F,0.96,918,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,High_G,0.96,1113.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Biomass Boiler,200,Low_G,0.96,1397.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,High_D,0.96,123,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,Low_D,0.96,172.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,High_E,0.96,232.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,Low_E,0.96,290.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,High_F,0.96,371.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,Low_F,0.96,461.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,High_G,0.96,588.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,0-72,Low_G,0.96,734.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,High_D,0.96,155.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,Low_D,0.96,208.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,High_E,0.96,273.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,Low_E,0.96,336.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,High_F,0.96,423.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,Low_F,0.96,521.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,High_G,0.96,659.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,73-97,Low_G,0.96,816.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,High_D,0.96,209.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,Low_D,0.96,270.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,High_E,0.96,345.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,Low_E,0.96,417.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,High_F,0.96,518.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,Low_F,0.96,630.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,High_G,0.96,788.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,98-199,Low_G,0.96,969.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,High_D,0.96,460,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,Low_D,0.96,567,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,High_E,0.96,700.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,Low_E,0.96,828.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,High_F,0.96,1008.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,Low_F,0.96,1208.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,High_G,0.96,1490.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,Condensing Gas Boiler,200,Low_G,0.96,1812.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,High_D,0.96,499,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,Low_D,0.96,557,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,High_E,0.96,702,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,Low_E,0.96,841.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,High_F,0.96,1037,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,Low_F,0.96,1255.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,High_G,0.96,1561.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,0-72,Low_G,0.96,1911.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,High_D,0.96,488,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,Low_D,0.96,613.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,High_E,0.96,765.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,Low_E,0.96,912.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,High_F,0.96,1118.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,Low_F,0.96,1348.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,High_G,0.96,1671.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,73-97,Low_G,0.96,2040.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,High_D,0.96,579.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,Low_D,0.96,718.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,High_E,0.96,889,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,Low_E,0.96,1052.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,High_F,0.96,1281.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,Low_F,0.96,1537.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,High_G,0.96,1897.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,98-199,Low_G,0.96,2308,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,200,High_D,0.96,1124.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,200,Low_D,0.96,1362.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,200,High_E,0.96,1659.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,200,Low_E,0.96,1945.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,200,High_F,0.96,2345.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,200,Low_F,0.96,2793,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,200,High_G,0.96,3420.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Fuel Cell mCHP,200,Low_G,0.96,4138,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,High_D,0.96,387.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,Low_D,0.96,496.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,High_E,0.96,628.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,Low_E,0.96,755.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,High_F,0.96,933.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,Low_F,0.96,1132.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,High_G,0.96,1411.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,0-72,Low_G,0.96,1730.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,High_D,0.96,411.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,Low_D,0.96,521.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,High_E,0.96,654.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,Low_E,0.96,782.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,High_F,0.96,963,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,Low_F,0.96,1163.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,High_G,0.96,1445.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,73-97,Low_G,0.96,1768.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,High_D,0.96,459.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,Low_D,0.96,574.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,High_E,0.96,715,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,Low_E,0.96,849.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,High_F,0.96,1039,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,Low_F,0.96,1250.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,High_G,0.96,1546.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,98-199,Low_G,0.96,1885.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,200,High_D,0.96,870.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,200,Low_D,0.96,1060.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,200,High_E,0.96,1295.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,200,Low_E,0.96,1522.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,200,High_F,0.96,1840.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,200,Low_F,0.96,2195.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,200,High_G,0.96,2693.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Fuel Cell mCHP,200,Low_G,0.96,3263,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,High_D,0.96,402.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,509.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,High_E,0.96,640.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,766.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,High_F,0.96,943,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1139.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1416.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1732.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,High_D,0.96,429.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,536.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,High_E,0.96,668.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,795,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,High_F,0.96,972.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1170.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1448.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1766.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,High_D,0.96,478,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,590.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,High_E,0.96,728,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,860,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,High_F,0.96,1045.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1252.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1542.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,1874.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,200,High_D,0.96,880.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,200,Low_D,0.96,1065.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,200,High_E,0.96,1295.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,200,Low_E,0.96,1516.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,200,High_F,0.96,1826.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,200,Low_F,0.96,2172.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,200,High_G,0.96,2658.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Fuel Cell mCHP,200,Low_G,0.96,3213.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,0-72,High_D,0.96,388,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,0-72,Low_D,0.96,491.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,0-72,High_E,0.96,617.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,0-72,Low_E,0.96,738.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,0-72,High_F,0.96,908.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,0-72,Low_F,0.96,1098.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,0-72,High_G,0.96,1364.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,0-72,Low_G,0.96,1669.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,73-97,High_D,0.96,405.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,73-97,Low_D,0.96,507.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,73-97,High_E,0.96,632.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,73-97,Low_E,0.96,752.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,73-97,High_F,0.96,920.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,73-97,Low_F,0.96,1107.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,73-97,High_G,0.96,1370.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,73-97,Low_G,0.96,1671.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,98-199,High_D,0.96,439.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,98-199,Low_D,0.96,543.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,98-199,High_E,0.96,669.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,98-199,Low_E,0.96,791.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,98-199,High_F,0.96,961.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,98-199,Low_F,0.96,1152.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,98-199,High_G,0.96,1419.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,98-199,Low_G,0.96,1724.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,200,High_D,0.96,794.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,200,Low_D,0.96,960.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,200,High_E,0.96,1168.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,200,Low_E,0.96,1367.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,200,High_F,0.96,1647.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,200,Low_F,0.96,1959.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,200,High_G,0.96,2397.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Fuel Cell mCHP,200,Low_G,0.96,2898.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,0-72,High_D,0.96,426.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,0-72,Low_D,0.96,543.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,0-72,High_E,0.96,685.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,0-72,Low_E,0.96,821.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,0-72,High_F,0.96,1013.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,0-72,Low_F,0.96,1227.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,0-72,High_G,0.96,1527.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,0-72,Low_G,0.96,1870.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,73-97,High_D,0.96,470.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,73-97,Low_D,0.96,592.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,73-97,High_E,0.96,740.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,73-97,Low_E,0.96,883.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,73-97,High_F,0.96,1083.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,73-97,Low_F,0.96,1307,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,73-97,High_G,0.96,1620.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,73-97,Low_G,0.96,1979,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,98-199,High_D,0.96,552.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,98-199,Low_D,0.96,686.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,98-199,High_E,0.96,849.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,98-199,Low_E,0.96,1006.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,98-199,High_F,0.96,1227.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,98-199,Low_F,0.96,1473.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,98-199,High_G,0.96,1818.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,98-199,Low_G,0.96,2212.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,200,High_D,0.96,1067.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,200,Low_D,0.96,1294.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,200,High_E,0.96,1577.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,200,Low_E,0.96,1849.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,200,High_F,0.96,2232.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,200,Low_F,0.96,2658.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,200,High_G,0.96,3256.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Fuel Cell mCHP,200,Low_G,0.96,3941,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,0-72,High_D,0.96,487.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,0-72,Low_D,0.96,532.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,0-72,High_E,0.96,645.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,0-72,Low_E,0.96,754.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,0-72,High_F,0.96,906.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,0-72,Low_F,0.96,1076.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,0-72,High_G,0.96,1315.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,0-72,Low_G,0.96,1587.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,73-97,High_D,0.96,591.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,73-97,Low_D,0.96,591.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,73-97,High_E,0.96,704.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,73-97,Low_E,0.96,821.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,73-97,High_F,0.96,986.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,73-97,Low_F,0.96,1170,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,73-97,High_G,0.96,1427.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,73-97,Low_G,0.96,1722.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,98-199,High_D,0.96,705,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,98-199,Low_D,0.96,705,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,98-199,High_E,0.96,820,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,98-199,Low_E,0.96,955,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,98-199,High_F,0.96,1144.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,98-199,Low_F,0.96,1356,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,98-199,High_G,0.96,1652.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,98-199,Low_G,0.96,1992.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,200,High_D,0.96,1314,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,200,Low_D,0.96,1314,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,200,High_E,0.96,1486.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,200,Low_E,0.96,1727,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,200,High_F,0.96,2064.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,200,Low_F,0.96,2441.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,200,High_G,0.96,2970.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,GSHP,200,Low_G,0.96,3575.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,0-72,High_D,0.96,222.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,0-72,Low_D,0.96,269.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,0-72,High_E,0.96,326.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,0-72,Low_E,0.96,381.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,0-72,High_F,0.96,458.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,0-72,Low_F,0.96,544.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,0-72,High_G,0.96,665.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,0-72,Low_G,0.96,803.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,73-97,High_D,0.96,243.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,73-97,Low_D,0.96,294.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,73-97,High_E,0.96,356.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,73-97,Low_E,0.96,415.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,73-97,High_F,0.96,498.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,73-97,Low_F,0.96,591.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,73-97,High_G,0.96,722.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,73-97,Low_G,0.96,871.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,98-199,High_D,0.96,285.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,98-199,Low_D,0.96,343.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,98-199,High_E,0.96,414.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,98-199,Low_E,0.96,483.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,98-199,High_F,0.96,579,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,98-199,Low_F,0.96,685.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,98-199,High_G,0.96,836.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,98-199,Low_G,0.96,1007.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,200,High_D,0.96,523.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,200,Low_D,0.96,625.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,200,High_E,0.96,751.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,200,Low_E,0.96,873.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,200,High_F,0.96,1044.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,200,Low_F,0.96,1235.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,200,High_G,0.96,1502.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,GSHP,200,Low_G,0.96,1808.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,0-72,High_D,0.96,286.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,0-72,Low_D,0.96,328.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,0-72,High_E,0.96,380.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,0-72,Low_E,0.96,430.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,0-72,High_F,0.96,500.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,0-72,Low_F,0.96,578.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,0-72,High_G,0.96,687.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,0-72,Low_G,0.96,812.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,73-97,High_D,0.96,297.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,73-97,Low_D,0.96,343.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,73-97,High_E,0.96,399.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,73-97,Low_E,0.96,453.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,73-97,High_F,0.96,529,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,73-97,Low_F,0.96,613.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,73-97,High_G,0.96,731.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,73-97,Low_G,0.96,866.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,98-199,High_D,0.96,327.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,98-199,Low_D,0.96,380.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,98-199,High_E,0.96,445.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,98-199,Low_E,0.96,507,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,98-199,High_F,0.96,594,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,98-199,Low_F,0.96,691,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,98-199,High_G,0.96,827.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,98-199,Low_G,0.96,982.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,200,High_D,0.96,543.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,200,Low_D,0.96,635.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,200,High_E,0.96,750.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,200,Low_E,0.96,861.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,200,High_F,0.96,1016.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,200,Low_F,0.96,1189,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,200,High_G,0.96,1431.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,GSHP,200,Low_G,0.96,1709.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,0-72,High_D,0.96,222.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,0-72,Low_D,0.96,248.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,0-72,High_E,0.96,279.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,0-72,Low_E,0.96,309.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,0-72,High_F,0.96,351.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,0-72,Low_F,0.96,398.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,0-72,High_G,0.96,464.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,0-72,Low_G,0.96,540.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,73-97,High_D,0.96,225.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,73-97,Low_D,0.96,253,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,73-97,High_E,0.96,286.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,73-97,Low_E,0.96,319.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,73-97,High_F,0.96,364.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,73-97,Low_F,0.96,415.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,73-97,High_G,0.96,486.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,73-97,Low_G,0.96,568.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,98-199,High_D,0.96,238.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,98-199,Low_D,0.96,270.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,98-199,High_E,0.96,309.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,98-199,Low_E,0.96,346.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,98-199,High_F,0.96,399.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,98-199,Low_F,0.96,457.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,98-199,High_G,0.96,540,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,98-199,Low_G,0.96,633.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,200,High_D,0.96,369,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,200,Low_D,0.96,424.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,200,High_E,0.96,493.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,200,Low_E,0.96,560.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,200,High_F,0.96,654,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,200,Low_F,0.96,758.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,200,High_G,0.96,904.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,GSHP,200,Low_G,0.96,1071.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,0-72,High_D,0.96,391.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,0-72,Low_D,0.96,473.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,0-72,High_E,0.96,573.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,0-72,Low_E,0.96,670.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,0-72,High_F,0.96,805.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,0-72,Low_F,0.96,956.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,0-72,High_G,0.96,1168.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,0-72,Low_G,0.96,1411.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,73-97,High_D,0.96,428.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,73-97,Low_D,0.96,517.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,73-97,High_E,0.96,625.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,73-97,Low_E,0.96,730.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,73-97,High_F,0.96,876.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,73-97,Low_F,0.96,1039.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,73-97,High_G,0.96,1269,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,73-97,Low_G,0.96,1531.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,98-199,High_D,0.96,501.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,98-199,Low_D,0.96,603.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,98-199,High_E,0.96,728.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,98-199,Low_E,0.96,848.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,98-199,High_F,0.96,1017.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,98-199,Low_F,0.96,1205.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,98-199,High_G,0.96,1468.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,98-199,Low_G,0.96,1770.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,200,High_D,0.96,919.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,200,Low_D,0.96,1098.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,200,High_E,0.96,1321,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,200,Low_E,0.96,1534.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,200,High_F,0.96,1835.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,200,Low_F,0.96,2170,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,200,High_G,0.96,2640.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,GSHP,200,Low_G,0.96,3177.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,0-72,High_D,0.96,462.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,0-72,Low_D,0.96,505.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,0-72,High_E,0.96,612.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,0-72,Low_E,0.96,715.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,0-72,High_F,0.96,860.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,0-72,Low_F,0.96,1021.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,0-72,High_G,0.96,1248.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,0-72,Low_G,0.96,1507.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,73-97,High_D,0.96,561.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,73-97,Low_D,0.96,561.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,73-97,High_E,0.96,668.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,73-97,Low_E,0.96,779.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,73-97,High_F,0.96,936.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,73-97,Low_F,0.96,1110.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,73-97,High_G,0.96,1355.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,73-97,Low_G,0.96,1635.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,98-199,High_D,0.96,669.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,98-199,Low_D,0.96,669.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,98-199,High_E,0.96,778.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,98-199,Low_E,0.96,906.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,98-199,High_F,0.96,1086.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,98-199,Low_F,0.96,1287.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,98-199,High_G,0.96,1569,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,98-199,Low_G,0.96,1891.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,200,High_D,0.96,1247.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,200,Low_D,0.96,1247.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,200,High_E,0.96,1411.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,200,Low_E,0.96,1639.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,200,High_F,0.96,1960.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,200,Low_F,0.96,2318,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,200,High_G,0.96,2820.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Air to Water ASHP,200,Low_G,0.96,3394.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,0-72,High_D,0.96,171.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,0-72,Low_D,0.96,207.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,0-72,High_E,0.96,251.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,0-72,Low_E,0.96,293.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,0-72,High_F,0.96,352.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,0-72,Low_F,0.96,418.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,0-72,High_G,0.96,511.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,0-72,Low_G,0.96,617.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,73-97,High_D,0.96,187.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,73-97,Low_D,0.96,226.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,73-97,High_E,0.96,273.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,73-97,Low_E,0.96,319.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,73-97,High_F,0.96,383.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,73-97,Low_F,0.96,455,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,73-97,High_G,0.96,555.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,73-97,Low_G,0.96,670,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,98-199,High_D,0.96,219.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,98-199,Low_D,0.96,264.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,98-199,High_E,0.96,318.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,98-199,Low_E,0.96,371.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,98-199,High_F,0.96,445.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,98-199,Low_F,0.96,527.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,98-199,High_G,0.96,642.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,98-199,Low_G,0.96,774.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,200,High_D,0.96,402.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,200,Low_D,0.96,480.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,200,High_E,0.96,578.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,200,Low_E,0.96,671.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,200,High_F,0.96,803.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,200,Low_F,0.96,949.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,200,High_G,0.96,1155.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Air to Water ASHP,200,Low_G,0.96,1390.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,0-72,High_D,0.96,243.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,0-72,Low_D,0.96,274.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,0-72,High_E,0.96,312.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,0-72,Low_E,0.96,348.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,0-72,High_F,0.96,399.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,0-72,Low_F,0.96,456.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,0-72,High_G,0.96,536.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,0-72,Low_G,0.96,628.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,73-97,High_D,0.96,248.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,73-97,Low_D,0.96,282.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,73-97,High_E,0.96,323.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,73-97,Low_E,0.96,362.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,73-97,High_F,0.96,417.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,73-97,Low_F,0.96,479.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,73-97,High_G,0.96,565.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,73-97,Low_G,0.96,664.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,98-199,High_D,0.96,267.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,98-199,Low_D,0.96,306.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,98-199,High_E,0.96,353.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,98-199,Low_E,0.96,398.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,98-199,High_F,0.96,462.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,98-199,Low_F,0.96,533.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,98-199,High_G,0.96,632.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,98-199,Low_G,0.96,746.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,200,High_D,0.96,425.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,200,Low_D,0.96,492.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,200,High_E,0.96,576.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,200,Low_E,0.96,657.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,200,High_F,0.96,770.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,200,Low_F,0.96,897.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,200,High_G,0.96,1074.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Air to Water ASHP,200,Low_G,0.96,1277.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,0-72,High_D,0.96,171.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,0-72,Low_D,0.96,183.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,0-72,High_E,0.96,197.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,0-72,Low_E,0.96,211.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,0-72,High_F,0.96,231.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,0-72,Low_F,0.96,253.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,0-72,High_G,0.96,284,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,0-72,Low_G,0.96,319.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,73-97,High_D,0.96,166.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,73-97,Low_D,0.96,179.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,73-97,High_E,0.96,195,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,73-97,Low_E,0.96,210.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,73-97,High_F,0.96,231.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,73-97,Low_F,0.96,254.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,73-97,High_G,0.96,288.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,73-97,Low_G,0.96,326,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,98-199,High_D,0.96,166.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,98-199,Low_D,0.96,181.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,98-199,High_E,0.96,199.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,98-199,Low_E,0.96,216.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,98-199,High_F,0.96,241.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,98-199,Low_F,0.96,268.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,98-199,High_G,0.96,306.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,98-199,Low_G,0.96,350.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,200,High_D,0.96,227.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,200,Low_D,0.96,252.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,200,High_E,0.96,285.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,200,Low_E,0.96,316.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,200,High_F,0.96,359.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,200,Low_F,0.96,408.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,200,High_G,0.96,476.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Air to Water ASHP,200,Low_G,0.96,553.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,0-72,High_D,0.96,362.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,0-72,Low_D,0.96,438.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,0-72,High_E,0.96,531.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,0-72,Low_E,0.96,621.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,0-72,High_F,0.96,746.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,0-72,Low_F,0.96,886.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,0-72,High_G,0.96,1083.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,0-72,Low_G,0.96,1307.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,73-97,High_D,0.96,397.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,73-97,Low_D,0.96,479.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,73-97,High_E,0.96,580.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,73-97,Low_E,0.96,676.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,73-97,High_F,0.96,812.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,73-97,Low_F,0.96,963.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,73-97,High_G,0.96,1176.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,73-97,Low_G,0.96,1419,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,98-199,High_D,0.96,464.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,98-199,Low_D,0.96,559.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,98-199,High_E,0.96,675.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,98-199,Low_E,0.96,786.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,98-199,High_F,0.96,942.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,98-199,Low_F,0.96,1116.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,98-199,High_G,0.96,1361.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,98-199,Low_G,0.96,1640.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,200,High_D,0.96,852.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,200,Low_D,0.96,1018,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,200,High_E,0.96,1224.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,200,Low_E,0.96,1422.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,200,High_F,0.96,1700.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,200,Low_F,0.96,2011.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,200,High_G,0.96,2446.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Air to Water ASHP,200,Low_G,0.96,2945,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,0-72,High_D,0.96,483.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,0-72,Low_D,0.96,528.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,0-72,High_E,0.96,640.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,0-72,Low_E,0.96,748.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,0-72,High_F,0.96,899.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,0-72,Low_F,0.96,1068.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,0-72,High_G,0.96,1305.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,0-72,Low_G,0.96,1575.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,73-97,High_D,0.96,587.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,73-97,Low_D,0.96,587.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,73-97,High_E,0.96,698.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,73-97,Low_E,0.96,815.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,73-97,High_F,0.96,978.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,73-97,Low_F,0.96,1161.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,73-97,High_G,0.96,1417.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,73-97,Low_G,0.96,1709.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,98-199,High_D,0.96,699.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,98-199,Low_D,0.96,699.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,98-199,High_E,0.96,813.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,98-199,Low_E,0.96,947.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,98-199,High_F,0.96,1135.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,98-199,Low_F,0.96,1345.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,98-199,High_G,0.96,1640.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,98-199,Low_G,0.96,1977.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,200,High_D,0.96,1304,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,200,Low_D,0.96,1304,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,200,High_E,0.96,1475.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,200,Low_E,0.96,1713.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,200,High_F,0.96,2049.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,200,Low_F,0.96,2423.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,200,High_G,0.96,2948.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Biomass Boiler,200,Low_G,0.96,3548.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,0-72,High_D,0.96,214.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,0-72,Low_D,0.96,260,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,0-72,High_E,0.96,315.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,0-72,Low_E,0.96,368.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,0-72,High_F,0.96,442.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,0-72,Low_F,0.96,525.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,0-72,High_G,0.96,641.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,0-72,Low_G,0.96,775.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,73-97,High_D,0.96,235.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,73-97,Low_D,0.96,284.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,73-97,High_E,0.96,343.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,73-97,Low_E,0.96,401,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,73-97,High_F,0.96,481.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,73-97,Low_F,0.96,571.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,73-97,High_G,0.96,697,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,73-97,Low_G,0.96,841,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,98-199,High_D,0.96,275.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,98-199,Low_D,0.96,331.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,98-199,High_E,0.96,400.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,98-199,Low_E,0.96,466.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,98-199,High_F,0.96,558.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,98-199,Low_F,0.96,661.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,98-199,High_G,0.96,806.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,98-199,Low_G,0.96,972.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,200,High_D,0.96,505.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,200,Low_D,0.96,603.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,200,High_E,0.96,725.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,200,Low_E,0.96,843,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,200,High_F,0.96,1007.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,200,Low_F,0.96,1191.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,200,High_G,0.96,1450.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Biomass Boiler,200,Low_G,0.96,1745.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,0-72,High_D,0.96,279.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,0-72,Low_D,0.96,320.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,0-72,High_E,0.96,370.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,0-72,Low_E,0.96,417.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,0-72,High_F,0.96,484.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,0-72,Low_F,0.96,559.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,0-72,High_G,0.96,664.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,0-72,Low_G,0.96,784.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,73-97,High_D,0.96,290.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,73-97,Low_D,0.96,334.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,73-97,High_E,0.96,388.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,73-97,Low_E,0.96,439.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,73-97,High_F,0.96,512.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,73-97,Low_F,0.96,593,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,73-97,High_G,0.96,706.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,73-97,Low_G,0.96,836.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,98-199,High_D,0.96,318.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,98-199,Low_D,0.96,369.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,98-199,High_E,0.96,431.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,98-199,Low_E,0.96,490.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,98-199,High_F,0.96,574,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,98-199,Low_F,0.96,667,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,98-199,High_G,0.96,797.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,98-199,Low_G,0.96,947,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,200,High_D,0.96,525.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,200,Low_D,0.96,614.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,200,High_E,0.96,724.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,200,Low_E,0.96,830.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,200,High_F,0.96,979,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,200,Low_F,0.96,1144.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,200,High_G,0.96,1377.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Biomass Boiler,200,Low_G,0.96,1643.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,0-72,High_D,0.96,215.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,0-72,Low_D,0.96,238.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,0-72,High_E,0.96,267.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,0-72,Low_E,0.96,294.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,0-72,High_F,0.96,333.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,0-72,Low_F,0.96,376.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,0-72,High_G,0.96,437.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,0-72,Low_G,0.96,506.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,73-97,High_D,0.96,216.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,73-97,Low_D,0.96,241.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,73-97,High_E,0.96,272.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,73-97,Low_E,0.96,302.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,73-97,High_F,0.96,344.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,73-97,Low_F,0.96,391.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,73-97,High_G,0.96,456.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,73-97,Low_G,0.96,531.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,98-199,High_D,0.96,227.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,98-199,Low_D,0.96,257.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,98-199,High_E,0.96,292.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,98-199,Low_E,0.96,327.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,98-199,High_F,0.96,375.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,98-199,Low_F,0.96,429.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,98-199,High_G,0.96,504.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,98-199,Low_G,0.96,590.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,200,High_D,0.96,347.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,200,Low_D,0.96,398.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,200,High_E,0.96,462.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,200,Low_E,0.96,523.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,200,High_F,0.96,609.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,200,Low_F,0.96,705.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,200,High_G,0.96,839.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Biomass Boiler,200,Low_G,0.96,993.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,0-72,High_D,0.96,386.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,0-72,Low_D,0.96,468.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,0-72,High_E,0.96,567.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,0-72,Low_E,0.96,662.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,0-72,High_F,0.96,796.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,0-72,Low_F,0.96,946.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,0-72,High_G,0.96,1155.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,0-72,Low_G,0.96,1395.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,73-97,High_D,0.96,423.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,73-97,Low_D,0.96,511.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,73-97,High_E,0.96,618.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,73-97,Low_E,0.96,722,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,73-97,High_F,0.96,866.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,73-97,Low_F,0.96,1028.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,73-97,High_G,0.96,1254.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,73-97,Low_G,0.96,1514.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,98-199,High_D,0.96,496,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,98-199,Low_D,0.96,597.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,98-199,High_E,0.96,720.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,98-199,Low_E,0.96,839.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,98-199,High_F,0.96,1005.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,98-199,Low_F,0.96,1191.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,98-199,High_G,0.96,1452.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,98-199,Low_G,0.96,1750.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,200,High_D,0.96,909.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,200,Low_D,0.96,1086.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,200,High_E,0.96,1306.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,200,Low_E,0.96,1517.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,200,High_F,0.96,1814.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,200,Low_F,0.96,2146,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,200,High_G,0.96,2610.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Biomass Boiler,200,Low_G,0.96,3142.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,High_D,0.96,386.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,Low_D,0.96,434.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,High_E,0.96,553.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,Low_E,0.96,667.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,High_F,0.96,828.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,Low_F,0.96,1007.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,High_G,0.96,1259,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,0-72,Low_G,0.96,1546.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,High_D,0.96,392.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,Low_D,0.96,498.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,High_E,0.96,626.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,Low_E,0.96,750.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,High_F,0.96,924.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,Low_F,0.96,1117.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,High_G,0.96,1389.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,73-97,Low_G,0.96,1700.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,High_D,0.96,491,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,Low_D,0.96,612.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,High_E,0.96,760.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,Low_E,0.96,902.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,High_F,0.96,1102.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,Low_F,0.96,1325.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,High_G,0.96,1637.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,98-199,Low_G,0.96,1995.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,200,High_D,0.96,986.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,200,Low_D,0.96,1198.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,200,High_E,0.96,1462.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,200,Low_E,0.96,1716.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,200,High_F,0.96,2072.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,200,Low_F,0.96,2469.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,200,High_G,0.96,3026.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,Condensing Gas Boiler,200,Low_G,0.96,3663.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,High_D,0.96,151.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,Low_D,0.96,209.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,High_E,0.96,280.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,Low_E,0.96,349.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,High_F,0.96,445.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,Low_F,0.96,553,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,High_G,0.96,703.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,0-72,Low_G,0.96,876,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,High_D,0.96,189.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,Low_D,0.96,252.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,High_E,0.96,329.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,Low_E,0.96,403.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,High_F,0.96,507.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,Low_F,0.96,623.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,High_G,0.96,786.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,73-97,Low_G,0.96,972.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,High_D,0.96,252.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,Low_D,0.96,325.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,High_E,0.96,414.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,Low_E,0.96,499.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,High_F,0.96,619.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,Low_F,0.96,752.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,High_G,0.96,940,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,98-199,Low_G,0.96,1154.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,200,High_D,0.96,549.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,200,Low_D,0.96,676.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,200,High_E,0.96,835,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,200,Low_E,0.96,986.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,200,High_F,0.96,1200.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,200,Low_F,0.96,1438.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,200,High_G,0.96,1772.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,Condensing Gas Boiler,200,Low_G,0.96,2154.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,0-72,High_D,0.96,295.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,0-72,Low_D,0.96,383.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,0-72,High_E,0.96,492.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,0-72,Low_E,0.96,596.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,0-72,High_F,0.96,742.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,0-72,Low_F,0.96,905.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,0-72,High_G,0.96,1133.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,0-72,Low_G,0.96,1395.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,73-97,High_D,0.96,347,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,73-97,Low_D,0.96,442.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,73-97,High_E,0.96,559.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,73-97,Low_E,0.96,672.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,73-97,High_F,0.96,830.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,73-97,Low_F,0.96,1006.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,73-97,High_G,0.96,1253.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,73-97,Low_G,0.96,1536.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,98-199,High_D,0.96,437.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,98-199,Low_D,0.96,547.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,98-199,High_E,0.96,682.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,98-199,Low_E,0.96,811.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,98-199,High_F,0.96,993.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,98-199,Low_F,0.96,1196.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,98-199,High_G,0.96,1480.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,98-199,Low_G,0.96,1806.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,200,High_D,0.96,888.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,200,Low_D,0.96,1081.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,200,High_E,0.96,1321.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,200,Low_E,0.96,1551.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,200,High_F,0.96,1875.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,200,Low_F,0.96,2237.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,200,High_G,0.96,2744.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,Condensing Gas Boiler,200,Low_G,0.96,3324,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,High_D,0.96,205.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,260.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,High_E,0.96,326.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,391.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,High_F,0.96,481.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,581.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,High_G,0.96,722.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,884,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,High_D,0.96,235.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,294.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,High_E,0.96,366.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,436,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,High_F,0.96,533.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,642,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,High_G,0.96,794.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,968.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,High_D,0.96,288.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,356.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,High_E,0.96,440,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,519.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,High_F,0.96,631.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,756.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,High_G,0.96,932.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,1133,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,200,High_D,0.96,567.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,200,Low_D,0.96,685.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,200,High_E,0.96,834,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,200,Low_E,0.96,976.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,200,High_F,0.96,1176,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,200,Low_F,0.96,1398.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,200,High_G,0.96,1711.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,Condensing Gas Boiler,200,Low_G,0.96,2069.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,0-72,High_D,0.96,151.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,0-72,Low_D,0.96,191.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,0-72,High_E,0.96,240.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,0-72,Low_E,0.96,288.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,0-72,High_F,0.96,354.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,0-72,Low_F,0.96,428.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,0-72,High_G,0.96,532.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,0-72,Low_G,0.96,651.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,73-97,High_D,0.96,173.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,73-97,Low_D,0.96,216.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,73-97,High_E,0.96,270.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,73-97,Low_E,0.96,321.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,73-97,High_F,0.96,393,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,73-97,Low_F,0.96,473,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,73-97,High_G,0.96,585.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,73-97,Low_G,0.96,713.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,98-199,High_D,0.96,212.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,98-199,Low_D,0.96,263,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,98-199,High_E,0.96,324.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,98-199,Low_E,0.96,383,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,98-199,High_F,0.96,465.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,98-199,Low_F,0.96,557.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,98-199,High_G,0.96,687,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,98-199,Low_G,0.96,834.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,200,High_D,0.96,417.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,200,Low_D,0.96,505.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,200,High_E,0.96,614.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,200,Low_E,0.96,719.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,200,High_F,0.96,866.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,200,Low_F,0.96,1030.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,200,High_G,0.96,1261.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,Condensing Gas Boiler,200,Low_G,0.96,1524.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,386.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,434.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,553.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,667.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,828.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,1007.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,1259,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,1546.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,392.8,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,498.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,626.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,750.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,924.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,1117.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,1389.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,1700.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,491,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,612.3,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,760.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,902.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,1102.4,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,1325.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,1637.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1995.5,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,High_D,0.96,986.9,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,1198.7,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,High_E,0.96,1462.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,1716.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,High_F,0.96,2072.1,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,2469.2,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,High_G,0.96,3026.6,N/A +Boiler,B_First_Time_CH,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,3663.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,288.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,375.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,482.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,584.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,728.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,888.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,1113.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,1371.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,339.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,434,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,549.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,659.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,815.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,988.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,1231.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,1510,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,428.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,537.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,669.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,797.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,976,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,1175.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,1455.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1775.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,872.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,1062.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,1298.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,1525.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1844.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,2199.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,2698.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,3269.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,151.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,209.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,280.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,349.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,445.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,553,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,703.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,876,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,189.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,252.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,329.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,403.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,507.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,623.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,786.5,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,972.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,252.7,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,325.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,414.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,499.4,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,619.1,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,752.6,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,940,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1154.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,High_D,0.96,549.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,676.8,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,High_E,0.96,835,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,986.9,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1200.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1438.2,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1772.3,N/A +Boiler,B_First_Time_CH,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,2154.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,86.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,131,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,185.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,238.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,312,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,394.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,509.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,641.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,118.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,166.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,225.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,282.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,362.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,451,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,575.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,718.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,169.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,225.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,293.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,358.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,450.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,552.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,696.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,860.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,397.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,494.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,615.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,732.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,895.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1078,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1334,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1626.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,123,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,172.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,232.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,290.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,371.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,461.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,588.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,734.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,155.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,208.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,273.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,336.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,423.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,521.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,659.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,816.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,209.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,270.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,345.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,417.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,518.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,630.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,788.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,969.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,High_D,0.96,460,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,567,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,High_E,0.96,700.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,828.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1008.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1208.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1490.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1812.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,302.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,391.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,499.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,603.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,749.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,912.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,1141.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,1403.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,353.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,449.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,566.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,679.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,837.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,1013.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,1260.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,1543.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,443.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,553.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,688.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,818,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,999.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,1202.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,1486.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1812.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,894.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,1087.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,1327.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,1558.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1882,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,2243.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,2750.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,3330.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,295.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,383.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,492.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,596.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,742.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,905.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,1133.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,1395.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,347,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,442.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,559.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,672.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,830.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,1006.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,1253.6,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,1536.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,437.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,547.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,682.4,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,811.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,993.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,1196.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,1480.7,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1806.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,High_D,0.96,888.5,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,1081.2,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,High_E,0.96,1321.3,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,1551.9,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1875.8,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,2237.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,High_G,0.96,2744.1,N/A +Boiler,B_First_Time_CH,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,3324,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,17.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,41.3,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,75.2,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,113.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,166.2,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,227,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,14.5,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,41.7,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,67.8,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,104.5,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,145.5,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,202.9,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,268.6,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,22.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,47.7,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,79,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,109.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,151.3,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,198.4,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,264.5,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,340.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,126.9,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,171.7,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,227.5,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,281.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,356.3,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,440.3,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,558.1,N/A +Boiler,B_Upgrade_nopreHCs,Biomass Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,692.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,205.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,260.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,326.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,391.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,481.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,581.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,722.7,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,884,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,235.3,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,294.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,366.6,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,436,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,533.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,642,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,794.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,968.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,288.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,356.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,440,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,519.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,631.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,756.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,932.4,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1133,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,567.1,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,685.9,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,834,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,976.2,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1176,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1398.8,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1711.5,N/A +Boiler,B_First_Time_CH,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,2069.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,151.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,191.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,240.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,288.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,354.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,428.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,532.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,651.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,173.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,216.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,270.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,321.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,393,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,473,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,585.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,713.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,212.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,263,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,324.2,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,383,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,465.6,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,557.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,687,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,834.8,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,High_D,0.96,417.9,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,505.4,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,High_E,0.96,614.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,719.3,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,High_F,0.96,866.5,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1030.7,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1261.1,N/A +Boiler,B_First_Time_CH,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1524.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,118.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,150.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,189.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,226.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,278.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,336.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,418.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,511.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,136.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,170.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,212.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,252.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,308.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,371.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,459.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,560.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,167.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,206.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,254.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,300.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,365.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,438.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,539.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,655.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,High_D,0.96,328.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,397.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,High_E,0.96,482.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,565.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,High_F,0.96,680.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,809.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,High_G,0.96,990.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Back Boiler to Radiators,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1197.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,125.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,178.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,243.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,305.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,392.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,490,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,626.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,783,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,161,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,218.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,288.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,355.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,449.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,555.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,702.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,871.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,219.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,285.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,366.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,443.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,552,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,673.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,843.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1037.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,489.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,604.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,747.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,885.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1079.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1295.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1598.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1944.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,81.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,125.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,178.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,230.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,302.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,382.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,495.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,624.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,113,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,160.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,218.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,273.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,351.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,438.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,560.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,700.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,163.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,218,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,284.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,348.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,438.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,538.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,678.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,839.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,386.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,481.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,600,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,713.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,873.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1052.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1302.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1588.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,269.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,346.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,441.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,531.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,658.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,800.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,999.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,1227.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,313.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,397,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,498.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,596.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,734.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,887.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,1103.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,1349.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,391.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,487.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,604.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,717.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,875.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,1051.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,1299.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1583,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,783.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,951.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,1160.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,1361.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1643.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1958.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,2399.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,2904.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,233.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,302.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,386.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,466.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,579.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,706.1,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,883.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,1085.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,273.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,347.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,438.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,525.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,647.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,784,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,975.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,1194.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,342.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,428.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,532.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,632.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,773.5,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,930.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,1150.7,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1402.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,692.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,841.4,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,1027.2,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,1205.8,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1456.6,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1736.3,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,2128.9,N/A +Boiler,B_Upgrade_nopreHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,2577.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,70.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,89,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,111.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,133.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,164.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,199,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,247.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,302.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,80.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,100.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,125.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,149.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,182.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,219.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,271.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,331.4,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,98.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,122.1,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,150.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,177.8,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,216.2,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,258.9,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,319,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,387.6,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,194,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,234.7,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,285.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,334,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,402.3,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,478.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,585.5,N/A +Boiler,B_Upgrade_nopreHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,707.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,122.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,178.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,245.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,310.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,403.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,510.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,664.7,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,844.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,152.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,212.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,284.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,351.6,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,448.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,557.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,715,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,898.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,203.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,273.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,357.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,436.8,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,549.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,677,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,859.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1072.2,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,427.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,547.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,693.5,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,830.3,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1025.4,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1246.9,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1564.1,N/A +Boiler,B_Upgrade_preHCs,Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1934.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,0.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,36.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,71.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,124.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,185.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,276.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,383.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,23.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,61.5,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,98.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,152.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,216.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,309.6,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,420.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,32.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,71.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,117.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,160.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,224.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,297.8,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,405.2,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,532.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,132.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,196.9,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,276.1,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,351.4,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,463,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,593.7,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,785.3,N/A +Boiler,B_Upgrade_preHCs,Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1013.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,244.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,326.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,427.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,525.7,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,666.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,825.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,1051.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,1311.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,286.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,374.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,482,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,585.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,734.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,901.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,1139.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,1414.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,362.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,464.3,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,588.8,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,709.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,880.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,1074.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,1350.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1667.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,734.4,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,907.2,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,1122.9,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,1330.6,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1627.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1962.5,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,2439.1,N/A +Boiler,B_Upgrade_preHCs,Electric Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,2990.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,10.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,28.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,56.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,93.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,12.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,35.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,66.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,16.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,33.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,62.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,100.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,0,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,16.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,47.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,99.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Gas Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,167.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,152.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,215.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,290.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,361,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,461.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,574.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,736.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,925.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,183.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,252.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,334.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,409.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,516.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,635.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,806.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,1004.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,239,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,319.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,414.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,501.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,624.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,763.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,959.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1188,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,504,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,643,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,807.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,957.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1167.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1401.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1734.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,2122.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,7.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,46.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,95,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,141.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,210.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,291,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,407.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,545.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,31.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,73.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,123.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,171.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,242.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,324.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,444.1,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,585,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,78.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,128.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,187.8,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,243.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,324.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,417.4,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,551.7,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,709.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,224,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,307.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,409.6,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,505.9,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,646.3,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,808.5,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1044.2,N/A +Boiler,B_Upgrade_preHCs,Non Condensing Oil Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1322.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,12.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,50.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,97.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,143.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,211.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,290.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,404.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,536.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,35.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,75.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,124,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,171.7,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,241.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,322.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,438.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,573.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,76.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,122.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,179.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,234.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,315.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,408.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,541.9,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,697.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,217.5,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,294.6,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,392,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,487.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,626.4,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,787.1,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1019.2,N/A +Boiler,B_Upgrade_preHCs,Solid Fossil Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1290.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,123,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,172.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,232.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,290.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,371.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,461.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,588.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,734.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,155.6,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,208.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,273.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,336.2,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,423.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,521.8,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,659.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,816.1,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,209.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,270.7,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,345.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,417.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,518.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,630.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,788.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,969.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,High_D,0.96,460,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,567,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,High_E,0.96,700.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,828.4,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1008.3,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1208.9,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1490.5,N/A +Boiler,B_First_Time_CH,Electric Storage Heaters Responsiveness <=0.2,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1812.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,386.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,434.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,553.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,667.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,828.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,1007.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,1259,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,1546.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,392.8,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,498.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,626.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,750.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,924.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,1117.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,1389.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,1700.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,491,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,612.3,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,760.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,902.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,1102.4,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,1325.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,1637.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1995.5,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,High_D,0.96,986.9,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,1198.7,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,High_E,0.96,1462.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,1716.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,High_F,0.96,2072.1,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,2469.2,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,High_G,0.96,3026.6,N/A +Boiler,B_Upgrade_nopreHCs,Bottled LPG Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,3663.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,151.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,209.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,280.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,349.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,445.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,553,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,703.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,876,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,189.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,252.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,329.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,403.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,507.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,623.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,786.5,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,972.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,252.7,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,325.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,414.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,499.4,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,619.1,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,752.6,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,940,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1154.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,High_D,0.96,549.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,676.8,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,High_E,0.96,835,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,986.9,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1200.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1438.2,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1772.3,N/A +Boiler,B_Upgrade_nopreHCs,Solid Fossil Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,2154.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,295.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,383.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,492.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,596.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,742.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,905.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,1133.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,1395.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,347,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,442.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,559.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,672.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,830.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,1006.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,1253.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,1536.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,437.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,547.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,682.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,811.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,993.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,1196.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,1480.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1806.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,High_D,0.96,888.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,1081.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,High_E,0.96,1321.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,1551.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1875.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,2237.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,High_G,0.96,2744.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,3324,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,205.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,260.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,326.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,391.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,481.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,581.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,722.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,884,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,235.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,294.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,366.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,436,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,533.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,642,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,794.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,968.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,288.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,356.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,440,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,519.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,631.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,756.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,932.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1133,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,567.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,685.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,834,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,976.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1176,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1398.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1711.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Fire with Back Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,2069.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,151.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,191.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,240.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,288.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,354.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,428.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,532.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,651.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,173.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,216.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,270.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,321.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,393,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,473,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,585.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,713.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,212.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,263,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,324.2,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,383,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,465.6,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,557.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,687,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,834.8,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,High_D,0.96,417.9,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,505.4,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,High_E,0.96,614.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,719.3,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,High_F,0.96,866.5,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1030.7,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,High_G,0.96,1261.1,N/A +Boiler,B_Upgrade_nopreHCs,Gas Room Heaters,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,1524.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,0-72,High_D,0.96,84.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,0-72,Low_D,0.96,101.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,0-72,High_E,0.96,123.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,0-72,Low_E,0.96,144,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,0-72,High_F,0.96,173.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,0-72,Low_F,0.96,205.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,0-72,High_G,0.96,251.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,0-72,Low_G,0.96,303.3,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,73-97,High_D,0.96,92.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,73-97,Low_D,0.96,111.2,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,73-97,High_E,0.96,134.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,73-97,Low_E,0.96,156.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,73-97,High_F,0.96,188.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,73-97,Low_F,0.96,223.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,73-97,High_G,0.96,272.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,73-97,Low_G,0.96,329.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,98-199,High_D,0.96,107.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,98-199,Low_D,0.96,129.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,98-199,High_E,0.96,156.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,98-199,Low_E,0.96,182.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,98-199,High_F,0.96,218.6,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,98-199,Low_F,0.96,259,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,98-199,High_G,0.96,315.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,98-199,Low_G,0.96,380.5,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,200,High_D,0.96,197.7,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,200,Low_D,0.96,236.1,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,200,High_E,0.96,283.9,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,200,Low_E,0.96,329.8,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,200,High_F,0.96,394.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,200,Low_F,0.96,466.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,200,High_G,0.96,567.4,N/A +Boiler,B_Upgrade_nopreHCs,Electric Storage Heaters Responsiveness >0.2,Air to Water ASHP,200,Low_G,0.96,682.9,N/A +Other Heating,Smarttherm,Air to Water ASHP,N/A,0-72,High_D,1,26.3,1.16 +Other Heating,Smarttherm,Air to Water ASHP,N/A,0-72,Low_D,1,31.4,1.39 +Other Heating,Smarttherm,Air to Water ASHP,N/A,0-72,High_E,1,37,1.7 +Other Heating,Smarttherm,Air to Water ASHP,N/A,0-72,Low_E,1,40.7,1.68 +Other Heating,Smarttherm,Air to Water ASHP,N/A,0-72,High_F,1,47,1.64 +Other Heating,Smarttherm,Air to Water ASHP,N/A,0-72,Low_F,1,51.6,1.53 +Other Heating,Smarttherm,Air to Water ASHP,N/A,0-72,High_G,1,56.6,1.38 +Other Heating,Smarttherm,Air to Water ASHP,N/A,0-72,Low_G,1,61.6,1.25 +Other Heating,Smarttherm,Air to Water ASHP,N/A,73-97,High_D,1,29.4,1.2 +Other Heating,Smarttherm,Air to Water ASHP,N/A,73-97,Low_D,1,38.4,1.57 +Other Heating,Smarttherm,Air to Water ASHP,N/A,73-97,High_E,1,44.8,1.89 +Other Heating,Smarttherm,Air to Water ASHP,N/A,73-97,Low_E,1,51.9,2 +Other Heating,Smarttherm,Air to Water ASHP,N/A,73-97,High_F,1,59.3,1.92 +Other Heating,Smarttherm,Air to Water ASHP,N/A,73-97,Low_F,1,70.7,1.95 +Other Heating,Smarttherm,Air to Water ASHP,N/A,73-97,High_G,1,79.4,1.8 +Other Heating,Smarttherm,Air to Water ASHP,N/A,73-97,Low_G,1,88.7,1.68 +Other Heating,Smarttherm,Air to Water ASHP,N/A,98-199,High_D,1,33.6,1.2 +Other Heating,Smarttherm,Air to Water ASHP,N/A,98-199,Low_D,1,41.1,1.47 +Other Heating,Smarttherm,Air to Water ASHP,N/A,98-199,High_E,1,50.1,1.86 +Other Heating,Smarttherm,Air to Water ASHP,N/A,98-199,Low_E,1,56.8,1.88 +Other Heating,Smarttherm,Air to Water ASHP,N/A,98-199,High_F,1,66.7,1.86 +Other Heating,Smarttherm,Air to Water ASHP,N/A,98-199,Low_F,1,76.1,1.8 +Other Heating,Smarttherm,Air to Water ASHP,N/A,98-199,High_G,1,88.6,1.73 +Other Heating,Smarttherm,Air to Water ASHP,N/A,98-199,Low_G,1,99,1.62 +Other Heating,Smarttherm,Air to Water ASHP,N/A,200,High_D,1,71.2,1.42 +Other Heating,Smarttherm,Air to Water ASHP,N/A,200,Low_D,1,86.3,1.73 +Other Heating,Smarttherm,Air to Water ASHP,N/A,200,High_E,1,99.9,2.09 +Other Heating,Smarttherm,Air to Water ASHP,N/A,200,Low_E,1,117.8,2.17 +Other Heating,Smarttherm,Air to Water ASHP,N/A,200,High_F,1,136.5,2.12 +Other Heating,Smarttherm,Air to Water ASHP,N/A,200,Low_F,1,154.6,2.04 +Other Heating,Smarttherm,Air to Water ASHP,N/A,200,High_G,1,181.2,1.98 +Other Heating,Smarttherm,Air to Water ASHP,N/A,200,Low_G,1,202.1,1.84 +Other Heating,P&RT,Bottled LPG Boiler,N/A,0-72,High_D,1,33.3,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,0-72,Low_D,1,38.5,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,0-72,High_E,1,45.4,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,0-72,Low_E,1,52.4,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,0-72,High_F,1,61.3,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,0-72,Low_F,1,70.4,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,0-72,High_G,1,81.8,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,0-72,Low_G,1,93.5,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,73-97,High_D,1,37.3,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,73-97,Low_D,1,43.9,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,73-97,High_E,1,53.1,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,73-97,Low_E,1,62.9,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,73-97,High_F,1,76.1,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,73-97,Low_F,1,90,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,73-97,High_G,1,108.1,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,73-97,Low_G,1,127.2,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,98-199,High_D,1,44.5,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,98-199,Low_D,1,51.9,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,98-199,High_E,1,62.2,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,98-199,Low_E,1,73.1,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,98-199,High_F,1,87.8,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,98-199,Low_F,1,103.4,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,98-199,High_G,1,123.7,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,98-199,Low_G,1,145,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,200,High_D,1,84,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,200,Low_D,1,97.6,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,200,High_E,1,117,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,200,Low_E,1,138,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,200,High_F,1,166.5,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,200,Low_F,1,196.9,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,200,High_G,1,237,N/A +Other Heating,P&RT,Bottled LPG Boiler,N/A,200,Low_G,1,279.4,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,0-72,High_D,1,27.7,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,0-72,Low_D,1,29.4,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,0-72,High_E,1,30,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,0-72,Low_E,1,29,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,0-72,High_F,1,25.7,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,0-72,Low_F,1,20.7,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,0-72,High_G,1,12.3,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,0-72,Low_G,1,1.9,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,73-97,High_D,1,32.6,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,73-97,Low_D,1,34.5,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,73-97,High_E,1,35.3,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,73-97,Low_E,1,34.4,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,73-97,High_F,1,31.3,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,73-97,Low_F,1,26.3,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,73-97,High_G,1,17.8,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,73-97,Low_G,1,7.2,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,98-199,High_D,1,39.7,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,98-199,Low_D,1,41.5,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,98-199,High_E,1,41.8,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,98-199,Low_E,1,40.3,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,98-199,High_F,1,36,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,98-199,Low_F,1,29.5,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,98-199,High_G,1,18.9,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,98-199,Low_G,1,5.8,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,200,High_D,1,83,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,200,Low_D,1,90.1,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,200,High_E,1,96.1,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,200,Low_E,1,99,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,200,High_F,1,99.1,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,200,Low_F,1,95.6,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,200,High_G,1,87.2,N/A +Other Heating,TRV,Bottled LPG Boiler,N/A,200,Low_G,1,74.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,High_D,0.96,364.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,Low_D,0.96,473.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,High_E,0.96,607.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,Low_E,0.96,737.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,High_F,0.96,922.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,Low_F,0.96,1131.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,High_G,0.96,1428.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,0-72,Low_G,0.96,1768.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,High_D,0.96,398.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,Low_D,0.96,510.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,High_E,0.96,648.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,Low_E,0.96,781.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,High_F,0.96,970.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,Low_F,0.96,1184,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,High_G,0.96,1486.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,73-97,Low_G,0.96,1834.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,High_D,0.96,464,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,Low_D,0.96,587.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,High_E,0.96,739.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,Low_E,0.96,886,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,High_F,0.96,1094.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,Low_F,0.96,1329.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,High_G,0.96,1662.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,98-199,Low_G,0.96,2046.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,High_D,0.96,890.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,Low_D,0.96,1095.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,High_E,0.96,1351.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,Low_E,0.96,1597.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,High_F,0.96,1948.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,Low_F,0.96,2344.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,High_G,0.96,2906.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Fuel Cell mCHP,200,Low_G,0.96,3555,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,0-72,High_D,0.96,322.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,0-72,Low_D,0.96,395.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,0-72,High_E,0.96,486.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,0-72,Low_E,0.96,575.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,0-72,High_F,0.96,702.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,0-72,Low_F,0.96,846.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,0-72,High_G,0.96,1051.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,0-72,Low_G,0.96,1287.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,73-97,High_D,0.96,349.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,73-97,Low_D,0.96,428.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,73-97,High_E,0.96,524.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,73-97,Low_E,0.96,618.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,73-97,High_F,0.96,751.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,73-97,Low_F,0.96,902.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,73-97,High_G,0.96,1117.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,73-97,Low_G,0.96,1365.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,98-199,High_D,0.96,407.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,98-199,Low_D,0.96,498.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,98-199,High_E,0.96,610.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,98-199,Low_E,0.96,718.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,98-199,High_F,0.96,872.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,98-199,Low_F,0.96,1047.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,98-199,High_G,0.96,1296.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,98-199,Low_G,0.96,1584,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,200,High_D,0.96,734.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,200,Low_D,0.96,888.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,200,High_E,0.96,1081.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,200,Low_E,0.96,1266.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,200,High_F,0.96,1532.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,200,Low_F,0.96,1833.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,200,High_G,0.96,2262.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,GSHP,200,Low_G,0.96,2759.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,High_D,0.96,292.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,Low_D,0.96,359.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,High_E,0.96,442.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,Low_E,0.96,523.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,High_F,0.96,640.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,Low_F,0.96,772.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,High_G,0.96,961.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,0-72,Low_G,0.96,1178.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,High_D,0.96,317,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,Low_D,0.96,388.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,High_E,0.96,476.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,Low_E,0.96,561.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,High_F,0.96,684,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,Low_F,0.96,822.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,High_G,0.96,1019.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,73-97,Low_G,0.96,1248,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,High_D,0.96,368.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,Low_D,0.96,451.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,High_E,0.96,554,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,Low_E,0.96,652.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,High_F,0.96,794.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,Low_F,0.96,955.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,High_G,0.96,1183.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,98-199,Low_G,0.96,1447.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,200,High_D,0.96,663.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,200,Low_D,0.96,804.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,200,High_E,0.96,979.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,200,Low_E,0.96,1148.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,200,High_F,0.96,1391.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,200,Low_F,0.96,1666.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,200,High_G,0.96,2059.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Air to Water ASHP,200,Low_G,0.96,2514.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,0-72,High_D,0.96,317.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,0-72,Low_D,0.96,390.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,0-72,High_E,0.96,480.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,0-72,Low_E,0.96,567.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,0-72,High_F,0.96,693.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,0-72,Low_F,0.96,835.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,0-72,High_G,0.96,1037.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,0-72,Low_G,0.96,1271.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,73-97,High_D,0.96,345,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,73-97,Low_D,0.96,422.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,73-97,High_E,0.96,517.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,73-97,Low_E,0.96,609.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,73-97,High_F,0.96,741.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,73-97,Low_F,0.96,890.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,73-97,High_G,0.96,1102.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,73-97,Low_G,0.96,1348.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,98-199,High_D,0.96,401.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,98-199,Low_D,0.96,491.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,98-199,High_E,0.96,601.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,98-199,Low_E,0.96,708.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,98-199,High_F,0.96,861.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,98-199,Low_F,0.96,1034.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,98-199,High_G,0.96,1279.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,98-199,Low_G,0.96,1563.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,200,High_D,0.96,723.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,200,Low_D,0.96,876,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,200,High_E,0.96,1066.1,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,200,Low_E,0.96,1249.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,200,High_F,0.96,1511.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,200,Low_F,0.96,1808.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,200,High_G,0.96,2232.3,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Biomass Boiler,200,Low_G,0.96,2722.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,High_D,0.96,227.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,Low_D,0.96,307.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,High_E,0.96,406.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,Low_E,0.96,503.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,High_F,0.96,641.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,Low_F,0.96,797.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,High_G,0.96,1019.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,0-72,Low_G,0.96,1275.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,High_D,0.96,269.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,Low_D,0.96,355.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,High_E,0.96,460.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,Low_E,0.96,562.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,High_F,0.96,707.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,Low_F,0.96,872.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,High_G,0.96,1105.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,73-97,Low_G,0.96,1375.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,High_D,0.96,344.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,Low_D,0.96,443.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,High_E,0.96,565.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,Low_E,0.96,683.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,High_F,0.96,852.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,Low_F,0.96,1042.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,High_G,0.96,1312.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,98-199,Low_G,0.96,1624.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,High_D,0.96,705.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,Low_D,0.96,874.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,High_E,0.96,1085.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,Low_E,0.96,1288.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,High_F,0.96,1578.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,Low_F,0.96,1907.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,High_G,0.96,2374.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,Condensing Gas Boiler,200,Low_G,0.96,2915,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_D,0.96,227.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_D,0.96,307.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_E,0.96,406.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_E,0.96,503.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_F,0.96,641.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_F,0.96,797.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,High_G,0.96,1019.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,0-72,Low_G,0.96,1275.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_D,0.96,269.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_D,0.96,355.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_E,0.96,460.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_E,0.96,562.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_F,0.96,707.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_F,0.96,872.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,High_G,0.96,1105.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,73-97,Low_G,0.96,1375.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_D,0.96,344.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_D,0.96,443.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_E,0.96,565.9,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_E,0.96,683.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_F,0.96,852.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_F,0.96,1042.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,High_G,0.96,1312.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,98-199,Low_G,0.96,1624.8,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_D,0.96,705.7,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_D,0.96,874.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_E,0.96,1085.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_E,0.96,1288.4,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_F,0.96,1578.6,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_F,0.96,1907.2,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,High_G,0.96,2374.5,N/A +Boiler,B_Upgrade_preHCs,Bottled LPG Boiler,ASHP/Gas Boiler Hybrid,200,Low_G,0.96,2915,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,GSHP,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,0-72,High_D,1,250.6,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,GSHP,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,0-72,Low_D,1,250.6,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,GSHP,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,0-72,High_E,1,250.6,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,GSHP,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,0-72,Low_E,1,250.6,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,GSHP,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,0-72,High_F,1,250.6,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,GSHP,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,0-72,Low_F,1,250.6,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,GSHP,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,0-72,High_G,1,250.6,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,GSHP,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,0-72,Low_G,1,250.6,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,GSHP,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,73-97,High_D,1,227.8,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,GSHP,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,73-97,Low_D,1,227.8,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,GSHP,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,73-97,High_E,1,227.8,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,GSHP,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,73-97,Low_E,1,227.8,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,GSHP,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,73-97,High_F,1,227.8,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,GSHP,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,73-97,Low_F,1,227.8,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,GSHP,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,73-97,High_G,1,227.8,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,GSHP,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,73-97,Low_G,1,227.8,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,GSHP,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,98-199,High_D,1,205.8,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,GSHP,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,98-199,Low_D,1,205.8,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,GSHP,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,98-199,High_E,1,205.8,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,GSHP,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,98-199,Low_E,1,205.9,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,GSHP,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,98-199,High_F,1,206.1,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,GSHP,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,98-199,Low_F,1,206.2,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,GSHP,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,98-199,High_G,1,206.4,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,GSHP,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,98-199,Low_G,1,206.7,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,GSHP,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,200,High_D,1,205,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,GSHP,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,200,Low_D,1,205,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,GSHP,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,200,High_E,1,205,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,GSHP,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,200,Low_E,1,205,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,GSHP,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,200,High_F,1,205,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,GSHP,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,200,Low_F,1,205,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,GSHP,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,200,High_G,1,205,N/A +Micro-Generation,Solar_PV,Air to Water ASHP,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Biomass Boiler,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Boiler,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Bottled LPG Room Heaters,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Condensing Gas Boiler,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Condensing LPG Boiler,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Condensing Oil Boiler,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,DHS CHP,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,DHS non-CHP,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Electric Boiler,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Electric Room Heaters,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness <=0.2,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Electric Storage Heaters Responsiveness >0.2,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Gas Back Boiler to Radiators,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Gas Fire with Back Boiler,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Gas Room Heaters,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,GSHP,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Gas Boiler,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing LPG Boiler,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Non Condensing Oil Boiler,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Boiler,N/A,200,Low_G,1,205,N/A +Micro-Generation,Solar_PV,Solid Fossil Room Heaters,N/A,200,Low_G,1,205,N/A \ No newline at end of file