def fnv1a(d): return get_hash(d) & 0xffffffff
def fnv1a(s): from fnv1a import get_hash return get_hash(s) & 0xffffffff