1 2 3 4 5 6 7 8 9 10 11 12
tt = int(input()) for _ in range(tt): s = input() new_s = "Yes" * 20 if s in new_s: print("YES") else: print("NO")