static int fmix32(int h) { h ^= h >>> 16; h = imul32(h, 0x85ebca6b); h ^= h >>> 13; h = imul32(h, 0xc2b2ae35); h ^= h >>> 16; return h; }