Round 263

Round UUID: db4cb379-2f08-4cd3-8919-7c6f3b650f0c

Prompt:

Analyze the entity data and predict whether the outcome will be Success or Failure based on the following rules:

**RULE 1 - Zero TcQ_mass Rule**:
If TcQ_mass equals 0.0, predict FAILURE (regardless of other factors).

**RULE 2 - Extended Treatment Beta Failure Rule**:
If Histogen_Complex is "Beta" AND Treatment_Months is greater than 140 AND TcQ_mass is greater than 30000, predict FAILURE.

**RULE 3 - High Genetic A Delta Failure Rule**:
If Histogen_Complex is "Delta" AND Genetic_Class_A_Matches is 4 or higher AND TcQ_mass is less than 30000, predict FAILURE.

**RULE 4 - Delta Male Low-Mid Mass Rule**:
If Histogen_Complex is "Delta" AND Sex is "male" AND TcQ_mass is between 7500 and 10000 AND Genetic_Class_B_Matches equals 1, predict SUCCESS.

**RULE 5 - High TcQ Beta Rule**:
If Histogen_Complex is "Beta" AND TcQ_mass is greater than 200000, predict FAILURE.

**RULE 6 - Delta Low Mass B1 Rule**:
If Histogen_Complex is "Delta" AND TcQ_mass is less than 7500 AND Genetic_Class_B_Matches equals 1, predict FAILURE.

**RULE 7 - Omicron Female High Mass Rule**:
If Histogen_Complex is "Omicron" AND Sex is "female" AND TcQ_mass is greater than 25000, predict FAILURE.

**RULE 8 - Beta Moderate Mass Success Rule**:
If Histogen_Complex is "Beta" AND TcQ_mass is between 10000 and 35000 AND Treatment_Months is less than 140, predict SUCCESS.

**RULE 9 - Delta Moderate Success Rule**:
If Histogen_Complex is "Delta" AND TcQ_mass is between 10000 and 15000 AND Genetic_Class_B_Matches is 2 or higher, predict SUCCESS.

**RULE 10 - Treatment Around 89 Beta Rule**:
If Treatment_Months is between 85 and 95 AND Histogen_Complex is "Beta" AND TcQ_mass is greater than 50000, predict FAILURE.

**RULE 11 - Short Treatment High Mass Failure Rule**:
If Treatment_Months is less than 40 AND TcQ_mass is greater than 27000 AND (Genetic_Class_A_Matches + Genetic_Class_B_Matches) is 7 or higher, predict FAILURE.

**RULE 12 - High Mass General Success Rule**:
If TcQ_mass is greater than 90000 AND Histogen_Complex is "Beta" AND Treatment_Months is less than 90, predict SUCCESS.

**DEFAULT RULE**:
If none of the above rules apply:
- If TcQ_mass is greater than 25000 AND Histogen_Complex is not "Omicron", predict SUCCESS
- Otherwise, predict FAILURE

Apply these rules in order from 1 to 12. Use the first rule that matches. If no rules match, use the DEFAULT RULE.

Output only one word: either "Success" or "Failure".