Round 308

Round UUID: db91a95a-670d-4740-8671-2d185c03829f

Prompt:

Given Entity Data featuring FizzIntensity and ColourShift, assign a label of 'Effective' or 'Ineffective' strictly following these explicit rules:

1. If FizzIntensity >= 55, label as 'Effective' only if ColourShift <= 19.0. Otherwise, label as 'Ineffective'.
2. If 45 <= FizzIntensity < 55, label as 'Effective' only if ColourShift <= 15.0. Otherwise, label as 'Ineffective'.
3. If 37 <= FizzIntensity < 45, label as 'Effective' only if ColourShift <= 12.0. Otherwise, label as 'Ineffective'.
4. If 32 <= FizzIntensity < 37, label as 'Effective' only if ColourShift <= 13.0. Otherwise, label as 'Ineffective'.
5. If FizzIntensity < 32:
    a. If ColourShift >= 18.0, label as 'Effective'.
    b. Otherwise, label as 'Ineffective'.
6. In all other cases, label as 'Ineffective'.

No exceptions, no guessing—apply these rules exactly. Output only 'Effective' or 'Ineffective' per sample.