Write a program which reads $n$ dices constructed in the same way as Dice I, and determines whether they are all different. For the determination, use the same way as Dice III.
In the first line, the number of dices $n$ is given. In the following $n$ lines, six integers assigned to the dice faces are given respectively in the same way as Dice III.
Print "Yes" if given dices are all different, otherwise "No" in a line.
3 1 2 3 4 5 6 6 2 4 3 5 1 6 5 4 3 2 1
No
3 1 2 3 4 5 6 6 5 4 3 2 1 5 4 3 2 1 6
Yes