#Lutece0379. Integer’s Weight

Integer’s Weight

Migrated from Lutece 379 Integer’s Weight

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

For a positive integer, we define its weight as follows:

First we denote it in 22 base as bnbn1b1b0b_nb_{n-1}\cdots b_1b_0, with the most significant bit at the leftmost position. The weight of the integer is the number of pairs (bi,bj)(b_i,b_j), where i>ji > j, and bi>bjb_i > b_j. For example, 10 (1010 base) = 1010 (22 base), so the weight of 1010 is 33.

In this problem, we will give you some positive integers’ weights, and for every weight, you should find the smallest positive integer whose weight is equal to it.

Input

The first line of the input is an integer TT (T1000T\leq 1000), which stands for the number of test cases you need to solve.

Every test case is a single integer ww (1w1091\leq w\leq 10^9), indicates the weight of a positive integer.

Output

For every test case, you should output Case #k: first, where kk indicates the case number and starts at 11. Then output the answer. As the answer may be very large, you only need to tell me the remainder while it divides 10000000071000000007. See sample for more details.

Samples

4
1
2
3
4
Case #1: 2
Case #2: 4
Case #3: 8
Case #4: 12

Resources

The 9th UESTC Programming Contest Final