Round 205

Round UUID: 1d157c6b-21d6-42c6-a205-d7cea0dfe2f9

Prompt:

Task: Decide whether the reef described in the incoming JSON‑like record is "Healthy" or "Stressed".

Apply the following deterministic rule set IN THE EXACT ORDER GIVEN (stop at the first rule whose criteria are met).

========================
HEALTHY RESILIENCE OVERRIDES  (evaluate FIRST)
------------------------
0. Structural‑flow shield   (unchanged)
   If ReefIntegrityScore = Excellent AND 
      CurrentFlowQuality ∈ {Fair, Good, Excellent} AND 
      PollutionLevel ≠ Critical AND 
      PredatorActivityLevel ≠ Catastrophic   
      → Healthy
   (Rationale: an excellently built reef with adequate flow and no catastrophic external pressure is considered resilient.)

1. Flow‑compensation for deteriorated structure   (NEW)
   If ReefIntegrityScore = Very Poor AND 
      CurrentFlowQuality = Excellent AND 
      BleachingEventsPerYear ∈ {Rare, Occasional} AND 
      PollutionLevel ∈ {Low, Moderate} AND 
      PredatorActivityLevel ∈ {None, Low, Very Low, Moderate Low}
      → Healthy
   (Rationale: outstanding water exchange together with low external stress can temporarily offset severe structural decay.)

========================
IMMEDIATE STRESS RULES
------------------------
2. Hydrodynamic‑Bleach overload  (unchanged)
   If CurrentFlowQuality = Poor AND 
      BleachingEventsPerYear ∈ {Constant, Frequent} AND 
      ReefIntegrityScore ≠ Excellent 
      → Stressed

3. Critical pollution (needs corroboration)
   If PollutionLevel = Critical AND  
      (BleachingEventsPerYear ∈ {Constant, Frequent} OR
       DistantStressIndicators = Confirmed OR
       ReefIntegrityScore ∈ {Poor, Very Poor} OR
       PredatorActivityLevel ∈ {Moderate High, High, Severe, Catastrophic})
      → Stressed

4. Predator surge  (unchanged)
   If PredatorActivityLevel = Severe OR Catastrophic AND  
      (BleachingEventsPerYear ∈ {Constant, Frequent} OR
       PollutionLevel ∈ {High, Critical} OR
       DistantStressIndicators = Confirmed)
      → Stressed

5. Bleaching‑plus combo  (threshold relaxed)
   If BleachingEventsPerYear ∈ {Constant, Frequent} AND at least ONE of the following conditions is present  →  Stressed
      • PollutionLevel ∈ {High, Critical}
      • DistantStressIndicators = Confirmed
      • PredatorActivityLevel ∈ {Moderate High, High, Severe, Catastrophic}

6. Flow‑pollution choke  (NEW)
   If PollutionLevel = High AND CurrentFlowQuality ∈ {Fair, Poor} → Stressed

========================
STRUCTURAL INTEGRITY RULES
------------------------
7. Structural collapse  (refined position – logic unchanged)
   If ReefIntegrityScore = Very Poor → Stressed

8. Compromised integrity combo  (unchanged)
   If ReefIntegrityScore = Poor AND at least TWO of the following conditions are present  →  Stressed
      • PollutionLevel ∈ {Moderate, High, Critical}
      • DistantStressIndicators ∈ {Possible, Confirmed}
      • CurrentFlowQuality ∈ {Fair, Poor}
      • BleachingEventsPerYear ∈ {Frequent, Constant}
      • PredatorActivityLevel ∈ {Moderate High, High, Severe, Catastrophic}

========================
TARGETED COMBINATION RULE
------------------------
9. If PollutionLevel = High AND DistantStressIndicators = Confirmed AND ReefIntegrityScore ∈ {Poor, Very Poor} → Stressed

========================
MULTI‑RISK ACCUMULATION RULE
------------------------
10. Count how many of the following MODERATE risk signals are present (each counts 1 point):
    a) PollutionLevel = High
    b) BleachingEventsPerYear = Constant OR Frequent
    c) DistantStressIndicators = Confirmed
    d) PredatorActivityLevel = Moderate High OR High OR Catastrophic
    e) ReefIntegrityScore = Poor OR Very Poor
    f) CurrentFlowQuality = Poor
    g) PreviousStressIncidents = Moderate

    • If CurrentFlowQuality = Poor AND count ≥ 3  →  Stressed
    • Otherwise, if count ≥ 4  →  Stressed

========================
DEFAULT RULE
------------------------
11. If none of the above rules fired → Healthy

========================
NOTES & DEFINITIONS (follow strictly)
------------------------
• Treat "Very Low" and "Moderate Low" predator levels as LOW (they do NOT count for rules 4, 5, 8 or 10).
• Treat "Moderate High" predator level the same as "High"; treat "Catastrophic" the same as "Severe".
• "Occasional" or "Rare" bleaching do NOT by themselves create risk points (except inside the specialised override in rule 1).
• Do NOT use AlgalCoverage, NearbyHealthyReef, RemoteSensorPresent, SurveyorExperience or InvasiveSpeciesDetected in your decision; they are considered unreliable indicators.
• Output exactly one of the two labels:  Healthy   or   Stressed  (case sensitive, nothing else).

Once you have applied the rules, output the chosen label on its own line.