public Xoroshiro128p(Xoroshiro128p other) { state = other.state; }
public Rand(ulong seed) { rng = new Xoroshiro128p(seed); }