fn pow5Bits(e: u32) u32
fn pow5Bits(e: u32) u32 { std.debug.assert(e <= 1 << 15); return @intCast(((@as(u64, @intCast(e)) * 163391164108059) >> 46) + 1); }