Round 312

Round UUID: d26f0c94-0ca6-46db-9300-e7f159136ee3

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 - Delta Treatment 89 Female Rule**:
If Histogen_Complex is "Delta" AND Treatment_Months is between 88.5 and 89.5 AND Sex is "female", predict FAILURE.

**RULE 3 - Beta Female High Mass Rule**:
If Histogen_Complex is "Beta" AND Sex is "female" AND TcQ_mass is greater than 50000 AND Treatment_Months is greater than 70, predict FAILURE.

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

**RULE 5 - Delta Treatment 89 High Mass Rule**:
If Histogen_Complex is "Delta" AND Treatment_Months is between 88 and 91 AND TcQ_mass is greater than 20000, predict FAILURE.

**RULE 6 - High Genetic A Delta Rule**:
If Histogen_Complex is "Delta" AND Genetic_Class_A_Matches is 4 or higher, predict FAILURE.

**RULE 7 - Delta Male Narrow Success Rule**:
If Histogen_Complex is "Delta" AND Sex is "male" AND TcQ_mass is between 7500 and 7800 AND Genetic_Class_B_Matches equals 1, predict SUCCESS.

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

**RULE 9 - 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 10 - Omicron Female High Mass Rule**:
If Histogen_Complex is "Omicron" AND Sex is "female" AND TcQ_mass is greater than 25000, predict FAILURE.

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

**RULE 12 - 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 13 - Treatment Around 89 Low Mass Male Rule**:
If Treatment_Months is between 88 and 90 AND Histogen_Complex is "Delta" AND Sex is "male" AND TcQ_mass is less than 9000, predict FAILURE.

**RULE 14 - 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 15 - High Mass Beta Success Rule**:
If TcQ_mass is between 90000 and 200000 AND Histogen_Complex is "Beta" AND Treatment_Months is less than 130, predict SUCCESS.

**RULE 16 - Omicron Male Moderate Mass Rule**:
If Histogen_Complex is "Omicron" AND Sex is "male" AND TcQ_mass is between 10000 and 27000, predict SUCCESS.

**RULE 17 - Beta Treatment 135-140 Rule**:
If Histogen_Complex is "Beta" AND Treatment_Months is between 135 and 140 AND TcQ_mass is between 30000 and 40000, predict FAILURE.

**RULE 18 - Delta Male Moderate Mass B1 Success Rule**:
If Histogen_Complex is "Delta" AND Sex is "male" AND TcQ_mass is between 15000 and 25000 AND Genetic_Class_B_Matches equals 1 AND Treatment_Months is not between 88 and 91, 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 18. Use the first rule that matches. If no rules match, use the DEFAULT RULE.

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