Condition (TRUE || TRUE && TRUE) works as intended
Condition (TRUE || TRUE && FALSE) does NOT match ((TRUE || TRUE) && FALSE) --- Should have been "FALSE" but was actually "TRUE"
Condition (TRUE || FALSE && TRUE) works as intended
Condition (TRUE || FALSE && FALSE) does NOT match ((TRUE || FALSE) && FALSE) --- Should have been "FALSE" but was actually "TRUE"
Condition (FALSE || TRUE && TRUE) works as intended
Condition (FALSE || TRUE && FALSE) works as intended
Condition (FALSE || FALSE && TRUE) works as intended
Condition (FALSE || FALSE && FALSE) works as intended