Round 116

Round UUID: 80192998-11c3-4729-9cd4-3d86d2a8a5a6

Prompt:

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

Apply these rules in order:

1. If SecretHandshakeQuality is greater than or equal to 65 AND AccentThickness is less than 26, classify as DoubleAgent.

2. If SecretHandshakeQuality is greater than or equal to 70 AND AccentThickness is less than 32, classify as DoubleAgent.

3. If SecretHandshakeQuality is greater than or equal to 70 AND AccentThickness is between 32 and 42 (inclusive), classify as DoubleAgent.

4. If AccentThickness is greater than 42, classify as Loyal.

5. If SecretHandshakeQuality is less than 65 AND AccentThickness is less than 26, classify as Loyal.

6. If SecretHandshakeQuality is less than 65 AND AccentThickness is greater than or equal to 30, classify as Loyal.

7. If SecretHandshakeQuality is between 65 and 70 (inclusive) AND AccentThickness is between 26 and 30 (inclusive), classify as DoubleAgent.

8. For all other cases, classify as Loyal.

Output only "DoubleAgent" or "Loyal" based on these rules.