public static List<Int64> Time(Printer P, BigInteger T)
{
List<Int64> res = new List<Int64>();
Int64 d;
Int64 current = 0;
uint i = 1;
while (current < T)
{
current = P.f * i;
if (current < T)
d = (Int64)T - current;
{
res.Add(current);
i++;
}
}
return res;
}