In Someland a great programming competition was held. The scoreboard is now frozen, and everyone is waiting for the final results announcement. At the same time, a group of hackers published a screenshot with the part of the final unfrozen scoreboard. However, looking on the published part of the scoreboard you have started to doubt it is not a fake.
You are given the frozen scoreboard and what is claimed to be a part of the final scoreboard. You have to find out whether it is possible that you are given a real part of the final scoreboard.
The rules of this competition are as follows:
You are given a frozen scoreboard and what is claimed to be k consecutive lines of the final scoreboard. Your goal is to check whether it is possible that the claim is true.
The first line of the input contains three integers n, m and k (1 ≤ n ≤ 26, 1 ≤ k ≤ m ≤ 1000) — the size of the problem set, the number of teams participating, and the size of the leaked part of the final scoreboard.
In the next m lines, the results of the teams in the frozen scoreboard are listed from top to bottom, i.e. from the best to the worst result. Then follow k lines describing the allegedly leaked continuous part of the final scoreboard.
Each line that describes the results of a team obeys the following format. The line starts with a team name. The name is a non-empty string of at most 10 lower-case English letters. Then follow n triples c, a, t (0 ≤ a ≤ 100, 0 ≤ t ≤ 299), describing the results of this team for each problem. The character c is one of '+', '-', or '.', meaning the team has already solved this problem, the team has made some unsuccessful attempts and haven't solved this problem yet, or the team has never attempted this problem respectively. Integer a stands for the number of submissions, and integer t stands for the minute when the last submission was made.
It is guaranteed that both scoreboards are self-consistent and non-contradictory. In particular, that means:
If it is possible that the last k lines of the input are k consecutive lines of the final scoreboard, print "Leaked" (without quotes). Otherwise, print "Fake" (without quotes).
3 3 2
crabs + 1 1 + 1 2 + 1 3
lions . 0 0 - 5 239 . 0 0
wombats . 0 0 . 0 0 . 0 0
wombats + 1 241 + 3 299 - 22 299
lions + 1 241 + 6 240 - 3 299
Leaked
3 4 2
crabs + 1 1 + 1 2 + 1 3
lions . 0 0 + 5 239 . 0 0
wolves . 0 0 . 0 0 . 0 0
wombats . 0 0 . 0 0 . 0 0
crabs + 1 1 + 1 2 + 1 3
wombats . 0 0 + 2 299 . 0 0
Fake
| Name |
|---|


