#Lutece0007. Fate of Bearchild

Fate of Bearchild

Migrated from Lutece 7 Fate of Bearchild

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

Bearchild is born for Math, bearchild is born for numbers. Numbers are faith, numbers are justice, numbers are power, numbers are the way to talk to God.

Bearchild finds permutations fascinating, he immediately writes nn numbers, from 11 to nn, on a paper. Then he begins to play with the number sequence.

Bearchild can change a sequence to a new one. This is how he does: he chooses a number from the second one to the last one in the sequence, and swaps it with the first number. So there are n1n-1 ways to change a sequence into another.

At first, there is only one sequence written by bearchild on the paper. Then he changes the sequence into another one in n1n-1 ways, and writes all of them down. So there are nn sequences on the paper in total after the first step.

Then he repeat this process, he change all the nn sequences, each with n1n-1 new sequences, so there will be n2n^2 sequences in total, after the second step.You can see, after the qthq_{th} step, there will be nqn^q sequences on the paper. Some of them might be the same, but it doesn’t matter.

Bearchild wonders the sum of the number of inversion pairs in each sequence on the paper. Here a inversion pair means a pair i,j\langle i,j\rangle with i<ji<j and Ai>AjA_i>A_j, in the sequence AA. (0i,j<n0\leq i, j<n)

Input

The first line of input contains a number TT, indicating the number of test cases. (T10000T\leq 10000) . For each case, there is two numbers nn and qq, as described in the sequence. (1n,q1,000,000,0001\leq n,q\leq 1,000,000,000).

Output

For each case, output Case #i: first. (ii is the number of the test case, from 11 to TT). Then output the answer, mod 10000000071000000007.

Samples

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

Note

For the first sample, the original sequence is 1 2 3, after 11 step, there will be 33 sequences on the paper, they are 1 2 3, 2 1 3 and 3 2 1, each has a number of inversion pairs 00, 11 and 33, so the answer is 0+1+3=40+1+3=4.

Resources

The 11th UESTC Programming Contest Final