Round 384

Round UUID: b7766424-0677-43cb-b1f9-0e2adc60df05

Prompt:

You are analyzing coral reef health data to classify reefs as either "Healthy" or "Stressed". 

Apply these rules in order:

**IMMEDIATE STRESS INDICATORS (classify as Stressed if ANY are true):**
1. PollutionLevel = "Critical"
2. BleachingEventsPerYear = "Constant"
3. AcousticIntensity > 1600 OR AcousticIntensity < 40

**STRESS WITH BIODIVERSITY OVERRIDE (classify as Stressed UNLESS BiodiversityIndex = "Very High"):**
1. ReefIntegrityScore = "Very Poor"

**EXCELLENT REEF PROTECTION (classify as Healthy if ALL are true):**
1. ReefIntegrityScore = "Excellent"
2. CurrentFlowQuality = "Good" OR "Excellent"
3. AlgalCoverage = "Minimal" OR "Sparse"

**STRONG HEALTHY INDICATORS (classify as Healthy if ALL are true):**
1. PreviousStressIncidents = "None" 
2. BleachingEventsPerYear = "Rare"
3. ReefIntegrityScore = "Good" OR "Excellent"
4. BiodiversityIndex = "High" OR "Very High"
5. PollutionLevel = "Low"

**SEVERE COMBINED STRESS (classify as Stressed if ANY are true):**
1. PollutionLevel = "High" AND BiodiversityIndex = "Low" AND ReefIntegrityScore != "Excellent"
2. BleachingEventsPerYear = "Frequent" AND ReefIntegrityScore = "Poor"
3. CurrentFlowQuality = "Poor" AND BleachingEventsPerYear = "Frequent" AND PollutionLevel = "High"

**MODERATE COMBINED STRESS (classify as Stressed if 3+ are true):**
1. CurrentFlowQuality = "Poor"
2. AlgalCoverage = "Heavy" OR "Extensive"
3. PredatorActivityLevel = "High" OR "Extreme" OR "Severe" OR "Catastrophic"
4. BleachingEventsPerYear = "Frequent"
5. PollutionLevel = "High" OR "Moderate"
6. ReefIntegrityScore = "Poor"
7. BiodiversityIndex = "Low" OR "Very Low"

**DEFAULT:** If none of the above rules apply, classify as "Healthy"

Analyze the given reef data and classify it as either "Healthy" or "Stressed" based on these rules.