T = int(input()) for _ in range(T): x1,y1,d1 = map(str,input().split()) x1,y1 = int(x1),int(y1) x2,y2,d2 = map(str,input().split()) x2,y2 = int(x2),int(y2) col = False if x1 == x2: if y1 > y2 and d1 == "D" and d2 == "U": col = True if y1 < y2 and d1 == "U" and d2 == "D": col = True if y1 == y2: if x1 > x2 and d1 == "L" and d2 == "R": col = True if x1 < x2 and d1 == "R" and d2 == "L": col = True if abs(x2 - x1) == abs(y2 - y1): if x2 < x1: x1,x2,y1,y2,d1,d2 = x2,x1,y2,y1,d2,d1 if y1 > y2 and d1 == "D" and d2 == "L": col = True if y1 > y2 and d1 == "R" and d2 == "U": col = True if y1 < y2 and d1 == "R" and d2 == "D": col = True if y1 < y2 and d1 == "U" and d2 == "L": col = True if col: print("Yes") else: print("No")