#P177G1. Fibonacci Strings

Fibonacci Strings

Description

Fibonacci strings are defined as follows:

  • f1 = «a»
  • f2 = «b»
  • fn = fn - 1 fn - 2, n > 2

Thus, the first five Fibonacci strings are: "a", "b", "ba", "bab", "babba".

You are given a Fibonacci string and m strings si. For each string si, find the number of times it occurs in the given Fibonacci string as a substring.

The first line contains two space-separated integers k and m — the number of a Fibonacci string and the number of queries, correspondingly.

Next m lines contain strings si that correspond to the queries. It is guaranteed that strings si aren't empty and consist only of characters "a" and "b".

The input limitations for getting 30 points are:

  • 1 ≤ k ≤ 3000
  • 1 ≤ m ≤ 3000
  • The total length of strings si doesn't exceed 3000

The input limitations for getting 100 points are:

  • 1 ≤ k ≤ 1018
  • 1 ≤ m ≤ 104
  • The total length of strings si doesn't exceed 105

Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specifier.

For each string si print the number of times it occurs in the given Fibonacci string as a substring. Since the numbers can be large enough, print them modulo 1000000007 (109 + 7). Print the answers for the strings in the order in which they are given in the input.

Input

The first line contains two space-separated integers k and m — the number of a Fibonacci string and the number of queries, correspondingly.

Next m lines contain strings si that correspond to the queries. It is guaranteed that strings si aren't empty and consist only of characters "a" and "b".

The input limitations for getting 30 points are:

  • 1 ≤ k ≤ 3000
  • 1 ≤ m ≤ 3000
  • The total length of strings si doesn't exceed 3000

The input limitations for getting 100 points are:

  • 1 ≤ k ≤ 1018
  • 1 ≤ m ≤ 104
  • The total length of strings si doesn't exceed 105

Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specifier.

Output

For each string si print the number of times it occurs in the given Fibonacci string as a substring. Since the numbers can be large enough, print them modulo 1000000007 (109 + 7). Print the answers for the strings in the order in which they are given in the input.

Samples

6 5
a
b
ab
ba
aba

3
5
3
3
1