You are given t test cases. Each test case contains an integer n. Find the value of the following function:
such that
Formally, you are required to find the summation from i=0 to i=n for f[i].
Input format
Output format
Print the answer as described above modulo 109+7.
Constraints
1≤t≤105
1≤n≤1018
In the first test case we have n=1 so we have to find the summation of f[0]+f[1] = 0+1 = 1,
also the second test case the answer will be 0+1+1+2+3+5+8+13 = 33.