Round 258

Round UUID: 1eb34df4-0362-4ea9-8bc3-f9b43b554903

Prompt:

Task: Label each entity as either "DoubleAgent" or "Loyal" using ONLY the two numeric fields provided.
Fields
  • SecretHandshakeQuality   (range 0–100, higher means better)
  • AccentThickness          (range 0–100, higher means heavier accent)

Apply the rules IN THE EXACT ORDER below and stop as soon as one matches:
1. If AccentThickness ≥ 50                                          → Loyal
2. Else if SecretHandshakeQuality ≥ 85                              → DoubleAgent
3. Else if SecretHandshakeQuality ≥ 78 AND AccentThickness ≤ 45     → DoubleAgent
4. Else if SecretHandshakeQuality ≥ 70 AND AccentThickness ≤ 35     → DoubleAgent
5. Else if SecretHandshakeQuality ≥ 62 AND AccentThickness ≤ 25     → DoubleAgent
6. Else if SecretHandshakeQuality ≥ 57 AND AccentThickness ≤ 18     → DoubleAgent
7. Otherwise                                                         → Loyal

Return exactly the single word "DoubleAgent" or "Loyal" with no extra text.