Round UUID: ab844277-7467-46ec-8453-223a56d4b300
Prompt:
You are tasked with identifying whether an entity is a "DoubleAgent" or "Loyal" based on two characteristics: - SecretHandshakeQuality: A numerical score (higher indicates better quality) - AccentThickness: A numerical score (higher indicates thicker accent) Apply these rules in order: 1. If AccentThickness is less than 20 AND SecretHandshakeQuality is greater than 55, classify as "DoubleAgent" 2. If SecretHandshakeQuality is greater than 75 AND AccentThickness is less than 47, classify as "DoubleAgent" 3. If SecretHandshakeQuality is greater than 72 AND AccentThickness is less than 35, classify as "DoubleAgent" 4. If SecretHandshakeQuality is between 70 and 73 (inclusive) AND AccentThickness is less than 37.5, classify as "DoubleAgent" 5. If AccentThickness is greater than 50, classify as "Loyal" 6. If SecretHandshakeQuality is less than 60, classify as "Loyal" 7. If SecretHandshakeQuality is between 65 and 70 (exclusive of 70) AND AccentThickness is less than 31, classify as "DoubleAgent" 8. If SecretHandshakeQuality is between 61 and 65 (exclusive of 65) AND AccentThickness is less than 26, classify as "DoubleAgent" 9. If SecretHandshakeQuality is between 60 and 61 (inclusive) AND AccentThickness is less than 25, classify as "DoubleAgent" 10. Otherwise, classify as "Loyal" Output only the classification: either "DoubleAgent" or "Loyal"