for _ in range(int(input())): a, b = map(int, input().split()) res = a // 2 + b // 2 if res % 2 == 1: print("First") else: print("Second")