Error - Incomplete template configuration

I recently upgraded to;

Installation method - Home Assistant OS
Core - 2025.11.0
Supervisor - 2025.11.1
Operating System - 16.3
Frontend - 20251105.0

after doing so, the following error appears in the settings tab;

Incomplete template configuration
Warning · Reported by Template
A trigger template configuration needs a trigger and at least one domain when defining an entity. This will be an configuration validation error in Home Assistant Core 2026.5.

Please remove the orphaned trigger from the configuration.

The affected code is saved in my templates.yaml file. It reads;

#########################################
# "Current Tariff Period" Configuration #
#########################################
- trigger:
    - trigger: homeassistant
      event: start
    - trigger: state
      entity_id: sensor.festival_hydro_inc_residential_electricity_rate
      attribute: active_peak
  action:
    - choose:
        - conditions:
            - condition: state
              entity_id: sensor.festival_hydro_inc_residential_electricity_rate
              attribute: active_peak
              state: off_peak
          sequence:
            - action: select.select_option
              metadata: {}
              data:
                option: Off Peak
              target:
                entity_id:
                  - select.daily_energy_roof_heating
                  - select.yearly_energy_roof_heating
            - action: input_number.set_value
              data:
                value: "{{ state_attr('sensor.festival_hydro_inc_residential_electricity_rate','off_peak_rate')|float(0)}}"
              target:
                entity_id: input_number.current_tariff_rate
        - conditions:
            - condition: state
              entity_id: sensor.festival_hydro_inc_residential_electricity_rate
              attribute: active_peak
              state: mid_peak
          sequence:
            - action: select.select_option
              metadata: {}
              data:
                option: Mid Peak
              target:
                entity_id:
                  - select.daily_energy_roof_heating
                  - select.yearly_energy_roof_heating
            - action: input_number.set_value
              data:
                value: "{{ state_attr('sensor.festival_hydro_inc_residential_electricity_rate','mid_peak_rate')|float(0)}}"
              target:
                entity_id: input_number.current_tariff_rate
        - conditions:
            - condition: state
              entity_id: sensor.festival_hydro_inc_residential_electricity_rate
              attribute: active_peak
              state: on_peak
          sequence:
            - action: select.select_option
              metadata: {}
              data:
                option: On Peak
              target:
                entity_id:
                  - select.daily_energy_roof_heating
                  - select.yearly_energy_roof_heating
            - action: input_number.set_value
              data:
                value: "{{ state_attr('sensor.festival_hydro_inc_residential_electricity_rate','on_peak_rate')|float(0)}}"
              target:
                entity_id: input_number.current_tariff_rate

I understand the code is working know but will stop with update to Home Assistant Core 2026.5

I’ve looked through the forum and reviewed “homeassistant” and “triggers:” help pages for a possible solution. I don’t understand the error, which is making it hard for me to diagnose and correct. Where is the orphaned trigger?

Any help you can offer would be appreciated.

The general schema for a Trigger-based Template entity with actions like yours is:

template:
  - trigger:
      # List of triggers
    action:
      # List of actions
    sensor: #This is what you are missing 
      # List of sensors configurations that are linked to the trigger and action above

What you have posted does not have a template entity domain like sensor, switch, light, etc… it is effectively just an automation outside of the automation integration.

It may be that you meant to include a template entity but forgot it, or you accidentally added a dash as follows, creating a template entity unrelated to the trigger:

template:
  - trigger:
      # List of triggers
    action:
      # List of actions
  - sensor: #The dash before sensor makes this a new item in the list under template
       # List of sensor configurations, independent from the trigger and action above

Pretty sure this doesnt help anything but I’m getting the same error …

---
- trigger:
    - platform: homeassistant
      event: start

    - platform: event
      event_type: event_template_reloaded

    - platform: state
      entity_id: sensor.time
- binary_sensor:
    - name: "[Connected] MQTT"
      unique_id: connected_mqtt
      icon: mdi:sort-clock-descending
      picture: https://brands.home-assistant.io/mqtt/icon.png
      device_class: connectivity
      state: "{{ integration_entities('mqtt')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant

    - name: "[Connected] Uptime Kuma"
      unique_id: connected_uptime_kuma
      icon: mdi:sort-clock-descending
      picture: https://brands.home-assistant.io/uptime_kuma/icon.png
      device_class: connectivity
      state: "{{ integration_entities('uptime_kuma')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant

    - name: "[Connected] OpenUV"
      unique_id: connected_openuv
      icon: mdi:weather-sunny-alert
      picture: https://brands.home-assistant.io/openuv/icon.png
      device_class: connectivity
      state: "{{ integration_entities('openuv')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant

    - name: "[Connected] WAQI"
      unique_id: connected_waqi
      icon: mdi:smog
      picture: https://brands.home-assistant.io/waqi/icon.png
      device_class: connectivity
      state: "{{ integration_entities('waqi')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant

    - name: "[Connected] Weatherflow Local"
      unique_id: weatherflow_local_connected
      icon: mdi:weather-lightning-rainy
      picture: https://brands.home-assistant.io/weatherflow/icon.png
      device_class: connectivity
      state: "{{ has_value('sensor.hub_hb_00174453_status') }}"
      attributes:
        category: homeassistant

    - name: "[Connected] Weatherflow Cloud"
      unique_id: weatherflow_cloud_connected
      icon: mdi:weather-lightning-rainy
      picture: https://brands.home-assistant.io/weatherflow/icon.png
      device_class: connectivity
      state: "{{ integration_entities('weatherflow_forecast')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant

    - name: "[Connected] PirateWeather"
      unique_id: connected_pirateweather
      icon: mdi:weather-sunny-alert
      picture: https://brands.home-assistant.io/pirateweather/icon.png
      device_class: connectivity
      state: "{{ integration_entities('pirateweather')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant

    - name: "[Connected] LG SmartThinq"
      unique_id: connected_lg_smartthinq
      icon: si:lg
      device_class: connectivity
      picture: https://brands.home-assistant.io/smartthinq_sensors/icon.png
      state: "{{ integration_entities('webostv')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant

    - name: "[Connected] Spotify"
      unique_id: connected_spotify
      icon: mdi:spotify
      device_class: connectivity
      picture: https://brands.home-assistant.io/spotify/icon.png
      state: "{{ integration_entities('spotify')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant
    - name: "[Connected] Apple TV"
      unique_id: connected_apple_tv
      icon: mdi:apple
      device_class: connectivity
      picture: https://brands.home-assistant.io/apple_tv/icon.png
      state: "{{ integration_entities('apple_tv')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant

    - name: "[Connected] Unifi"
      unique_id: connected_unifi
      icon: mdi:wifi
      device_class: connectivity
      picture: https://brands.home-assistant.io/unifi/icon.png
      state: "{{ integration_entities('unifi')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant
    - name: "[Connected] Speedtest"
      unique_id: connected_speedtest
      icon: mdi:speedtest
      device_class: connectivity
      picture: https://brands.home-assistant.io/speedtestdotnet/icon.png
      state: "{{ integration_entities('speedtestdotnet')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant
    - name: "[Connected] iCal"
      unique_id: connected_ical
      icon: mdi:calendar
      device_class: connectivity
      picture: https://brands.home-assistant.io/ical/icon.png
      state: "{{ integration_entities('ical')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant
    - name: "[Connected] iCloud 3"
      unique_id: connected_icloud3
      icon: mdi:apple-icloud
      device_class: connectivity
      picture: https://brands.home-assistant.io/icloud3/icon.png
      state: "{{ integration_entities('icloud3')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant
    - name: "[Connected] Cloudflare Tunnel Monitor"
      unique_id: connected_cloudflare_tunnel_monitor
      icon: si:cloudflare
      device_class: connectivity
      picture: https://brands.home-assistant.io/cloudflare_tunnel_monitor/icon.png
      state: "{{ integration_entities('cloudflare_tunnel_monitor')|select('has_value')|list|count > 0 }}"
      attributes:
        category: homeassistant

    - name: "[Connected] Bluetooth"
      unique_id: connected_bluetooth
      icon: mdi:bluetooth
      device_class: connectivity
      picture: https://brands.home-assistant.io/bluetooth/icon.png
      state: >
        {{ (expand(state_attr('sensor.devices_bluetooth', 'entity_id'))
              | selectattr('state', 'eq', 'home') | list | count > 0
            or expand(state_attr('sensor.devices_bluetooth_le', 'entity_id'))
              | selectattr('state', 'eq', 'home') | list | count > 0)
            and is_state('input_boolean.alerts_bluetooth','on') }}
      attributes:
        category: homeassistant

- sensor:
    - name: "[Connected] Offline Integrations"
      unique_id: connected_offline_integrations
      icon: "{{ iif(states(this.entity_id) == '0','mdi:api','mdi:api-off') }}"
      state: >
        {% set entities = state_attr(this.entity_id,'entity_id') %}
        {{ entities|count if entities != none else entities }}
      attributes:
        category: homeassistant
        entity_id: >
          {{ expand('group.connectivity_monitors')
              |selectattr('state','eq','off')|map(attribute='entity_id')|list|sort }}


This seems to be a pattern a few people adopted from a popular config on Github … So I expect a few people will be looking for a solution to this problem

@Didgeridrew , the template code is embedded in a templates.yaml file, which is referenced in the configuration.yaml file. I thought that adding further reference to the template: domain in the templates files would result in an error. Am I not correct in that thought. My complete “templates.yaml” file is;

###############################
# "Weatherman" Configuration  #
###############################

- trigger:
    - trigger: homeassistant
      event: start
    - trigger: time_pattern
      minutes: /05 # Poll for new data at 05 minutes after the hour
    - trigger: state
      entity_id: sensor.motion_sensor_air_temperature
    - trigger: state
      entity_id: sensor.stratford_wind_chill
    - trigger: state
      entity_id: sensor.stratford_humidex
    - trigger: state
      entity_id: sensor.stratford_advisories
    - trigger: state
      entity_id: sensor.stratford_statements
    - trigger: state
      entity_id: sensor.stratford_warnings
    - trigger: state
      entity_id: sensor.stratford_watches
  action:
    - action: weather.get_forecasts
      data:
        type: hourly
      target:
        entity_id: weather.stratford_forecast
      response_variable: hourly
  sensor:
    - name: Stratford Forecast Hourly
      unique_id: stratford_forecast_hourly
      state: "{{ now().isoformat() }}"
      attributes:
        forecast: "{{ hourly['weather.stratford_forecast'].forecast[:4] }}" # Obtain next four hours of forecasts

- trigger:
    - trigger: state
      entity_id: sensor.stratford_forecast_hourly

  sensor:
    - name: Weatherman Data
      state: "OK"
      attributes:
        weather_condition_now: >
          {% set cond_now = states('weather.stratford_forecast') %}
          {% if states('sun.sun') == 'below_horizon' %}
              {% if cond_now == 'sunny' %} night {% elif cond_now == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond_now }} {% endif %}
          {% else %}
              {{ cond_now }}
          {% endif %}
        weather_temperature_now: >
          {{ states('sensor.motion_sensor_air_temperature') | float(0.0) }}
        weather_condition_0: >
          {% set cond0 = state_attr('sensor.stratford_forecast_hourly', 'forecast')[0].condition %}
          {% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
          {% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
          {% set cond0_time = as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[0].datetime) %}
          {% if cond0_time < next_rising and next_rising < next_setting %}
              {% if cond0 == 'sunny' %} night {% elif cond0 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond0 }} {% endif %}
          {% else %}
              {{ cond0 }}
          {% endif %}
        weather_temperature_0: >
          {{ state_attr('sensor.stratford_forecast_hourly', 'forecast')[0].temperature | float(0) }}
        weather_timestamp_0: >
          {{ as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[0].datetime) | timestamp_custom('%I') | int }} {{ as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[0].datetime) | timestamp_custom('%p') }}

        weather_condition_1: >
          {% set cond1 = state_attr('sensor.stratford_forecast_hourly', 'forecast')[1].condition %}
          {% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
          {% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
          {% set cond1_time = as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[1].datetime) %}
          {% if cond1_time < next_rising and next_rising < next_setting %}
              {% if cond1 == 'sunny' %} night {% elif cond1 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond1 }} {% endif %}
          {% else %}
              {{ cond1 }}
          {% endif %}
        weather_temperature_1: >
          {{ state_attr('sensor.stratford_forecast_hourly', 'forecast')[1].temperature | float(0) }}
        weather_timestamp_1: >
          {{ as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[1].datetime) | timestamp_custom('%I') | int }} {{ as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[1].datetime) | timestamp_custom('%p') }}

        weather_condition_2: >
          {% set cond2 = state_attr('sensor.stratford_forecast_hourly', 'forecast')[2].condition %}
          {% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
          {% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
          {% set cond2_time = as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[2].datetime) %}
          {% if cond2_time < next_rising and next_rising < next_setting %}
              {% if cond2 == 'sunny' %} night {% elif cond2 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond2 }} {% endif %}
          {% else %}
              {{ cond2 }}
          {% endif %}
        weather_temperature_2: >
          {{ state_attr('sensor.stratford_forecast_hourly', 'forecast')[2].temperature | float(0) }}
        weather_timestamp_2: >
          {{ as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[2].datetime) | timestamp_custom('%I') | int }} {{ as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[2].datetime) | timestamp_custom('%p') }}

        weather_condition_3: >
          {% set cond3 = state_attr('sensor.stratford_forecast_hourly', 'forecast')[3].condition %}
          {% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
          {% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
          {% set cond3_time = as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[3].datetime) %}
          {% if cond3_time < next_rising and next_rising < next_setting %}
              {% if cond3 == 'sunny' %} night {% elif cond3 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond3 }} {% endif %}
          {% else %}
              {{ cond3 }}
          {% endif %}
        weather_temperature_3: >
          {{ state_attr('sensor.stratford_forecast_hourly', 'forecast')[3].temperature | float(0) }}
        weather_timestamp_3: >
          {{ as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[3].datetime) | timestamp_custom('%I') | int }} {{ as_timestamp(state_attr('sensor.stratford_forecast_hourly', 'forecast')[3].datetime) | timestamp_custom('%p') }}

        temperature_affective: >
          {% if states('sensor.stratford_humidex')|is_number or states('sensor.stratford_wind_chill')|is_number %}
            {% if states('sensor.stratford_humidex')|is_number %}
              {% set temperature_affective = "Feels Like: " ~ states('sensor.stratford_humidex') | round(1) %}
            {% else %}
              {% set temperature_affective = "Wind Chill: " ~ states('sensor.stratford_wind_chill') | round(1) %}
            {% endif %} 
          {% else %}
            {% set temperature_affective = "" %}
          {% endif %}
          {{ temperature_affective }}

        temperature_trend: >
          {% set temperature_trend = states('binary_sensor.temperature_trend_exterior') %}
          {{ temperature_trend }}

        humidity: >
          {{ states('sensor.stratford_humidity') | float(0) }}
        barometric_pressure: >
          {{ states('sensor.stratford_barometric_pressure') | float(0) }}

        pressure_trend: >
          {% set pressure_trend = states('sensor.stratford_tendency') %}
          {{ pressure_trend }}

        wind_bearing: >
          {{ states('sensor.stratford_wind_bearing') | float(0) }}
        wind_speed: >
          {{ states('sensor.stratford_wind_speed') | float(0) }}

        uv_index: >
          {{ states('sensor.stratford_uv_index') |  float(0.0) }}

        aqhi: >
          {{ states('sensor.stratford_aqhi') | float(0.0) }}

        visibility: >
          {{ states('sensor.stratford_visibility') | float(0.0) }}

        moon_phase: >
          {{ states('sensor.moon') }}

        sun_position: >
          {% set position_now = states('sun.sun') %}
          {{ position_now }}
        sunrise_time: >
          {{ as_timestamp(state_attr('sun.sun', 'next_rising')) | timestamp_custom('%I:%M') }}
        sunset_time: >
          {{ as_timestamp(state_attr('sun.sun', 'next_setting')) | timestamp_custom('%I:%M') }}

        weather_alert: >
          {% set weather_alert = [states('sensor.stratford_statements'), states('sensor.stratford_advisory'), states('sensor.stratford_warnings'), states('sensor.stratford_watches')] %}
          {% if weather_alert | map('int') | max != 0 %}
            {% if states('sensor.stratford_watches') | int  > 0  %}Watches - {{ states('sensor.stratford_watches') | int }}
              {% elif states('sensor.stratford_warnings') | int > 0  %}Warnings - {{ states('sensor.stratford_warnings') | int }}
              {% elif states('sensor.stratford_advisory') | int > 0  %}Advisories - {{ states('sensor.stratford_advisory') | int  }}
              {% else %}
                Statements - {{ states('sensor.stratford_statements') | int }}
            {% endif %}
          {% else %}
            {{""}}
          {% endif %}

        updated_on: >
          {% set date = as_timestamp(states('sensor.stratford_observation_time'))|timestamp_custom("%a %b %Oe, %Y at %-I:%M %p") %}
          {{ date }}

#########################################
# "Current Tariff Period" Configuration #
#########################################
- trigger:
    - trigger: homeassistant
      event: start
    - trigger: state
      entity_id: sensor.festival_hydro_inc_residential_electricity_rate
      attribute: active_peak
  action:
    - choose:
        - conditions:
            - condition: state
              entity_id: sensor.festival_hydro_inc_residential_electricity_rate
              attribute: active_peak
              state: off_peak
          sequence:
            - action: select.select_option
              metadata: {}
              data:
                option: Off Peak
              target:
                entity_id:
                  - select.daily_energy_roof_heating
                  - select.yearly_energy_roof_heating
            - action: input_number.set_value
              data:
                value: "{{ state_attr('sensor.festival_hydro_inc_residential_electricity_rate','off_peak_rate')|float(0)}}"
              target:
                entity_id: input_number.current_tariff_rate
        - conditions:
            - condition: state
              entity_id: sensor.festival_hydro_inc_residential_electricity_rate
              attribute: active_peak
              state: mid_peak
          sequence:
            - action: select.select_option
              metadata: {}
              data:
                option: Mid Peak
              target:
                entity_id:
                  - select.daily_energy_roof_heating
                  - select.yearly_energy_roof_heating
            - action: input_number.set_value
              data:
                value: "{{ state_attr('sensor.festival_hydro_inc_residential_electricity_rate','mid_peak_rate')|float(0)}}"
              target:
                entity_id: input_number.current_tariff_rate
        - conditions:
            - condition: state
              entity_id: sensor.festival_hydro_inc_residential_electricity_rate
              attribute: active_peak
              state: on_peak
          sequence:
            - action: select.select_option
              metadata: {}
              data:
                option: On Peak
              target:
                entity_id:
                  - select.daily_energy_roof_heating
                  - select.yearly_energy_roof_heating
            - action: input_number.set_value
              data:
                value: "{{ state_attr('sensor.festival_hydro_inc_residential_electricity_rate','on_peak_rate')|float(0)}}"
              target:
                entity_id: input_number.current_tariff_rate

##################################################
# "Rain Predicted Within 24 Hours" Configuration #
##################################################
- trigger:
    - trigger: homeassistant
      event: start
    - trigger: time_pattern
      minutes: /59 # Poll for new data at 59 minutes after the hour
  action:
    - action: weather.get_forecasts
      target:
        entity_id:
          - weather.stratford_forecast
      data:
        type: hourly
      response_variable: weatherforecast
    - variables:
        wet_conditions: "{{['rainy','pouring','lightning','lightning-rainy','hail']}}"
        condition_forecast: "{{weatherforecast['weather.stratford_forecast'].forecast[:24]|map(attribute='condition')|list }}"

  binary_sensor:
    - name: 24-Hour Rain Outlook
      unique_id: 24_hour_rain_outlook
      icon: mdi:weather-rainy
      state: "{{intersect(condition_forecast,wet_conditions)|count > 0}}"
      device_class: moisture

based on Incomplete template configuration after 2025.11.0 · Issue #155893 · home-assistant/core · GitHub I think the fix is to remove the

 ---

 - trigger:
    - platform: homeassistant
      event: start

    - platform: event
      event_type: event_template_reloaded

    - platform: state
      entity_id: sensor.time
--binary-sensor:
+ binary_sensor:

1 Like

It would, but I don’t understand why you are talking about this…?

Is it because I included template in my example? Note that I described that as a “general” schema. The convention in the HA docs and here on the forums historically has been to format configuration examples as if they are in configuration.yaml.


Regarding the error:

Look at the configuration for “Current Tariff Period”. There is no entity type domain key. You only have trigger and action.

Correct. As I mentioned above, the dash you had in front of binary_sensor signals a new list item under template… even if template actually visible because of the merge method you are using.

I don’t think I do either - :flushed:

Looking over the other code in my file, I think I’m beginning to understand what the issue is!

It seems there needs to be a sensor of some sort in that section of code. What I don’t understand is why the code worked prior to the 2025.11 update. Any thoughts what type of sensor needs to be added?

Yes. The point of a template entity configuration is to create an entity… your “Current Tariff Period” doesn’t create an entity, it just sets values to existing Select and Number Helpers.

The maintainer of the Template integration added the check in this month’s update. He has been doing a lot of work to get Template entities all to a level where their functionality can be expanded.

Technically, if it worked previously, it should still “work” currently. But, in 6 months it will stop working because the point of a template entity configuration is to create an entity

One issue with what you currently have is that it is hidden. It’s like a secret automation changing the value of three helpers, but you would never find it in the Automations list. And it doesn’t produce an entity that you might stumble upon to remind you of the source of those value changes.

It’s your configuration… how am I supposed to know what you need? :upside_down_face:

Based on what I can see, you could use it to create a Template Number or a Template Sensor instead of setting value to the Helper input_number.current_tariff_rate. Whether you should use number or sensor depends on whether you need to interact directly with input_number.current_tariff_rate’s replacement. If you need the ability to change its value from the front end, then a number entity would be appropriate, otherwise you would use sensor.

If you don’t actually need a template entity, and you are fine with how input_number.current_tariff_rate is currently working, just move that combination of triggers and actions to an automation, because that’s basically what it is currently.

Thank you, I’m beginning to see the error of my way!

I’ve moved it to an “automation”. All is well.

Thanks you for your assistance. Much appreciated.