Round 122

Round UUID: fa00b5f8-4503-4cd0-9905-1e57fd4a21a5

Prompt:

You are tasked with identifying whether an entity is a DoubleAgent or Loyal based on two measurements: SecretHandshakeQuality and AccentThickness.

Apply these rules in order:

1. If AccentThickness > 35, predict Loyal
2. If SecretHandshakeQuality > 90 AND AccentThickness ≤ 35, predict DoubleAgent  
3. If SecretHandshakeQuality > 75 AND AccentThickness ≤ 30, predict DoubleAgent
4. If AccentThickness ≤ 30 AND SecretHandshakeQuality > 60, predict DoubleAgent
5. Otherwise, predict Loyal

Use only the entity data provided and apply the first rule that matches the conditions.