private static Set<String> getFemaleNames() {
    if (FEMALE_NAMES == null) {
      InputStream in = Utils.getFemaleNames();
      try {
        FEMALE_NAMES = Utils.readStringsSet(in);
      } catch (Exception e) {
        throw new RuntimeException(e);
      }
    }

    return FEMALE_NAMES;
  }