public static BigUInt <N> Sub(BigUInt <N> v1, UInt32 v2) { BigUInt <N> ret = v1.Copy(); ret.CarrySub(0, v2); return(ret); }