R/lewis.R

Defines functions get_lewis

Documented in get_lewis

#' Get historical United States Congressional District Shapefiles
#' 
#' Data sourced from the United States Congressional District Shapefiles, primarily
#' hosted at <https://cdmaps.polisci.ucla.edu/>. Files are fetched through the GitHub 
#' repository at <https://github.com/JeffreyBLewis/congressional-district-boundaries>.
#'
#' @param state two letter state abbreviation
#' @param congress congress number, from 1 to 114.
#'
#' @return a sf tibble of the congressional district boundaries
#' @export
#' 
#' @references 
#'  Jeffrey B. Lewis, Brandon DeVine, Lincoln Pitcher, and Kenneth C. Martis. (2013) 
#'  Digital Boundary Definitions of United States Congressional Districts, 1789-2012. 
#'  \[Data file and code book\]. Retrieved from <https://cdmaps.polisci.ucla.edu> on \[date of download\].
#'
#' @examples
#' get_lewis(state = 'NM', congress = 111)
get_lewis <- function(state, congress) {
  
  st <- tolower(censable::match_name(state))
  st <- stringr::str_replace_all(stringr::str_to_title(st), ' ', '_')
  
  st_f <- lewis_urls[stringr::str_detect(lewis_urls, st)]
  
  f <- lapply(stringr::str_extract_all(st_f, '\\d+'), as.integer)
  f <- lapply(f, function(x) dplyr::between(congress, x[1], x[2])) |> 
    unlist()
  
  file_name <- st_f[f]
  
  cli::cli_inform(
    'Data sourced from the United States Congressional District Shapefiles {.url https://cdmaps.polisci.ucla.edu/}.',
    .frequency = 'once',
    .frequency_id = 'cite_lewis'
  )
  
  out <- sf::read_sf(file_name)
  
  if (requireNamespace('RcppSimdJson', quietly = TRUE)) {
    out$member <- RcppSimdJson::fparse(out$member)
  }
  
  out
}

# lewis_urls <- httr2::request('https://api.github.com/repos/JeffreyBLewis/congressional-district-boundaries/contents') |> 
#   httr2::req_perform() |> 
#   httr2::resp_body_json() |> 
#   lapply(function(x) purrr::pluck(x, 'download_url')
#   ) |> 
#   unlist()

lewis_urls <- c(
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_16_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_18_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_23_to_26.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_27_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_28_to_33.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_34_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_40_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_43_to_44.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_45_to_48.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_49_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_53_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_63_to_64.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_65_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_73_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_88_to_88.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_89_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alabama_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alaska_103_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Alaska_86_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arizona_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arizona_108_to_108.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arizona_109_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arizona_62_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arizona_78_to_80.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arizona_81_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arizona_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arizona_90_to_91.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arizona_92_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arizona_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arizona_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_24_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_33_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_40_to_40.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_41_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_43_to_43.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_44_to_44.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_45_to_46.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_47_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_48_to_48.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_49_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_53_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_58_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_83_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Arkansas_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_31_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_37_to_38.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_39_to_39.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_40_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_43_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_48_to_48.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_49_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_53_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_63_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_73_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_78_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_83_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_88_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_93_to_93.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_94_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_98_to_98.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/California_99_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Colorado_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Colorado_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Colorado_44_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Colorado_53_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Colorado_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Colorado_63_to_63.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Colorado_64_to_67.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Colorado_68_to_88.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Colorado_89_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Colorado_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Colorado_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_1_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_25_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_28_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_3_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_63_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_73_to_88.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_89_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_8_to_24.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Connecticut_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Delaware_103_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Delaware_13_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Delaware_18_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Delaware_1_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Delaware_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/District_Of_Columbia_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_103_to_104.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_105_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_29_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_40_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_43_to_43.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_44_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_48_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_63_to_63.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_64_to_68.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_69_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_73_to_74.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_75_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_78_to_78.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_79_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_83_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_90_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Florida_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_103_to_103.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_104_to_104.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_105_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_108_to_109.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_10_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_110_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_13_to_15.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_16_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_18_to_19.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_1_to_1.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_20_to_20.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_21_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_28_to_28.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_29_to_31.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_2_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_32_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_33_to_33.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_34_to_35.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_36_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_3_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_40_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_43_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_48_to_48.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_49_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_53_to_59.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_60_to_60.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_61_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_63_to_64.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_65_to_69.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_70_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_73_to_88.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_89_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_8_to_8.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Georgia_9_to_9.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Hawaii_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Hawaii_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Hawaii_86_to_91.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Hawaii_92_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Hawaii_98_to_98.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Hawaii_99_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Idaho_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Idaho_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Idaho_51_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Idaho_63_to_65.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Idaho_66_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Idaho_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Idaho_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Idaho_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_15_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_28_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_33_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_38_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_43_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_48_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_53_to_53.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_54_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_63_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_78_to_80.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_81_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_83_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Illinois_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_14_to_15.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_16_to_16.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_17_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_18_to_18.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_19_to_20.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_21_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_28_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_33_to_40.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_41_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_43_to_43.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_44_to_46.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_47_to_49.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_50_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_53_to_54.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_55_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_63_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_73_to_73.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_74_to_74.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_75_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_78_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_90_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Indiana_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_29_to_29.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_30_to_30.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_31_to_35.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_36_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_38_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_43_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_48_to_49.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_50_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_73_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_78_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_88_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Iowa_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_36_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_43_to_43.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_44_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_48_to_48.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_49_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_53_to_55.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_56_to_59.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_60_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_73_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_78_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kansas_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_103_to_104.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_105_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_13_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_18_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_28_to_33.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_2_to_6.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_34_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_38_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_43_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_48_to_51.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_52_to_55.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_56_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_63_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_73_to_73.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_74_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_7_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_83_to_84.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_85_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_8_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Kentucky_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/LICENSE',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_103_to_103.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_104_to_104.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_105_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_12_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_18_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_28_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_33_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_37_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_40_to_40.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_41_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_43_to_43.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_44_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_63_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_91_to_91.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_92_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_98_to_98.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Louisiana_99_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_103_to_103.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_104_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_108_to_108.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_109_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_17_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_18_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_28_to_28.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_29_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_33_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_38_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_48_to_48.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_49_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_63_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_73_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_88_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maine_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_1_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_23_to_23.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_24_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_28_to_28.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_29_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_33_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_38_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_3_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_43_to_51.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_52_to_54.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_55_to_55.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_56_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_58_to_67.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_68_to_79.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_80_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_83_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_8_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Maryland_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_13_to_13.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_14_to_14.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_15_to_16.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_17_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_18_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_1_to_1.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_28_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_2_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_33_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_38_to_39.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_3_to_3.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_40_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_43_to_44.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_45_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_48_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_4_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_53_to_54.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_55_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_63_to_64.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_65_to_69.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_70_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_73_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_78_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_88_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_8_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Massachusetts_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_24_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_28_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_33_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_38_to_41.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_42_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_43_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_48_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_53_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_63_to_63.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_64_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_73_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_83_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_88_to_88.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_89_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Michigan_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_103_to_103.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_104_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_35_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_38_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_43_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_48_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_53_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_63_to_63.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_64_to_71.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_72_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_73_to_73.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_74_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_88_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Minnesota_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_15_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_28_to_29.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_30_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_33_to_33.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_34_to_34.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_35_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_41_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_43_to_44.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_45_to_45.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_46_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_48_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_58_to_61.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_62_to_65.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_66_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_73_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_83_to_84.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_85_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_98_to_98.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Mississippi_99_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_17_to_21.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_22_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_28_to_29.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_30_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_33_to_33.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_34_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_38_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_43_to_45.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_46_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_48_to_49.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_50_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_53_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_58_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_73_to_73.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_74_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_83_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_90_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_91_to_91.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_92_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Missouri_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Montana_103_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Montana_51_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Montana_63_to_65.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Montana_66_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Montana_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Montana_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Montana_98_to_98.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Montana_99_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nebraska_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nebraska_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nebraska_39_to_46.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nebraska_47_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nebraska_48_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nebraska_53_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nebraska_73_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nebraska_78_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nebraska_88_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nebraska_91_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nebraska_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nevada_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nevada_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nevada_38_to_41.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nevada_42_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Nevada_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_13_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_1_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_28_to_29.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_30_to_31.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_32_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_33_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_3_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_48_to_91.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_8_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_92_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Hampshire_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_103_to_105.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_106_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_13_to_13.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_14_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_1_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_28_to_28.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_29_to_29.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_30_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_33_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_38_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_3_to_5.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_43_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_53_to_53.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_54_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_63_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_6_to_6.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_73_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_7_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_8_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_90_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_98_to_98.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Jersey_99_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Mexico_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Mexico_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Mexico_62_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Mexico_63_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Mexico_78_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Mexico_91_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_Mexico_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_103_to_105.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_106_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_11_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_13_to_16.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_17_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_18_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_1_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_28_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_33_to_33.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_34_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_38_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_3_to_5.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_43_to_43.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_44_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_48_to_48.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_49_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_53_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_63_to_64.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_65_to_65.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_66_to_67.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_68_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_6_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_73_to_78.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_79_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_83_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_88_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_8_to_8.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_91_to_91.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_92_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_93_to_93.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_94_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_98_to_98.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_99_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/New_York_9_to_10.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_103_to_105.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_106_to_106.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_107_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_13_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_1_to_1.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_28_to_29.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_2_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_30_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_33_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_3_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_40_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_43_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_48_to_48.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_49_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_53_to_54.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_55_to_55.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_56_to_56.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_57_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_58_to_60.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_61_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_63_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_73_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_78_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_8_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_90_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Carolina_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Dakota_103_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Dakota_51_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Dakota_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Dakota_63_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Dakota_73_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Dakota_88_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Dakota_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/North_Dakota_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_100_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_103_to_104.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_105_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_13_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_18_to_21.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_22_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_28_to_29.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_30_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_33_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_38_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_43_to_45.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_46_to_46.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_47_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_48_to_48.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_49_to_49.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_50_to_51.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_52_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_53_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_63_to_63.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_64_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_73_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_78_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_7_to_8.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_83_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_90_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_98_to_99.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Ohio_9_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oklahoma_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oklahoma_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oklahoma_60_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oklahoma_63_to_63.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oklahoma_64_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oklahoma_73_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oklahoma_78_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oklahoma_83_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oklahoma_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oklahoma_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oklahoma_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oregon_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oregon_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oregon_35_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oregon_53_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oregon_63_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oregon_78_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oregon_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oregon_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Oregon_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_108_to_108.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_109_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_13_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_18_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_1_to_1.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_23_to_26.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_27_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_28_to_29.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_2_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_30_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_33_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_38_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_3_to_3.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_43_to_43.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_44_to_44.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_45_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_48_to_50.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_4_to_6.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_51_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_53_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_58_to_61.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_62_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_63_to_67.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_68_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_73_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_78_to_78.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_79_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_7_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_83_to_83.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_84_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_8_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Pennsylvania_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/README.md',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_1_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_28_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_3_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_43_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_48_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_63_to_71.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_72_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_73_to_88.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_89_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Rhode_Island_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_103_to_103.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_104_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_13_to_14.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_15_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_18_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_1_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_28_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_33_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_3_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_40_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_43_to_43.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_44_to_44.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_45_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_48_to_53.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_54_to_55.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_56_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_58_to_64.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_65_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_73_to_88.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_89_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_8_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Carolina_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Dakota_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Dakota_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Dakota_51_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Dakota_63_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Dakota_73_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Dakota_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Dakota_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/South_Dakota_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_10_to_10.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_11_to_11.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_12_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_13_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_18_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_28_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_33_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_37_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_39_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_43_to_43.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_44_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_48_to_51.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_4_to_5.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_52_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_58_to_67.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_68_to_69.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_6_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_70_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_73_to_73.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_74_to_77.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_78_to_79.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_80_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_83_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_8_to_8.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_90_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_93_to_94.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_95_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Tennessee_9_to_9.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_103_to_104.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_105_to_106.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_107_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_108_to_108.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_109_to_109.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_110_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_28_to_31.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_29_to_31.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_32_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_41_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_43_to_43.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_44_to_46.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_47_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_48_to_49.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_50_to_50.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_51_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_53_to_54.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_55_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_58_to_61.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_62_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_63_to_63.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_64_to_65.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_66_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_73_to_73.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_74_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_83_to_85.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_86_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_88_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_90_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_93_to_93.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_94_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_98_to_98.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Texas_99_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Utah_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Utah_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Utah_54_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Utah_63_to_63.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Utah_64_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Utah_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Utah_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Utah_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_103_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_13_to_16.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_17_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_18_to_18.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_19_to_21.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_22_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_23_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_28_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_2_to_6.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_33_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_48_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_73_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_7_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_8_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Vermont_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_103_to_103.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_104_to_105.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_106_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_10_to_12.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_13_to_17.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_18_to_18.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_19_to_22.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_1_to_2.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_23_to_24.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_25_to_25.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_26_to_27.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_28_to_29.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_30_to_31.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_32_to_32.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_33_to_35.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_36_to_36.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_37_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_3_to_7.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_41_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_43_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_48_to_48.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_49_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_53_to_60.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_61_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_63_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_73_to_73.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_74_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_83_to_89.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_8_to_9.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_90_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Virginia_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_51_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_53_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_58_to_60.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_61_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_63_to_63.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_64_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_73_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_83_to_85.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_86_to_86.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_87_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_98_to_98.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Washington_99_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_38_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_48_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_63_to_64.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_65_to_71.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_72_to_73.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_74_to_82.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_83_to_87.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_88_to_90.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_91_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/West_Virginia_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_103_to_107.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_108_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_30_to_30.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_31_to_37.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_38_to_42.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_43_to_44.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_45_to_47.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_48_to_52.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_53_to_57.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_58_to_62.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_63_to_72.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_73_to_88.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_89_to_92.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_93_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wisconsin_98_to_102.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wyoming_103_to_112.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wyoming_51_to_97.geojson',
  'https://raw.githubusercontent.com/JeffreyBLewis/congressional-district-boundaries/master/Wyoming_98_to_102.geojson'
)
christopherkenny/geomander documentation built on Feb. 18, 2024, 7:58 p.m.