class ReeDatetime::FindHumanTimeZonesByOffset

def call(offset)

def call(offset)
  return CACHE[offset] if CACHE.has_key?(offset)
  human_zones = find_time_zones_by_offset(offset)
    .select { ALL_ZONES.include?(_1) }
    .map { INVERTED_ZONES[_1] }
  CACHE[offset] = human_zones
  human_zones
end