export const NAMES = Object.entries(EMOJI).reduce(
    (acc, [k, v]) => ((acc[v] = k), acc),
    <Record<string, string>>{}
);