Memphis loves xor very musch.Now he gets an array A.The length of A is n.Now he wants to know the sum of all (lowbit($A_i$ xor $A_j$)) $(i,j \in [1,n])$ We define that lowbit(x)=$2^{k}$,k is the smallest integer satisfied (($x$ and $2^k$)>0) Specially,lowbit(0)=0 Because the ans may be too big.You just need to output $ans$ mod 998244353
输入解释
Multiple test cases, the first line contains an integer T(no more than 10), indicating the number of cases. Each test case contains two lines The first line has an integer $n$ The second line has $n$ integers $A_1$,$A_2$....$A_n$ $n \in [1,5*10^4]$,$A_i \in [0,2^{29}]$
输出解释
For each case, the output should occupies exactly one line. The output format is Case #x: ans, here x is the data number begins at 1.