Skip to content

Instantly share code, notes, and snippets.

@walkerke
Last active March 25, 2016 00:44
Show Gist options
  • Save walkerke/da941dac84f730adcdde to your computer and use it in GitHub Desktop.
Save walkerke/da941dac84f730adcdde to your computer and use it in GitHub Desktop.

Shiny app to highlight on a Leaflet map by brushing a Plotly chart. Run for yourself with (provided all of the packages are installed):

shiny::runGist('da941dac84f730adcdde')

To get this to work on another dataset, you're going to need to have a sequential ID variable that matches the pointNumber column in the data frame generated by Plotly's event_data. See the setup.R script for how this was derived.

library(shiny)
library(leaflet)
library(plotly)
library(ggplot2)
library(geojsonio)
tarrxy <- geojson_read('tarrxy.geojson', what = 'sp')
ui <- fluidPage(
titlePanel("Linked brushing with Plotly and Leaflet in Shiny"),
fixedRow(
column(width = 6,
plotlyOutput('scatter'))
),
fixedRow(
column(width = 6,
leafletOutput('map'))
)
)
server <- function(input, output, session) {
output$scatter <- renderPlotly({
g <- ggplot(tarrxy@data, aes(x = pctwhite, y = pctrep)) +
geom_point() +
xlab('Percent non-Hispanic white, 2010') +
ylab('Percent voting Republican, 2012')
ggplotly(g, source = 'source') %>% layout(dragmode = 'lasso')
})
selected_precincts <- reactive({
eventdata <- event_data('plotly_selected', source = 'source')
precincts <- as.numeric(eventdata[['pointNumber']])
sub <- tarrxy[tarrxy$id %in% precincts, ]
return(sub)
})
output$map <- renderLeaflet({
tarrant_map <- leaflet() %>%
addProviderTiles('CartoDB.DarkMatter') %>%
addPolygons(data = tarrxy, weight = 1, smoothFactor = 0.2,
color = 'white', fillColor = 'grey') %>%
addPolygons(data = selected_precincts(), fill = FALSE, color = '#FFFF00',
opacity = 1)
tarrant_map
})
}
shinyApp(ui = ui, server = server)
library(rgdal)
library(rmapshaper)
library(geojsonio)
tarr <- readOGR(dsn = '.', layer = 'tarrant_precincts')
tarr_simp <- ms_simplify(tarr)
tarrxy <- spTransform(tarr_simp, CRS("+proj=longlat +datum=WGS84"))
tarrxy <- tarrxy[tarrxy$pctrep != -1 & tarrxy$pctwhite != -1, ]
l1 <- length(tarrxy) - 1
tarrxy$id <- 0:l1
geojson_write(tarrxy, file = 'tarrxy.geojson')
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "id": 0, "properties": { "pctwhite": 73.061224, "pctrep": 60.256410, "R": 470, "D": 298, "CNTYVTD": "4391001", "rmapshaperid": 0, "id": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.321397000234015, 32.744992000372598 ], [ -97.33013000023827, 32.745222999825948 ], [ -97.332926000044353, 32.746796000389779 ], [ -97.332950999633454, 32.751004000288006 ], [ -97.337448999983934, 32.75181999985486 ], [ -97.338956000390382, 32.75417900026406 ], [ -97.334146999757394, 32.757412999587814 ], [ -97.32721899981216, 32.760378999582954 ], [ -97.323178999828031, 32.762681000071929 ], [ -97.322382999471756, 32.757147000360661 ], [ -97.321451999537032, 32.749997000001102 ], [ -97.321397000234015, 32.744992000372598 ] ] ] } },
{ "type": "Feature", "id": 1, "properties": { "pctwhite": 49.441786, "pctrep": 56.816560, "R": 796, "D": 589, "CNTYVTD": "4391004", "rmapshaperid": 1, "id": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.370486999534236, 32.662880000170368 ], [ -97.366535000133226, 32.662900000346106 ], [ -97.368238000217517, 32.660711000406721 ], [ -97.365683999913841, 32.659181999754473 ], [ -97.361892999759007, 32.659373999698126 ], [ -97.361902999712171, 32.655336000436684 ], [ -97.367683999702479, 32.649625000240242 ], [ -97.376896000221791, 32.650511000296341 ], [ -97.376949000419117, 32.663451999904801 ], [ -97.370486999534236, 32.662880000170368 ] ] ] } },
{ "type": "Feature", "id": 2, "properties": { "pctwhite": 2.800000, "pctrep": 2.406417, "R": 9, "D": 364, "CNTYVTD": "4391005", "rmapshaperid": 2, "id": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.309254000520255, 32.735514999924739 ], [ -97.320329000240079, 32.735401000218118 ], [ -97.319291000146578, 32.742522000379843 ], [ -97.31201199949767, 32.743014000436787 ], [ -97.311712999806417, 32.742956000354887 ], [ -97.309290999947777, 32.74094000042188 ], [ -97.309254000520255, 32.735514999924739 ] ] ] } },
{ "type": "Feature", "id": 3, "properties": { "pctwhite": 4.545455, "pctrep": 1.190476, "R": 2, "D": 166, "CNTYVTD": "4391008", "rmapshaperid": 3, "id": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.30319800018826, 32.748557000219684 ], [ -97.303352000343523, 32.748545000348294 ], [ -97.303546999686247, 32.753141000147401 ], [ -97.307935999766727, 32.754958000351408 ], [ -97.309008000124834, 32.756650000034774 ], [ -97.30897600000921, 32.759645000216736 ], [ -97.306433000137304, 32.76227100040937 ], [ -97.305251999912741, 32.762259000316412 ], [ -97.304066999469825, 32.76226200034327 ], [ -97.301711999962848, 32.762233999757058 ], [ -97.301772000278305, 32.757876999613636 ], [ -97.303322000336905, 32.753194000075261 ], [ -97.30319800018826, 32.748557000219684 ] ] ] } },
{ "type": "Feature", "id": 4, "properties": { "pctwhite": 75.539568, "pctrep": 65.976714, "R": 510, "D": 255, "CNTYVTD": "4391009", "rmapshaperid": 4, "id": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.453130000230445, 32.698803999781312 ], [ -97.455372000177888, 32.700287999984639 ], [ -97.457806000375129, 32.700030999788659 ], [ -97.460501999533349, 32.701898000083318 ], [ -97.46064699988537, 32.708640999842892 ], [ -97.461826999874802, 32.70937600036018 ], [ -97.461790000219906, 32.71405800025061 ], [ -97.459748000172695, 32.716296000183789 ], [ -97.457598999780245, 32.716295999592099 ], [ -97.457715999658006, 32.723783999664946 ], [ -97.451003999772425, 32.722987000057906 ], [ -97.45278200000071, 32.71627800012822 ], [ -97.452785999775188, 32.706278999623535 ], [ -97.449503999901395, 32.705677000019634 ], [ -97.453130000230445, 32.698803999781312 ] ] ] } },
{ "type": "Feature", "id": 5, "properties": { "pctwhite": 16.223404, "pctrep": 12.834225, "R": 24, "D": 161, "CNTYVTD": "4391010", "rmapshaperid": 5, "id": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.296161000002257, 32.743811000208595 ], [ -97.29741699962716, 32.741452999770118 ], [ -97.29469699991914, 32.738880999732991 ], [ -97.293301000496413, 32.73577700043176 ], [ -97.296133000369665, 32.733926999836207 ], [ -97.297322000120033, 32.731180000437561 ], [ -97.306924999492111, 32.73140899969713 ], [ -97.309254000520255, 32.735514999924739 ], [ -97.309290999947777, 32.74094000042188 ], [ -97.311712999806417, 32.742956000354887 ], [ -97.307056999939817, 32.742874000010133 ], [ -97.303052000121454, 32.743823000308346 ], [ -97.303352000343523, 32.748545000348294 ], [ -97.30319800018826, 32.748557000219684 ], [ -97.294597999848094, 32.749308000257635 ], [ -97.294627000271333, 32.747085000445203 ], [ -97.296161000002257, 32.743811000208595 ] ] ] } },
{ "type": "Feature", "id": 6, "properties": { "pctwhite": 10.980641, "pctrep": 11.413043, "R": 42, "D": 321, "CNTYVTD": "4391011", "rmapshaperid": 6, "id": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.278010999979344, 32.736679000366138 ], [ -97.274656000309889, 32.734940999868272 ], [ -97.269600000147278, 32.733819999615477 ], [ -97.261945999771257, 32.734246000378889 ], [ -97.261929999693862, 32.731263000271916 ], [ -97.262010000421682, 32.727058000410175 ], [ -97.276587000374448, 32.727119000095151 ], [ -97.282244000358418, 32.727140999742105 ], [ -97.28233499967881, 32.735962999567377 ], [ -97.278010999979344, 32.736679000366138 ] ] ] } },
{ "type": "Feature", "id": 7, "properties": { "pctwhite": 42.513147, "pctrep": 38.420245, "R": 501, "D": 781, "CNTYVTD": "4391012", "rmapshaperid": 7, "id": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.198789999697851, 32.745757999992783 ], [ -97.198789000066071, 32.736355000023046 ], [ -97.213884999938159, 32.736500000131379 ], [ -97.219048000097061, 32.737608999853386 ], [ -97.224969999775283, 32.737741000145874 ], [ -97.224273999978465, 32.74607000006533 ], [ -97.222324999757035, 32.746068000037631 ], [ -97.198789999697851, 32.745757999992783 ] ] ] } },
{ "type": "Feature", "id": 8, "properties": { "pctwhite": 14.038263, "pctrep": 11.679337, "R": 169, "D": 1268, "CNTYVTD": "4391013", "rmapshaperid": 8, "id": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.263619999718941, 32.661367999596955 ], [ -97.269913999757861, 32.661358000248548 ], [ -97.281405999765894, 32.661327000090843 ], [ -97.28025199994488, 32.666254999702026 ], [ -97.280186000367067, 32.671773999560074 ], [ -97.280110999831351, 32.678238000098339 ], [ -97.287363000507952, 32.684837999828233 ], [ -97.291482000144583, 32.688394999667764 ], [ -97.280153000275234, 32.683213999559989 ], [ -97.271576000464179, 32.679270999829441 ], [ -97.267878000368981, 32.677580000305475 ], [ -97.264604999750318, 32.674788000228219 ], [ -97.264602000008992, 32.666055000263185 ], [ -97.263619999718941, 32.661367999596955 ] ] ] } },
{ "type": "Feature", "id": 9, "properties": { "pctwhite": 37.890865, "pctrep": 53.412463, "R": 180, "D": 150, "CNTYVTD": "4391014", "rmapshaperid": 9, "id": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.331813000505406, 32.664470000121248 ], [ -97.333720999843408, 32.661480999626917 ], [ -97.35284699951157, 32.661459000311517 ], [ -97.35258999964222, 32.667256999566447 ], [ -97.339737999467786, 32.664415000367349 ], [ -97.334283999846448, 32.664056000247065 ], [ -97.331813000505406, 32.664470000121248 ] ] ] } },
{ "type": "Feature", "id": 10, "properties": { "pctwhite": 41.057935, "pctrep": 44.667503, "R": 356, "D": 415, "CNTYVTD": "4391015", "rmapshaperid": 10, "id": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.359237999570453, 32.726269999992653 ], [ -97.359801000498294, 32.72523299972795 ], [ -97.36453799988729, 32.723736000257027 ], [ -97.367523999472823, 32.722850000123444 ], [ -97.371757000000557, 32.722695999968479 ], [ -97.380363999968353, 32.719080999987419 ], [ -97.385369999838844, 32.716279000194291 ], [ -97.386571000287134, 32.719761000456302 ], [ -97.386819999865509, 32.72376100043396 ], [ -97.387861000451593, 32.725661999682757 ], [ -97.38784899952654, 32.729090000107597 ], [ -97.384124000197772, 32.729047999806717 ], [ -97.384093999504202, 32.732806999713141 ], [ -97.378629000250157, 32.732670000064765 ], [ -97.36668600045607, 32.732601999561091 ], [ -97.361498999932408, 32.733594999835539 ], [ -97.359891000218894, 32.734076000354818 ], [ -97.358786999936726, 32.732801999773649 ], [ -97.357693000099928, 32.729075000208944 ], [ -97.359237999570453, 32.726269999992653 ] ] ] } },
{ "type": "Feature", "id": 11, "properties": { "pctwhite": 12.582160, "pctrep": 21.754386, "R": 62, "D": 223, "CNTYVTD": "4391019", "rmapshaperid": 11, "id": 11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.289432999555217, 32.749685000071921 ], [ -97.294597999848094, 32.749308000257635 ], [ -97.30319800018826, 32.748557000219684 ], [ -97.303322000336905, 32.753194000075261 ], [ -97.301772000278305, 32.757876999613636 ], [ -97.301711999962848, 32.762233999757058 ], [ -97.304066999469825, 32.76226200034327 ], [ -97.305251999912741, 32.762259000316412 ], [ -97.306433000137304, 32.76227100040937 ], [ -97.308981000061777, 32.761248999845904 ], [ -97.308897999951597, 32.767391000099742 ], [ -97.301786999768481, 32.768291999944864 ], [ -97.293028000161698, 32.768005000161146 ], [ -97.287442999503909, 32.771047999796558 ], [ -97.287730999677109, 32.758217999791704 ], [ -97.289191000065131, 32.754694000252414 ], [ -97.289432999555217, 32.749685000071921 ] ] ] } },
{ "type": "Feature", "id": 12, "properties": { "pctwhite": 80.920021, "pctrep": 69.136461, "R": 1297, "D": 551, "CNTYVTD": "4391021", "rmapshaperid": 12, "id": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.447914000415096, 32.652118999766138 ], [ -97.449396999991734, 32.65321800040639 ], [ -97.459940000161509, 32.656238999586662 ], [ -97.461860999673917, 32.657845000292951 ], [ -97.463392999691834, 32.662332000036656 ], [ -97.455816000200642, 32.664014000212461 ], [ -97.454250999909604, 32.665092000415811 ], [ -97.452576000472135, 32.669182000369432 ], [ -97.452469000264017, 32.682858999938304 ], [ -97.447440999843849, 32.68351999976128 ], [ -97.426896999750127, 32.683130999769759 ], [ -97.425475000210739, 32.683587999784692 ], [ -97.425592999756205, 32.681867999646954 ], [ -97.427677999984851, 32.682109999733072 ], [ -97.42916399962084, 32.681522999753874 ], [ -97.430518000512038, 32.678711000456467 ], [ -97.433017000204373, 32.677456000115463 ], [ -97.435605000016352, 32.671062000251062 ], [ -97.437457999691759, 32.669810999580392 ], [ -97.436415999996854, 32.666685000082389 ], [ -97.438704000340749, 32.666857000377625 ], [ -97.44467299973509, 32.663876999781955 ], [ -97.447253999633077, 32.664095000298403 ], [ -97.450342999965585, 32.658180999839736 ], [ -97.447536000093393, 32.653751000447087 ], [ -97.447914000415096, 32.652118999766138 ] ] ] } },
{ "type": "Feature", "id": 13, "properties": { "pctwhite": 71.333736, "pctrep": 64.369311, "R": 495, "D": 261, "CNTYVTD": "4391022", "rmapshaperid": 13, "id": 13 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.376949000419117, 32.663451999904801 ], [ -97.376896000221791, 32.650511000296341 ], [ -97.382899999474816, 32.65109599990771 ], [ -97.381938999734373, 32.656502999890236 ], [ -97.383399000315308, 32.658574999970298 ], [ -97.387722999814031, 32.661123999999347 ], [ -97.392882999804485, 32.665387999727479 ], [ -97.38990200017011, 32.667855999985989 ], [ -97.384579999625345, 32.663831999839019 ], [ -97.376949000419117, 32.663451999904801 ] ] ] } },
{ "type": "Feature", "id": 14, "properties": { "pctwhite": 62.415552, "pctrep": 60.774711, "R": 1365, "D": 853, "CNTYVTD": "4391023", "rmapshaperid": 14, "id": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.355135000311137, 32.606785000005821 ], [ -97.355898999472302, 32.593867999976553 ], [ -97.357945999783638, 32.583955999649419 ], [ -97.364586999921926, 32.55336200039276 ], [ -97.386367000292182, 32.553558999869352 ], [ -97.386205000008587, 32.567072999848733 ], [ -97.382079000050851, 32.567473000036962 ], [ -97.380885000463934, 32.568996999715495 ], [ -97.380885000358305, 32.573637999884298 ], [ -97.382537000091759, 32.575046000450975 ], [ -97.382411000261726, 32.581663999647965 ], [ -97.388342999517278, 32.581529000310688 ], [ -97.388398000034158, 32.589021000286181 ], [ -97.379707000098989, 32.58899599999517 ], [ -97.379715999511419, 32.586560000436748 ], [ -97.376612999837576, 32.586474000302481 ], [ -97.376302000083115, 32.606959000242888 ], [ -97.355135000311137, 32.606785000005821 ] ] ] } },
{ "type": "Feature", "id": 15, "properties": { "pctwhite": 65.285311, "pctrep": 67.366283, "R": 995, "D": 467, "CNTYVTD": "4391024", "rmapshaperid": 15, "id": 15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.320309000514811, 32.605984000406174 ], [ -97.319950999816299, 32.605135999723991 ], [ -97.313231999493539, 32.604753999696804 ], [ -97.310365999775485, 32.603084999993158 ], [ -97.308707000065183, 32.604107000027419 ], [ -97.294191999516983, 32.604055999805951 ], [ -97.284840000164465, 32.603998999596421 ], [ -97.284058999757704, 32.603984999635372 ], [ -97.284251000101094, 32.597610999927049 ], [ -97.292585999809646, 32.597569000288921 ], [ -97.292881000001231, 32.591291000101634 ], [ -97.29269999969236, 32.579737999882703 ], [ -97.290521999735745, 32.579747999868395 ], [ -97.290622000339425, 32.574592999730392 ], [ -97.293502000176829, 32.571713999994138 ], [ -97.293655999470502, 32.568232999948876 ], [ -97.298311999541312, 32.568078999806986 ], [ -97.300984999512579, 32.564133999932132 ], [ -97.301310999717643, 32.560632999571702 ], [ -97.287196999678457, 32.560605999716643 ], [ -97.286880999689714, 32.557533000385661 ], [ -97.284820000374864, 32.555798000129293 ], [ -97.287891000295332, 32.552315000179767 ], [ -97.314517999507487, 32.552634000235216 ], [ -97.314594000535735, 32.560526999597847 ], [ -97.314598000143661, 32.56069300007097 ], [ -97.31427299950694, 32.562924000139326 ], [ -97.317676000450334, 32.5628850002579 ], [ -97.318768999764785, 32.569292000369693 ], [ -97.319509999521401, 32.577834000149061 ], [ -97.319336999612005, 32.599119999921314 ], [ -97.320309000514811, 32.605984000406174 ] ] ] } },
{ "type": "Feature", "id": 16, "properties": { "pctwhite": 27.167070, "pctrep": 34.372294, "R": 397, "D": 747, "CNTYVTD": "4391025", "rmapshaperid": 16, "id": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.261369999803733, 32.630958999769355 ], [ -97.266104999718465, 32.630285999564663 ], [ -97.266130999466412, 32.629098000319829 ], [ -97.270028999492283, 32.630319000226834 ], [ -97.269982000425159, 32.623730000336401 ], [ -97.28710900009996, 32.62373700002248 ], [ -97.28711799971893, 32.616501000310102 ], [ -97.294598000235766, 32.616494000360419 ], [ -97.293286000370514, 32.620032000167903 ], [ -97.29322599964398, 32.623592000201072 ], [ -97.298269999817151, 32.625165999943924 ], [ -97.301218999539145, 32.627057000301527 ], [ -97.301301000452227, 32.631023000419013 ], [ -97.292686000134609, 32.631030000040262 ], [ -97.261369999803733, 32.630958999769355 ] ] ] } },
{ "type": "Feature", "id": 17, "properties": { "pctwhite": 78.037077, "pctrep": 78.119658, "R": 1371, "D": 372, "CNTYVTD": "4391034", "rmapshaperid": 17, "id": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.215369000506968, 32.607048999564896 ], [ -97.215393999880519, 32.599215000393471 ], [ -97.216655999541317, 32.598388000050619 ], [ -97.216631000270297, 32.592593000452752 ], [ -97.214158000340078, 32.590698999699335 ], [ -97.208318000063926, 32.590675999924848 ], [ -97.207231000334204, 32.58797799971056 ], [ -97.198450000441824, 32.575187000141931 ], [ -97.198151999577036, 32.570768999827713 ], [ -97.190921999503303, 32.5600699998122 ], [ -97.185458000152536, 32.562706999819156 ], [ -97.18283899972424, 32.559603999568118 ], [ -97.173752000495426, 32.564531000438748 ], [ -97.17198699994286, 32.563249000375514 ], [ -97.174267000000711, 32.561820999944516 ], [ -97.175957999987986, 32.558953999647045 ], [ -97.174513000318527, 32.555835999832404 ], [ -97.176594000325949, 32.553153000435174 ], [ -97.177039999957614, 32.550645999740681 ], [ -97.199123000221277, 32.550918000045407 ], [ -97.236436999892717, 32.551551999757557 ], [ -97.237408999809048, 32.551700000364178 ], [ -97.241776999612455, 32.559004999545635 ], [ -97.241500000222274, 32.582830999772447 ], [ -97.233726999591184, 32.582908999879848 ], [ -97.233283999913951, 32.607559999719413 ], [ -97.232461999764567, 32.607513999820689 ], [ -97.228377999518514, 32.607120999677996 ], [ -97.215369000506968, 32.607048999564896 ] ] ] } },
{ "type": "Feature", "id": 18, "properties": { "pctwhite": 18.512821, "pctrep": 8.099688, "R": 26, "D": 293, "CNTYVTD": "4391056", "rmapshaperid": 18, "id": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.303352000343523, 32.748545000348294 ], [ -97.303052000121454, 32.743823000308346 ], [ -97.307056999939817, 32.742874000010133 ], [ -97.311712999806417, 32.742956000354887 ], [ -97.31201199949767, 32.743014000436787 ], [ -97.321397000234015, 32.744992000372598 ], [ -97.321451999537032, 32.749997000001102 ], [ -97.322382999471756, 32.757147000360661 ], [ -97.30897600000921, 32.759645000216736 ], [ -97.309008000124834, 32.756650000034774 ], [ -97.307935999766727, 32.754958000351408 ], [ -97.303546999686247, 32.753141000147401 ], [ -97.303352000343523, 32.748545000348294 ] ] ] } },
{ "type": "Feature", "id": 19, "properties": { "pctwhite": 8.393866, "pctrep": 5.298013, "R": 16, "D": 285, "CNTYVTD": "4391059", "rmapshaperid": 19, "id": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.306924999492111, 32.73140899969713 ], [ -97.305158000227507, 32.729720000014197 ], [ -97.311213999538808, 32.729778999873226 ], [ -97.31061699966881, 32.72711900030307 ], [ -97.318304000065694, 32.727042999643139 ], [ -97.318328000499022, 32.72439900013935 ], [ -97.322697000247089, 32.724403000055204 ], [ -97.324691999875114, 32.725946000155069 ], [ -97.326370000375206, 32.72592100036168 ], [ -97.325892999670046, 32.73059599980715 ], [ -97.325885999943921, 32.733060000048411 ], [ -97.324260000340104, 32.735499999658479 ], [ -97.320329000240079, 32.735401000218118 ], [ -97.309254000520255, 32.735514999924739 ], [ -97.306924999492111, 32.73140899969713 ] ] ] } },
{ "type": "Feature", "id": 20, "properties": { "pctwhite": 6.568144, "pctrep": 7.333333, "R": 11, "D": 138, "CNTYVTD": "4391061", "rmapshaperid": 20, "id": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.325524000429226, 32.78221499975723 ], [ -97.322969000256975, 32.777433999989569 ], [ -97.319664000418072, 32.776282000153763 ], [ -97.314035000361201, 32.771084999837925 ], [ -97.312852999870529, 32.767794999708052 ], [ -97.310784000075401, 32.768709999913852 ], [ -97.308897999951597, 32.767391000099742 ], [ -97.308981000061777, 32.761248999845904 ], [ -97.30897600000921, 32.759645000216736 ], [ -97.322382999471756, 32.757147000360661 ], [ -97.323178999828031, 32.762681000071929 ], [ -97.327347000042423, 32.76908400021258 ], [ -97.329708999847753, 32.774096000409735 ], [ -97.331882000163631, 32.773622000137969 ], [ -97.332758000114637, 32.774669999975217 ], [ -97.335040999711168, 32.778765000090544 ], [ -97.33795099945759, 32.778081000420862 ], [ -97.339646999509782, 32.778135999604146 ], [ -97.338358000062982, 32.782952999815429 ], [ -97.336504000150981, 32.78399599956871 ], [ -97.333121000422693, 32.783776999598842 ], [ -97.325524000429226, 32.78221499975723 ] ] ] } },
{ "type": "Feature", "id": 21, "properties": { "pctwhite": 28.125000, "pctrep": 47.826087, "R": 11, "D": 12, "CNTYVTD": "4391062", "rmapshaperid": 21, "id": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.331591000195203, 32.718155000384613 ], [ -97.331590999535095, 32.716610999901768 ], [ -97.335157000028758, 32.716589000084021 ], [ -97.335173000087835, 32.718006000216008 ], [ -97.333374999465534, 32.718185000030601 ], [ -97.331591000195203, 32.718155000384613 ] ] ] } },
{ "type": "Feature", "id": 23, "properties": { "pctwhite": 29.376443, "pctrep": 37.009804, "R": 151, "D": 252, "CNTYVTD": "4391066", "rmapshaperid": 23, "id": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.270816000250903, 32.743949000046932 ], [ -97.270859999817745, 32.741023999880468 ], [ -97.277949999598121, 32.739975999666797 ], [ -97.278010999979344, 32.736679000366138 ], [ -97.286379999829336, 32.741423999714705 ], [ -97.296161000002257, 32.743811000208595 ], [ -97.294627000271333, 32.747085000445203 ], [ -97.294597999848094, 32.749308000257635 ], [ -97.289432999555217, 32.749685000071921 ], [ -97.289407999839142, 32.74770700008753 ], [ -97.284351000214258, 32.747506000336742 ], [ -97.281328000426626, 32.745161999837762 ], [ -97.274492999586442, 32.745171000063287 ], [ -97.270816000250903, 32.743949000046932 ] ] ] } },
{ "type": "Feature", "id": 24, "properties": { "pctwhite": 44.524336, "pctrep": 36.989796, "R": 435, "D": 720, "CNTYVTD": "4391071", "rmapshaperid": 24, "id": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.395688999805103, 32.682271000179917 ], [ -97.39303100004831, 32.681126000336135 ], [ -97.395338999677506, 32.67778200009311 ], [ -97.399053000001672, 32.674246999659097 ], [ -97.40016499959367, 32.668433000001784 ], [ -97.402509000304931, 32.662795999647535 ], [ -97.416910000492294, 32.662843999727428 ], [ -97.420168999929331, 32.661786000397967 ], [ -97.422716999807278, 32.661969000142875 ], [ -97.420048999738995, 32.666496999976204 ], [ -97.419248000116482, 32.672091999709401 ], [ -97.418070000271612, 32.675142999649246 ], [ -97.414703000301174, 32.679785999820496 ], [ -97.414162999817705, 32.683675000212808 ], [ -97.400353999612534, 32.683228000172306 ], [ -97.395688999805103, 32.682271000179917 ] ] ] } },
{ "type": "Feature", "id": 25, "properties": { "pctwhite": 7.033399, "pctrep": 8.695652, "R": 26, "D": 272, "CNTYVTD": "4391074", "rmapshaperid": 25, "id": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.276625999799947, 32.718146999820668 ], [ -97.28002999988577, 32.718123999760948 ], [ -97.283715000138059, 32.71807699965418 ], [ -97.288834999638979, 32.719945999805994 ], [ -97.289213999473731, 32.723490000051015 ], [ -97.291343999995917, 32.726922999771872 ], [ -97.282244000358418, 32.727140999742105 ], [ -97.276587000374448, 32.727119000095151 ], [ -97.276625999799947, 32.718146999820668 ] ] ] } },
{ "type": "Feature", "id": 26, "properties": { "pctwhite": 9.355199, "pctrep": 17.919075, "R": 62, "D": 283, "CNTYVTD": "4391075", "rmapshaperid": 26, "id": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.282244000358418, 32.727140999742105 ], [ -97.291343999995917, 32.726922999771872 ], [ -97.293844000064567, 32.726694000298302 ], [ -97.296680000163747, 32.727916000067943 ], [ -97.297322000120033, 32.731180000437561 ], [ -97.296133000369665, 32.733926999836207 ], [ -97.293301000496413, 32.73577700043176 ], [ -97.29469699991914, 32.738880999732991 ], [ -97.29741699962716, 32.741452999770118 ], [ -97.296161000002257, 32.743811000208595 ], [ -97.286379999829336, 32.741423999714705 ], [ -97.278010999979344, 32.736679000366138 ], [ -97.28233499967881, 32.735962999567377 ], [ -97.282244000358418, 32.727140999742105 ] ] ] } },
{ "type": "Feature", "id": 27, "properties": { "pctwhite": 85.602775, "pctrep": 48.706897, "R": 339, "D": 342, "CNTYVTD": "4391076", "rmapshaperid": 27, "id": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.343730000301278, 32.733163999996165 ], [ -97.343726000458759, 32.730686999666503 ], [ -97.344001000266985, 32.722296000430703 ], [ -97.346639000073139, 32.725754999886611 ], [ -97.351818000380376, 32.725754999843915 ], [ -97.35410100045678, 32.725388000365342 ], [ -97.359237999570453, 32.726269999992653 ], [ -97.357693000099928, 32.729075000208944 ], [ -97.358786999936726, 32.732801999773649 ], [ -97.350457000058427, 32.737069000115355 ], [ -97.343670999584177, 32.736521999635457 ], [ -97.343730000301278, 32.733163999996165 ] ] ] } },
{ "type": "Feature", "id": 28, "properties": { "pctwhite": 4.781879, "pctrep": 3.524229, "R": 16, "D": 437, "CNTYVTD": "4391078", "rmapshaperid": 28, "id": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.305952000460763, 32.696568000361786 ], [ -97.310224000053708, 32.699467000030616 ], [ -97.312940000478335, 32.700013000424924 ], [ -97.317433000169686, 32.701520999563243 ], [ -97.318583000213394, 32.70297500034188 ], [ -97.318475000132594, 32.707770999957745 ], [ -97.312628999843142, 32.707852000180708 ], [ -97.311064999982605, 32.705944000017354 ], [ -97.309587999559326, 32.710449999558222 ], [ -97.300702000121149, 32.710448000439314 ], [ -97.299647000427157, 32.709641999962706 ], [ -97.30312499955231, 32.704243000002059 ], [ -97.305528999730399, 32.703028999821029 ], [ -97.307466000376223, 32.700296999927133 ], [ -97.305952000460763, 32.696568000361786 ] ] ] } },
{ "type": "Feature", "id": 29, "properties": { "pctwhite": 2.394186, "pctrep": 3.543914, "R": 23, "D": 626, "CNTYVTD": "4391079", "rmapshaperid": 29, "id": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.309780000237723, 32.717371000383125 ], [ -97.320474999588185, 32.71731199959752 ], [ -97.32422799983452, 32.717269000423478 ], [ -97.322697000247089, 32.724403000055204 ], [ -97.318328000499022, 32.72439900013935 ], [ -97.318304000065694, 32.727042999643139 ], [ -97.31061699966881, 32.72711900030307 ], [ -97.309681999609936, 32.727114000229307 ], [ -97.309780000237723, 32.717371000383125 ] ] ] } },
{ "type": "Feature", "id": 30, "properties": { "pctwhite": 2.627451, "pctrep": 3.418803, "R": 24, "D": 676, "CNTYVTD": "4391080", "rmapshaperid": 30, "id": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.28002999988577, 32.718123999760948 ], [ -97.27987699972735, 32.713309999661831 ], [ -97.288744999633977, 32.713355000033005 ], [ -97.288671999967661, 32.705364999990685 ], [ -97.286106999678324, 32.702934000438866 ], [ -97.287224999786034, 32.702290999604394 ], [ -97.292293999747727, 32.703262000235561 ], [ -97.299647000427157, 32.709641999962706 ], [ -97.295897000023189, 32.717941000415188 ], [ -97.293059000224758, 32.719803000346971 ], [ -97.294541000296604, 32.724336000444723 ], [ -97.293844000064567, 32.726694000298302 ], [ -97.291343999995917, 32.726922999771872 ], [ -97.289213999473731, 32.723490000051015 ], [ -97.288834999638979, 32.719945999805994 ], [ -97.283715000138059, 32.71807699965418 ], [ -97.28002999988577, 32.718123999760948 ] ] ] } },
{ "type": "Feature", "id": 31, "properties": { "pctwhite": 85.060915, "pctrep": 64.069661, "R": 699, "D": 372, "CNTYVTD": "4391081", "rmapshaperid": 31, "id": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.351951000216545, 32.715963999846423 ], [ -97.352096000455646, 32.71275000001831 ], [ -97.356134000254329, 32.712760999675993 ], [ -97.360419000216567, 32.713804000115736 ], [ -97.360505000400195, 32.701859999871623 ], [ -97.365269999759136, 32.701575999603016 ], [ -97.374570000018622, 32.701593999669534 ], [ -97.374503999626199, 32.701937000165785 ], [ -97.373991999651565, 32.70670700027928 ], [ -97.372825000391501, 32.707180999627141 ], [ -97.372058000213059, 32.711178999661193 ], [ -97.372462000142193, 32.714252000094014 ], [ -97.371045000272915, 32.71556700017166 ], [ -97.369361999780679, 32.716460999571368 ], [ -97.351951000216545, 32.715963999846423 ] ] ] } },
{ "type": "Feature", "id": 32, "properties": { "pctwhite": 25.031056, "pctrep": 47.081712, "R": 121, "D": 129, "CNTYVTD": "4391082", "rmapshaperid": 32, "id": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.287848000370346, 32.77485299984933 ], [ -97.301786999768481, 32.768291999944864 ], [ -97.301720999818798, 32.76989600026883 ], [ -97.301549999507287, 32.780970000437989 ], [ -97.290645000506757, 32.78097000023191 ], [ -97.290330999897478, 32.778238999548101 ], [ -97.287848000370346, 32.77485299984933 ] ] ] } },
{ "type": "Feature", "id": 33, "properties": { "pctwhite": 8.008565, "pctrep": 13.801453, "R": 57, "D": 354, "CNTYVTD": "4391083", "rmapshaperid": 33, "id": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.27150199993531, 32.692230999686814 ], [ -97.280244000431097, 32.692287000265537 ], [ -97.280190000009426, 32.697743999785608 ], [ -97.281340999480292, 32.70002000022091 ], [ -97.286106999678324, 32.702934000438866 ], [ -97.288671999967661, 32.705364999990685 ], [ -97.288744999633977, 32.713355000033005 ], [ -97.27987699972735, 32.713309999661831 ], [ -97.276267000445372, 32.708039000457298 ], [ -97.272891000355528, 32.706383999642505 ], [ -97.273572999860306, 32.700217999713573 ], [ -97.271456000069833, 32.700195999572117 ], [ -97.27150199993531, 32.692230999686814 ] ] ] } },
{ "type": "Feature", "id": 35, "properties": { "pctwhite": 26.872964, "pctrep": 55.050505, "R": 218, "D": 178, "CNTYVTD": "4391085", "rmapshaperid": 35, "id": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.331784999939956, 32.678084999987135 ], [ -97.327026999987069, 32.678074999947405 ], [ -97.326933000413888, 32.665426999798058 ], [ -97.331813000505406, 32.664470000121248 ], [ -97.331824999645704, 32.667357999986514 ], [ -97.334128000042398, 32.668712000048004 ], [ -97.345088999824412, 32.668726000346389 ], [ -97.345088999733093, 32.670569000295359 ], [ -97.352440999595103, 32.670498000140469 ], [ -97.351824000023583, 32.678462999711101 ], [ -97.349877999473904, 32.684544999751445 ], [ -97.340362000277437, 32.684725000362036 ], [ -97.340841999643231, 32.678921000379518 ], [ -97.345119000436839, 32.678942000119633 ], [ -97.345118999897551, 32.677182999772256 ], [ -97.333863999834776, 32.677207000382047 ], [ -97.331784999939956, 32.678084999987135 ] ] ] } },
{ "type": "Feature", "id": 36, "properties": { "pctwhite": 10.225115, "pctrep": 20.754717, "R": 110, "D": 417, "CNTYVTD": "4391088", "rmapshaperid": 36, "id": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.261945999771257, 32.734246000378889 ], [ -97.269600000147278, 32.733819999615477 ], [ -97.274656000309889, 32.734940999868272 ], [ -97.278010999979344, 32.736679000366138 ], [ -97.277949999598121, 32.739975999666797 ], [ -97.270859999817745, 32.741023999880468 ], [ -97.261733000105977, 32.740988999584516 ], [ -97.256098999774395, 32.740926999980815 ], [ -97.253688000047049, 32.741010000152386 ], [ -97.253701000083538, 32.734679000210271 ], [ -97.261945999771257, 32.734246000378889 ] ] ] } },
{ "type": "Feature", "id": 37, "properties": { "pctwhite": 1.770658, "pctrep": 0.974421, "R": 8, "D": 812, "CNTYVTD": "4391089", "rmapshaperid": 37, "id": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.309587999559326, 32.710449999558222 ], [ -97.311064999982605, 32.705944000017354 ], [ -97.312628999843142, 32.707852000180708 ], [ -97.318475000132594, 32.707770999957745 ], [ -97.320241000027352, 32.710393999629929 ], [ -97.320553000341121, 32.712994999614565 ], [ -97.320474999588185, 32.71731199959752 ], [ -97.309780000237723, 32.717371000383125 ], [ -97.307342000143123, 32.717368000164292 ], [ -97.309587999559326, 32.710449999558222 ] ] ] } },
{ "type": "Feature", "id": 38, "properties": { "pctwhite": 5.647654, "pctrep": 1.288056, "R": 11, "D": 841, "CNTYVTD": "4391090", "rmapshaperid": 38, "id": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.297322000120033, 32.731180000437561 ], [ -97.296680000163747, 32.727916000067943 ], [ -97.293844000064567, 32.726694000298302 ], [ -97.294541000296604, 32.724336000444723 ], [ -97.293059000224758, 32.719803000346971 ], [ -97.295897000023189, 32.717941000415188 ], [ -97.299647000427157, 32.709641999962706 ], [ -97.300702000121149, 32.710448000439314 ], [ -97.309587999559326, 32.710449999558222 ], [ -97.307342000143123, 32.717368000164292 ], [ -97.309780000237723, 32.717371000383125 ], [ -97.309681999609936, 32.727114000229307 ], [ -97.31061699966881, 32.72711900030307 ], [ -97.311213999538808, 32.729778999873226 ], [ -97.305158000227507, 32.729720000014197 ], [ -97.306924999492111, 32.73140899969713 ], [ -97.297322000120033, 32.731180000437561 ] ] ] } },
{ "type": "Feature", "id": 39, "properties": { "pctwhite": 42.481203, "pctrep": 38.346728, "R": 334, "D": 515, "CNTYVTD": "4391094", "rmapshaperid": 39, "id": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.387792000143477, 32.732872000368545 ], [ -97.38784899952654, 32.729090000107597 ], [ -97.387861000451593, 32.725661999682757 ], [ -97.386819999865509, 32.72376100043396 ], [ -97.386571000287134, 32.719761000456302 ], [ -97.389654000414311, 32.718426999726859 ], [ -97.393240000137766, 32.719250999724096 ], [ -97.397683999704952, 32.72684400018462 ], [ -97.398511999675492, 32.730130999567336 ], [ -97.402268999818418, 32.731126000007826 ], [ -97.403260000513328, 32.730198000152377 ], [ -97.413416000040328, 32.730302999852917 ], [ -97.413502999755778, 32.73443099983453 ], [ -97.407891999958622, 32.734153000090039 ], [ -97.399986999590482, 32.733049000324996 ], [ -97.387792000143477, 32.732872000368545 ] ] ] } },
{ "type": "Feature", "id": 40, "properties": { "pctwhite": 93.879781, "pctrep": 67.911715, "R": 400, "D": 181, "CNTYVTD": "4391095", "rmapshaperid": 40, "id": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.351818000380376, 32.725754999843915 ], [ -97.351951000216545, 32.715963999846423 ], [ -97.369361999780679, 32.716460999571368 ], [ -97.371045000272915, 32.71556700017166 ], [ -97.37029399963464, 32.718366999722086 ], [ -97.366751999639803, 32.71865900001454 ], [ -97.36393099949106, 32.72014199985685 ], [ -97.36453799988729, 32.723736000257027 ], [ -97.359801000498294, 32.72523299972795 ], [ -97.359237999570453, 32.726269999992653 ], [ -97.35410100045678, 32.725388000365342 ], [ -97.351818000380376, 32.725754999843915 ] ] ] } },
{ "type": "Feature", "id": 41, "properties": { "pctwhite": 2.402998, "pctrep": 4.474002, "R": 37, "D": 785, "CNTYVTD": "4391098", "rmapshaperid": 41, "id": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.262858000104643, 32.718393000085292 ], [ -97.27420300045948, 32.718423999608085 ], [ -97.276625999799947, 32.718146999820668 ], [ -97.276587000374448, 32.727119000095151 ], [ -97.262010000421682, 32.727058000410175 ], [ -97.261929999693862, 32.731263000271916 ], [ -97.257351999842442, 32.731224999859947 ], [ -97.257458000133227, 32.724303000199711 ], [ -97.256944999856586, 32.721213000208522 ], [ -97.257861000444507, 32.71808200005524 ], [ -97.262858000104643, 32.718393000085292 ] ] ] } },
{ "type": "Feature", "id": 42, "properties": { "pctwhite": 21.218075, "pctrep": 28.537170, "R": 119, "D": 295, "CNTYVTD": "4391099", "rmapshaperid": 42, "id": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.224969999775283, 32.737741000145874 ], [ -97.224611999793538, 32.735613000280566 ], [ -97.221941999532945, 32.735712000009428 ], [ -97.2205240001025, 32.733554999970352 ], [ -97.220198999516256, 32.730661999603619 ], [ -97.225292999501903, 32.729435999796081 ], [ -97.225244999567423, 32.732843000154013 ], [ -97.23644300011307, 32.731171999593194 ], [ -97.236428999704785, 32.737885999747029 ], [ -97.234479000471097, 32.737981999794648 ], [ -97.234381000315608, 32.746066000236013 ], [ -97.233583999599603, 32.746075999591028 ], [ -97.230262000038636, 32.746098999769266 ], [ -97.230349999661499, 32.741680999656758 ], [ -97.227926000396366, 32.741689000151752 ], [ -97.227871000313996, 32.746096000297896 ], [ -97.226705999673655, 32.746085999662903 ], [ -97.226742999740992, 32.741691999607717 ], [ -97.225561000220964, 32.741694000283701 ], [ -97.225490999626544, 32.746076000405992 ], [ -97.224273999978465, 32.74607000006533 ], [ -97.224969999775283, 32.737741000145874 ] ] ] } },
{ "type": "Feature", "id": 43, "properties": { "pctwhite": 73.588924, "pctrep": 70.656780, "R": 667, "D": 269, "CNTYVTD": "4391103", "rmapshaperid": 43, "id": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.388342999517278, 32.581529000310688 ], [ -97.382411000261726, 32.581663999647965 ], [ -97.382537000091759, 32.575046000450975 ], [ -97.380885000358305, 32.573637999884298 ], [ -97.380885000463934, 32.568996999715495 ], [ -97.382079000050851, 32.567473000036962 ], [ -97.386205000008587, 32.567072999848733 ], [ -97.386367000292182, 32.553558999869352 ], [ -97.430997999830993, 32.554106000147002 ], [ -97.430755999562152, 32.556121999659574 ], [ -97.426739000307123, 32.556825999891039 ], [ -97.4249809999272, 32.558907999885086 ], [ -97.427352999909573, 32.563693000079525 ], [ -97.419993000435881, 32.564888999854766 ], [ -97.419781000077379, 32.569332999616421 ], [ -97.412543000405464, 32.569322000426688 ], [ -97.41253100013715, 32.573662000182523 ], [ -97.410118000283788, 32.573967000328608 ], [ -97.410105000032829, 32.587079999653653 ], [ -97.404244999494054, 32.587092999831711 ], [ -97.403737999920182, 32.581448999803847 ], [ -97.388342999517278, 32.581529000310688 ] ] ] } },
{ "type": "Feature", "id": 44, "properties": { "pctwhite": 7.867344, "pctrep": 6.204620, "R": 94, "D": 1417, "CNTYVTD": "4391104", "rmapshaperid": 44, "id": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.286106999678324, 32.702934000438866 ], [ -97.281340999480292, 32.70002000022091 ], [ -97.280190000009426, 32.697743999785608 ], [ -97.280244000431097, 32.692287000265537 ], [ -97.280153000275234, 32.683213999559989 ], [ -97.291482000144583, 32.688394999667764 ], [ -97.287363000507952, 32.684837999828233 ], [ -97.289215999558962, 32.684785999784701 ], [ -97.300348999830263, 32.687786000312421 ], [ -97.304540999974989, 32.690588999587639 ], [ -97.304273000101276, 32.694015000048687 ], [ -97.305952000460763, 32.696568000361786 ], [ -97.307466000376223, 32.700296999927133 ], [ -97.305528999730399, 32.703028999821029 ], [ -97.30312499955231, 32.704243000002059 ], [ -97.299647000427157, 32.709641999962706 ], [ -97.292293999747727, 32.703262000235561 ], [ -97.287224999786034, 32.702290999604394 ], [ -97.286106999678324, 32.702934000438866 ] ] ] } },
{ "type": "Feature", "id": 45, "properties": { "pctwhite": 71.517997, "pctrep": 60.206718, "R": 699, "D": 444, "CNTYVTD": "4391105", "rmapshaperid": 45, "id": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.384426000536521, 32.639625999833243 ], [ -97.385969000085055, 32.640895000222379 ], [ -97.390735000320333, 32.642718999890683 ], [ -97.389573000171936, 32.646400000429381 ], [ -97.390909000493437, 32.648822999730847 ], [ -97.388397999845651, 32.651108999712108 ], [ -97.382899999474816, 32.65109599990771 ], [ -97.376896000221791, 32.650511000296341 ], [ -97.377265999667728, 32.645447999843256 ], [ -97.379496000038799, 32.642052000237676 ], [ -97.384426000536521, 32.639625999833243 ] ] ] } },
{ "type": "Feature", "id": 46, "properties": { "pctwhite": 1.408912, "pctrep": 0.579290, "R": 8, "D": 1372, "CNTYVTD": "4391106", "rmapshaperid": 46, "id": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.253449999680001, 32.698930999578145 ], [ -97.259026000113423, 32.698973999699888 ], [ -97.262923000534386, 32.700644999995106 ], [ -97.262901000213461, 32.702691999718681 ], [ -97.262873999515236, 32.715852000426288 ], [ -97.256084000173018, 32.715622000395477 ], [ -97.256071999876028, 32.706668000119862 ], [ -97.253533999923135, 32.706660000135791 ], [ -97.253449999680001, 32.698930999578145 ] ] ] } },
{ "type": "Feature", "id": 47, "properties": { "pctwhite": 82.397845, "pctrep": 56.505223, "R": 595, "D": 429, "CNTYVTD": "4391108", "rmapshaperid": 47, "id": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.345627000219807, 32.712727999564336 ], [ -97.349035999581474, 32.712743000265569 ], [ -97.350095000512837, 32.712735000124816 ], [ -97.350147999883319, 32.709595000057739 ], [ -97.350215999915548, 32.704165999932847 ], [ -97.352395000146529, 32.701877999691277 ], [ -97.352096000455646, 32.71275000001831 ], [ -97.351951000216545, 32.715963999846423 ], [ -97.351818000380376, 32.725754999843915 ], [ -97.346639000073139, 32.725754999886611 ], [ -97.344001000266985, 32.722296000430703 ], [ -97.344443000017336, 32.718085000061023 ], [ -97.345627000219807, 32.712727999564336 ] ] ] } },
{ "type": "Feature", "id": 48, "properties": { "pctwhite": 11.973456, "pctrep": 27.639752, "R": 89, "D": 228, "CNTYVTD": "4391109", "rmapshaperid": 48, "id": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.301720999818798, 32.76989600026883 ], [ -97.308846000208447, 32.770262999878938 ], [ -97.311558999588058, 32.770998000296366 ], [ -97.315502000185617, 32.776531999990937 ], [ -97.313357000463384, 32.779404000034042 ], [ -97.308613000259456, 32.779459000452206 ], [ -97.308576000056263, 32.780912000022838 ], [ -97.301549999507287, 32.780970000437989 ], [ -97.301720999818798, 32.76989600026883 ] ] ] } },
{ "type": "Feature", "id": 49, "properties": { "pctwhite": 86.791611, "pctrep": 79.875887, "R": 901, "D": 213, "CNTYVTD": "4391111", "rmapshaperid": 49, "id": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.499035000419354, 32.692559999597769 ], [ -97.498951000015182, 32.676903999744383 ], [ -97.498185000144304, 32.673947999927599 ], [ -97.499698999568565, 32.672966999993314 ], [ -97.503826999935768, 32.673066999965044 ], [ -97.503997999667419, 32.647204000268061 ], [ -97.499481000151803, 32.645867000235768 ], [ -97.497058999808232, 32.648168000167516 ], [ -97.491319999574614, 32.649109000020971 ], [ -97.487601000345435, 32.647738999592008 ], [ -97.485266000039317, 32.649276999934514 ], [ -97.477164000413097, 32.649143999858772 ], [ -97.477179999554565, 32.647821000032458 ], [ -97.469416000538402, 32.64754599967857 ], [ -97.469187000438183, 32.652006000407731 ], [ -97.472928000413688, 32.653536999989349 ], [ -97.476024000072186, 32.656083999873125 ], [ -97.474824000142561, 32.658739999875117 ], [ -97.46853899985247, 32.657873999641509 ], [ -97.465454000435059, 32.654637000122932 ], [ -97.46205900022828, 32.654626000116615 ], [ -97.448436999964471, 32.650826000164344 ], [ -97.446766000493582, 32.646655999600895 ], [ -97.447817000517617, 32.643445000124117 ], [ -97.445912999812379, 32.641046999809774 ], [ -97.443787999773946, 32.634487000215543 ], [ -97.44121099978112, 32.635633999615195 ], [ -97.437961999899485, 32.634841999880351 ], [ -97.43895199984091, 32.633132999712558 ], [ -97.445874999641717, 32.63117800043068 ], [ -97.452231000096617, 32.633371999862632 ], [ -97.455065000515631, 32.631703000434946 ], [ -97.458847999535223, 32.622037000100796 ], [ -97.463727000468666, 32.619604999736275 ], [ -97.462203999968722, 32.617491999603033 ], [ -97.46010599985587, 32.616976999790921 ], [ -97.46120199952199, 32.616418999578229 ], [ -97.460152000522541, 32.613934000119578 ], [ -97.460445999564513, 32.610539999686374 ], [ -97.458001000274564, 32.606038999789732 ], [ -97.459815000354183, 32.605549000430791 ], [ -97.460007999905372, 32.60318899993365 ], [ -97.458280000416323, 32.601117999561886 ], [ -97.45621999968715, 32.600622999746122 ], [ -97.454736999783236, 32.597417000391971 ], [ -97.461990000453284, 32.599348000409591 ], [ -97.464442000217488, 32.603343999900254 ], [ -97.469630000248273, 32.604734000378102 ], [ -97.471743000036682, 32.603603000136594 ], [ -97.474367999644997, 32.600530000130725 ], [ -97.475840000525608, 32.604384999922324 ], [ -97.474623999924745, 32.606539999959089 ], [ -97.471950999839223, 32.607548000124531 ], [ -97.471340999934867, 32.610778000362195 ], [ -97.478137000032746, 32.610011000085898 ], [ -97.48103900036692, 32.610655000149094 ], [ -97.48658399973543, 32.614026999614111 ], [ -97.488205999492678, 32.613365000088997 ], [ -97.488887999890949, 32.610180000327603 ], [ -97.492428999822366, 32.605834999991373 ], [ -97.49836699971921, 32.604111999718313 ], [ -97.502025000416836, 32.600396999884481 ], [ -97.507375000184439, 32.599134000414352 ], [ -97.509505999577172, 32.59608599954877 ], [ -97.516583999723906, 32.593022999799842 ], [ -97.517705999919954, 32.591441999581349 ], [ -97.520841000166612, 32.591640000284769 ], [ -97.524435000381899, 32.590282999726661 ], [ -97.526437000043131, 32.591360999808309 ], [ -97.530139999494722, 32.589396999791788 ], [ -97.535174000446958, 32.588835000427196 ], [ -97.539957000515088, 32.586803999763738 ], [ -97.546684999855373, 32.581493999959669 ], [ -97.550368000165037, 32.580322999736381 ], [ -97.550045000132656, 32.634016999822613 ], [ -97.549514000149728, 32.688307000050237 ], [ -97.549086000085012, 32.703119999733786 ], [ -97.544430000309561, 32.699244000429111 ], [ -97.539234999893097, 32.696820999921876 ], [ -97.535224000032898, 32.695999000068177 ], [ -97.501869000487034, 32.692610999838145 ], [ -97.499035000419354, 32.692559999597769 ] ] ] } },
{ "type": "Feature", "id": 50, "properties": { "pctwhite": 79.388744, "pctrep": 57.424118, "R": 700, "D": 505, "CNTYVTD": "4391117", "rmapshaperid": 50, "id": 48 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.365269999759136, 32.701575999603016 ], [ -97.365064000386496, 32.696349999668911 ], [ -97.360500000353753, 32.694544000103512 ], [ -97.370226999531681, 32.685319000314081 ], [ -97.373986999817319, 32.686628999925972 ], [ -97.375228000448175, 32.688851000159687 ], [ -97.379189999934383, 32.691584999698009 ], [ -97.378583999951843, 32.694384000108606 ], [ -97.375997000354999, 32.694670000087704 ], [ -97.374531999822921, 32.696679000291809 ], [ -97.374570000018622, 32.701593999669534 ], [ -97.365269999759136, 32.701575999603016 ] ] ] } },
{ "type": "Feature", "id": 51, "properties": { "pctwhite": 42.177351, "pctrep": 41.137615, "R": 1121, "D": 1578, "CNTYVTD": "4391119", "rmapshaperid": 51, "id": 49 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.395881999525969, 32.647930999880629 ], [ -97.39597599947939, 32.64004500009699 ], [ -97.394564999755843, 32.637384999925466 ], [ -97.38912000018081, 32.632621000179014 ], [ -97.387675000027016, 32.628786999815112 ], [ -97.388607000460553, 32.628065000113232 ], [ -97.400211999505174, 32.628176000150361 ], [ -97.40647299998912, 32.628898000117402 ], [ -97.409655999927239, 32.629262999984725 ], [ -97.409585000045482, 32.64380000006966 ], [ -97.404760000415479, 32.643723999809708 ], [ -97.40217099978932, 32.644470000170728 ], [ -97.39824899970435, 32.647407000113262 ], [ -97.395881999525969, 32.647930999880629 ] ] ] } },
{ "type": "Feature", "id": 52, "properties": { "pctwhite": 3.782938, "pctrep": 1.818182, "R": 29, "D": 1564, "CNTYVTD": "4391120", "rmapshaperid": 52, "id": 50 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.389654000414311, 32.718426999726859 ], [ -97.399246999699557, 32.715077000427293 ], [ -97.404877999520579, 32.712515000407166 ], [ -97.411656999722496, 32.710396999740631 ], [ -97.411806000019254, 32.715161000208418 ], [ -97.413544999470602, 32.717917000406075 ], [ -97.41342800051909, 32.729548000385613 ], [ -97.413416000040328, 32.730302999852917 ], [ -97.403260000513328, 32.730198000152377 ], [ -97.402268999818418, 32.731126000007826 ], [ -97.398511999675492, 32.730130999567336 ], [ -97.397683999704952, 32.72684400018462 ], [ -97.393240000137766, 32.719250999724096 ], [ -97.389654000414311, 32.718426999726859 ] ] ] } },
{ "type": "Feature", "id": 53, "properties": { "pctwhite": 36.947095, "pctrep": 32.663755, "R": 374, "D": 763, "CNTYVTD": "4391126", "rmapshaperid": 53, "id": 51 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.183291000446445, 32.757936000107065 ], [ -97.183151999976758, 32.751821000153456 ], [ -97.181157000017038, 32.748654999903216 ], [ -97.181648999732076, 32.745648999545516 ], [ -97.198789999697851, 32.745757999992783 ], [ -97.198598000153254, 32.753535000250544 ], [ -97.193170000088642, 32.753804999887222 ], [ -97.190946000047703, 32.753080999842233 ], [ -97.190938999568289, 32.757704999908967 ], [ -97.186122000143456, 32.757372999696081 ], [ -97.183291000446445, 32.757936000107065 ] ] ] } },
{ "type": "Feature", "id": 54, "properties": { "pctwhite": 1.282660, "pctrep": 2.566845, "R": 24, "D": 907, "CNTYVTD": "4391127", "rmapshaperid": 54, "id": 52 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.23759799985325, 32.72068399997459 ], [ -97.237398999634109, 32.730305000230615 ], [ -97.23644300011307, 32.731171999593194 ], [ -97.225244999567423, 32.732843000154013 ], [ -97.225292999501903, 32.729435999796081 ], [ -97.225384999722351, 32.720456999959119 ], [ -97.23759799985325, 32.72068399997459 ] ] ] } },
{ "type": "Feature", "id": 55, "properties": { "pctwhite": 2.508179, "pctrep": 3.267974, "R": 30, "D": 886, "CNTYVTD": "4391132", "rmapshaperid": 55, "id": 53 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.262901000213461, 32.702691999718681 ], [ -97.268579999588965, 32.702699000048611 ], [ -97.269964999516517, 32.705236000246146 ], [ -97.272891000355528, 32.706383999642505 ], [ -97.276267000445372, 32.708039000457298 ], [ -97.27987699972735, 32.713309999661831 ], [ -97.28002999988577, 32.718123999760948 ], [ -97.276625999799947, 32.718146999820668 ], [ -97.27420300045948, 32.718423999608085 ], [ -97.262858000104643, 32.718393000085292 ], [ -97.262873999515236, 32.715852000426288 ], [ -97.262901000213461, 32.702691999718681 ] ] ] } },
{ "type": "Feature", "id": 56, "properties": { "pctwhite": 62.131268, "pctrep": 52.802893, "R": 584, "D": 493, "CNTYVTD": "4391133", "rmapshaperid": 56, "id": 54 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.364818000008441, 32.679768999746734 ], [ -97.362777999485147, 32.678100000167049 ], [ -97.362812000398179, 32.674790999883733 ], [ -97.361199000152197, 32.672496000343081 ], [ -97.356549999823926, 32.67266899957076 ], [ -97.355992000137974, 32.668439000237782 ], [ -97.355991999881084, 32.668007999756881 ], [ -97.371960999864896, 32.671802000261131 ], [ -97.376124000478185, 32.672801000329272 ], [ -97.381192000390499, 32.675066999705876 ], [ -97.373419000011012, 32.68193299969834 ], [ -97.372911000140547, 32.681493999919425 ], [ -97.370192000378111, 32.679422999772676 ], [ -97.364818000008441, 32.679768999746734 ] ] ] } },
{ "type": "Feature", "id": 57, "properties": { "pctwhite": 63.974152, "pctrep": 53.145058, "R": 414, "D": 353, "CNTYVTD": "4391142", "rmapshaperid": 57, "id": 55 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.370486999534236, 32.662880000170368 ], [ -97.376949000419117, 32.663451999904801 ], [ -97.384579999625345, 32.663831999839019 ], [ -97.38990200017011, 32.667855999985989 ], [ -97.38498400025604, 32.671925999767588 ], [ -97.381192000390499, 32.675066999705876 ], [ -97.376124000478185, 32.672801000329272 ], [ -97.371960999864896, 32.671802000261131 ], [ -97.372279000160276, 32.666175999577966 ], [ -97.370486999534236, 32.662880000170368 ] ] ] } },
{ "type": "Feature", "id": 58, "properties": { "pctwhite": 46.144081, "pctrep": 39.633286, "R": 562, "D": 830, "CNTYVTD": "4391146", "rmapshaperid": 58, "id": 56 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.216579000394574, 32.754739000337928 ], [ -97.222324999757035, 32.746068000037631 ], [ -97.224273999978465, 32.74607000006533 ], [ -97.225490999626544, 32.746076000405992 ], [ -97.226705999673655, 32.746085999662903 ], [ -97.227871000313996, 32.746096000297896 ], [ -97.230262000038636, 32.746098999769266 ], [ -97.233583999599603, 32.746075999591028 ], [ -97.233548000214043, 32.748307999559024 ], [ -97.236526999718464, 32.747410999565588 ], [ -97.236651999787796, 32.746066000294512 ], [ -97.242059000272278, 32.745677000089316 ], [ -97.243609000350347, 32.745676999644346 ], [ -97.243383000100053, 32.751817999964722 ], [ -97.241581000270401, 32.753687000266339 ], [ -97.241305999932422, 32.757689000351306 ], [ -97.239613000285431, 32.760491999623177 ], [ -97.238345000103223, 32.76077599960233 ], [ -97.225772999528004, 32.760067000240475 ], [ -97.219562999728367, 32.758697999999278 ], [ -97.216579000394574, 32.754739000337928 ] ] ] } },
{ "type": "Feature", "id": 59, "properties": { "pctwhite": 17.334510, "pctrep": 18.327273, "R": 252, "D": 1118, "CNTYVTD": "4391149", "rmapshaperid": 59, "id": 57 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.253449999680001, 32.698930999578145 ], [ -97.245157000215983, 32.698915000356969 ], [ -97.241925999826378, 32.697726999839851 ], [ -97.237390000454297, 32.697587000100825 ], [ -97.237108000041843, 32.697591999603773 ], [ -97.239943000491195, 32.690929999719948 ], [ -97.240364999741274, 32.687856999908568 ], [ -97.240476999991827, 32.67559300044082 ], [ -97.240795999850917, 32.668429000033903 ], [ -97.241752000470498, 32.665616000173308 ], [ -97.263451000441805, 32.675628999770268 ], [ -97.263183999846646, 32.676993999941679 ], [ -97.263163999908741, 32.691843999726615 ], [ -97.262923000534386, 32.700644999995106 ], [ -97.259026000113423, 32.698973999699888 ], [ -97.253449999680001, 32.698930999578145 ] ] ] } },
{ "type": "Feature", "id": 60, "properties": { "pctwhite": 22.497704, "pctrep": 26.440329, "R": 257, "D": 705, "CNTYVTD": "4391150", "rmapshaperid": 60, "id": 58 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.334012999807697, 32.635193000231524 ], [ -97.332764000306256, 32.644568000388993 ], [ -97.330719999820147, 32.650760999775493 ], [ -97.32749500044352, 32.659832000435458 ], [ -97.326933000413888, 32.665426999798058 ], [ -97.321046999762814, 32.666701000277996 ], [ -97.320762000040531, 32.666763999682168 ], [ -97.321401999704463, 32.660455999566494 ], [ -97.321577000225204, 32.643690000100662 ], [ -97.321789000400443, 32.63964899974188 ], [ -97.32468800032801, 32.639638999945767 ], [ -97.327126000477747, 32.638170000379439 ], [ -97.327344000423636, 32.635202000041616 ], [ -97.334012999807697, 32.635193000231524 ] ] ] } },
{ "type": "Feature", "id": 61, "properties": { "pctwhite": 31.165049, "pctrep": 45.698166, "R": 324, "D": 382, "CNTYVTD": "4391151", "rmapshaperid": 61, "id": 59 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.240715999580843, 32.763258000059587 ], [ -97.242978000035777, 32.769114999841328 ], [ -97.242831999514422, 32.770165000414643 ], [ -97.240090999765343, 32.770480000360187 ], [ -97.233080999511756, 32.774579999694836 ], [ -97.230844999555018, 32.775291999753492 ], [ -97.224958999521903, 32.776829000291336 ], [ -97.222866999519155, 32.771229000095495 ], [ -97.223596000315283, 32.769000000429877 ], [ -97.226719000172238, 32.76810900032433 ], [ -97.228683999524861, 32.765537999703895 ], [ -97.236411000282047, 32.765749000242124 ], [ -97.237363999644572, 32.764224999587164 ], [ -97.240715999580843, 32.763258000059587 ] ] ] } },
{ "type": "Feature", "id": 62, "properties": { "pctwhite": 5.489092, "pctrep": 5.662188, "R": 59, "D": 980, "CNTYVTD": "4391153", "rmapshaperid": 62, "id": 60 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.269913999757861, 32.661358000248548 ], [ -97.269915999651332, 32.646185000323385 ], [ -97.271899999705397, 32.645038000082316 ], [ -97.278166999552198, 32.645237999722227 ], [ -97.278085000322918, 32.648449000180406 ], [ -97.284856999815489, 32.648420999687815 ], [ -97.281405999765894, 32.661327000090843 ], [ -97.269913999757861, 32.661358000248548 ] ] ] } },
{ "type": "Feature", "id": 63, "properties": { "pctwhite": 14.899090, "pctrep": 8.021390, "R": 30, "D": 342, "CNTYVTD": "4391154", "rmapshaperid": 63, "id": 61 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.280186000367067, 32.671773999560074 ], [ -97.295229000199612, 32.672251000367723 ], [ -97.293329999883369, 32.669541999738534 ], [ -97.293689000011028, 32.665680000250866 ], [ -97.299404000205669, 32.6682500000218 ], [ -97.306024000055444, 32.669581000072135 ], [ -97.311634000335928, 32.67450899963525 ], [ -97.313862000200388, 32.677237999931791 ], [ -97.315220999953212, 32.684369999821982 ], [ -97.312641999785356, 32.684395999556372 ], [ -97.310837000052246, 32.681983000017922 ], [ -97.306675999787856, 32.682997000285049 ], [ -97.30625800020978, 32.684386999918551 ], [ -97.305442000216615, 32.684344999612925 ], [ -97.289215999558962, 32.684785999784701 ], [ -97.287363000507952, 32.684837999828233 ], [ -97.280110999831351, 32.678238000098339 ], [ -97.280186000367067, 32.671773999560074 ] ] ] } },
{ "type": "Feature", "id": 64, "properties": { "pctwhite": 49.872774, "pctrep": 50.000000, "R": 73, "D": 69, "CNTYVTD": "4391165", "rmapshaperid": 64, "id": 62 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.356549999823926, 32.67266899957076 ], [ -97.361199000152197, 32.672496000343081 ], [ -97.362812000398179, 32.674790999883733 ], [ -97.362777999485147, 32.678100000167049 ], [ -97.359842999945911, 32.677193999630113 ], [ -97.359855000346855, 32.674598000143142 ], [ -97.356549999827735, 32.674480999564082 ], [ -97.356549999823926, 32.67266899957076 ] ] ] } },
{ "type": "Feature", "id": 65, "properties": { "pctwhite": 64.122137, "pctrep": 56.753813, "R": 521, "D": 374, "CNTYVTD": "4391167", "rmapshaperid": 65, "id": 63 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.35284699951157, 32.661459000311517 ], [ -97.356007999984683, 32.662969999849665 ], [ -97.366535000133226, 32.662900000346106 ], [ -97.370486999534236, 32.662880000170368 ], [ -97.372279000160276, 32.666175999577966 ], [ -97.371960999864896, 32.671802000261131 ], [ -97.355991999881084, 32.668007999756881 ], [ -97.35258999964222, 32.667256999566447 ], [ -97.35284699951157, 32.661459000311517 ] ] ] } },
{ "type": "Feature", "id": 66, "properties": { "pctwhite": 38.638298, "pctrep": 37.578419, "R": 599, "D": 962, "CNTYVTD": "4391170", "rmapshaperid": 66, "id": 64 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.239613000285431, 32.760491999623177 ], [ -97.241305999932422, 32.757689000351306 ], [ -97.241581000270401, 32.753687000266339 ], [ -97.243383000100053, 32.751817999964722 ], [ -97.243609000350347, 32.745676999644346 ], [ -97.242059000272278, 32.745677000089316 ], [ -97.24207899971762, 32.742232000134067 ], [ -97.238606999676591, 32.742167999846338 ], [ -97.238658999760929, 32.739648000211247 ], [ -97.245035999609925, 32.741009999957839 ], [ -97.245004000371068, 32.743425000235852 ], [ -97.248752999480217, 32.744547999805789 ], [ -97.25251499995818, 32.744601999734321 ], [ -97.255956000202218, 32.743500999737385 ], [ -97.256098999774395, 32.740926999980815 ], [ -97.261733000105977, 32.740988999584516 ], [ -97.262640000053651, 32.74568599998895 ], [ -97.261688999951502, 32.746795999634614 ], [ -97.261671999770016, 32.757353000228413 ], [ -97.256668000179516, 32.758537999749642 ], [ -97.239613000285431, 32.760491999623177 ] ] ] } },
{ "type": "Feature", "id": 67, "properties": { "pctwhite": 40.071344, "pctrep": 47.429519, "R": 286, "D": 310, "CNTYVTD": "4391175", "rmapshaperid": 67, "id": 65 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.099517000305298, 32.808760000208324 ], [ -97.103702999951338, 32.80774900005197 ], [ -97.122953000035395, 32.8077580001437 ], [ -97.122966000320702, 32.804433999726967 ], [ -97.121878000163676, 32.80350599961951 ], [ -97.125333000280961, 32.802815999899032 ], [ -97.13119699953927, 32.802863999835239 ], [ -97.140162999586991, 32.803530000242631 ], [ -97.140172999543694, 32.7974179996489 ], [ -97.142665999529186, 32.800783000215581 ], [ -97.155357000259613, 32.802148999616762 ], [ -97.169070000223343, 32.80211700024438 ], [ -97.169192000486518, 32.794057000043978 ], [ -97.177476999515036, 32.794038000391389 ], [ -97.178584000068483, 32.799035000448498 ], [ -97.183223999700928, 32.801914999798875 ], [ -97.186279999995548, 32.80532100045118 ], [ -97.186529999740614, 32.806758999786268 ], [ -97.179534999996648, 32.806304999834964 ], [ -97.169366999937324, 32.805564999591255 ], [ -97.156258999726262, 32.804685000010458 ], [ -97.155970000280249, 32.808844000087369 ], [ -97.143998999850297, 32.812825000262315 ], [ -97.142140999963971, 32.813505000123726 ], [ -97.138613999734474, 32.814720999954183 ], [ -97.134694999854233, 32.814721000128699 ], [ -97.118357999771092, 32.814612999676811 ], [ -97.117317000094658, 32.814799000199571 ], [ -97.117367999596368, 32.810594000319234 ], [ -97.111010000258958, 32.812170000221776 ], [ -97.111893000029752, 32.815607000299167 ], [ -97.109875000087527, 32.81643600015596 ], [ -97.103343000333609, 32.817619999877174 ], [ -97.105154000277594, 32.819813000063995 ], [ -97.10519900009146, 32.822431999910684 ], [ -97.099642999670948, 32.822417999704747 ], [ -97.099517000305298, 32.808760000208324 ] ] ] } },
{ "type": "Feature", "id": 68, "properties": { "pctwhite": 45.287793, "pctrep": 46.801347, "R": 139, "D": 157, "CNTYVTD": "4391184", "rmapshaperid": 68, "id": 66 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.225203999716939, 32.696856999940451 ], [ -97.228001999599059, 32.695672000412685 ], [ -97.231644999639983, 32.695482000040478 ], [ -97.233512000146987, 32.692963000133624 ], [ -97.231373999575268, 32.685282999846201 ], [ -97.232182000440048, 32.682835999564936 ], [ -97.230171999966501, 32.681610000047399 ], [ -97.229757000226186, 32.677297999666798 ], [ -97.23183200042088, 32.674598000372093 ], [ -97.232224999492189, 32.674387000311562 ], [ -97.233573999614904, 32.671219999548008 ], [ -97.231884000383616, 32.669606999716713 ], [ -97.231636999836439, 32.669307999982522 ], [ -97.231591999655592, 32.66812299970367 ], [ -97.237438999540302, 32.667790999609096 ], [ -97.24129999952676, 32.665301000137866 ], [ -97.241752000470498, 32.665616000173308 ], [ -97.240795999850917, 32.668429000033903 ], [ -97.240476999991827, 32.67559300044082 ], [ -97.240364999741274, 32.687856999908568 ], [ -97.239943000491195, 32.690929999719948 ], [ -97.237108000041843, 32.697591999603773 ], [ -97.226264999646048, 32.697594999846743 ], [ -97.225203999716939, 32.696856999940451 ] ] ] } },
{ "type": "Feature", "id": 69, "properties": { "pctwhite": 95.178571, "pctrep": 69.491525, "R": 287, "D": 123, "CNTYVTD": "4391186", "rmapshaperid": 69, "id": 67 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.446766000493582, 32.646655999600895 ], [ -97.428367000092649, 32.645944000144702 ], [ -97.417556000050695, 32.645569999712841 ], [ -97.413619999950001, 32.644792999885084 ], [ -97.414637000382612, 32.640627000363111 ], [ -97.415069999646079, 32.635087000432272 ], [ -97.418635999796123, 32.629298000144146 ], [ -97.42259899996175, 32.62290399993411 ], [ -97.424324000413449, 32.620900999830283 ], [ -97.430161999964497, 32.616365999734683 ], [ -97.434252999662121, 32.610735999942996 ], [ -97.437165000061469, 32.606962999619256 ], [ -97.440361999486868, 32.605504999647337 ], [ -97.443982000505059, 32.605230999599627 ], [ -97.453164000177154, 32.606309000041236 ], [ -97.454603999549846, 32.607751000367173 ], [ -97.458053000345316, 32.60875599998154 ], [ -97.456525000235928, 32.610853000395466 ], [ -97.45874500019967, 32.611755000158851 ], [ -97.460333999462435, 32.615491000314812 ], [ -97.46010599985587, 32.616976999790921 ], [ -97.462203999968722, 32.617491999603033 ], [ -97.463727000468666, 32.619604999736275 ], [ -97.458847999535223, 32.622037000100796 ], [ -97.455065000515631, 32.631703000434946 ], [ -97.452231000096617, 32.633371999862632 ], [ -97.445874999641717, 32.63117800043068 ], [ -97.43895199984091, 32.633132999712558 ], [ -97.437961999899485, 32.634841999880351 ], [ -97.44121099978112, 32.635633999615195 ], [ -97.443787999773946, 32.634487000215543 ], [ -97.445912999812379, 32.641046999809774 ], [ -97.447817000517617, 32.643445000124117 ], [ -97.446766000493582, 32.646655999600895 ] ] ] } },
{ "type": "Feature", "id": 70, "properties": { "pctwhite": 3.567182, "pctrep": 2.222222, "R": 8, "D": 350, "CNTYVTD": "4391188", "rmapshaperid": 70, "id": 68 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.207237999497579, 32.727726999732596 ], [ -97.20780100004896, 32.725149999880941 ], [ -97.210086999518566, 32.721556000278859 ], [ -97.215356999841035, 32.725378000377539 ], [ -97.216733999716155, 32.724466000395836 ], [ -97.212309000131043, 32.719929000158245 ], [ -97.213105999754163, 32.71867100015259 ], [ -97.217085999787756, 32.71948199962906 ], [ -97.224966999850906, 32.719501999570994 ], [ -97.225384999722351, 32.720456999959119 ], [ -97.225292999501903, 32.729435999796081 ], [ -97.220198999516256, 32.730661999603619 ], [ -97.214264999725231, 32.730108000001287 ], [ -97.213974000043152, 32.727907999689144 ], [ -97.207237999497579, 32.727726999732596 ] ] ] } },
{ "type": "Feature", "id": 71, "properties": { "pctwhite": 56.916427, "pctrep": 54.975644, "R": 790, "D": 621, "CNTYVTD": "4391189", "rmapshaperid": 71, "id": 69 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.330719999820147, 32.650760999775493 ], [ -97.336637999820837, 32.648493999630894 ], [ -97.340675999504839, 32.648547000432629 ], [ -97.340616000263893, 32.649856000224602 ], [ -97.348584000010177, 32.649847000289761 ], [ -97.348570000327044, 32.648782999808631 ], [ -97.353345999518439, 32.648828999675551 ], [ -97.35284699951157, 32.661459000311517 ], [ -97.333720999843408, 32.661480999626917 ], [ -97.331813000505406, 32.664470000121248 ], [ -97.326933000413888, 32.665426999798058 ], [ -97.32749500044352, 32.659832000435458 ], [ -97.330719999820147, 32.650760999775493 ] ] ] } },
{ "type": "Feature", "id": 72, "properties": { "pctwhite": 54.274819, "pctrep": 54.785479, "R": 1660, "D": 1313, "CNTYVTD": "4391197", "rmapshaperid": 72, "id": 70 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.179058000360627, 32.780256999728557 ], [ -97.179780000155191, 32.779702000007305 ], [ -97.189142000442274, 32.780539999903638 ], [ -97.193193999894163, 32.781641000359357 ], [ -97.199049000005658, 32.781129000429537 ], [ -97.201358999653664, 32.779952999939397 ], [ -97.207164000226797, 32.779977999777309 ], [ -97.212769000515095, 32.778329000364003 ], [ -97.212165999644725, 32.8043050000311 ], [ -97.205537999570538, 32.806904000388435 ], [ -97.198802999960463, 32.807644000425327 ], [ -97.186529999740614, 32.806758999786268 ], [ -97.186279999995548, 32.80532100045118 ], [ -97.183223999700928, 32.801914999798875 ], [ -97.178584000068483, 32.799035000448498 ], [ -97.177476999515036, 32.794038000391389 ], [ -97.177828999526469, 32.783914999854431 ], [ -97.178502000424473, 32.781815000111123 ], [ -97.179058000360627, 32.780256999728557 ] ] ] } },
{ "type": "Feature", "id": 73, "properties": { "pctwhite": 31.991525, "pctrep": 49.000000, "R": 98, "D": 98, "CNTYVTD": "4391198", "rmapshaperid": 73, "id": 71 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.27321799978202, 32.779597000379397 ], [ -97.273262999504652, 32.778311999726753 ], [ -97.273523000427772, 32.776581000326075 ], [ -97.276405999896156, 32.776616999908512 ], [ -97.279607999551828, 32.774883000352041 ], [ -97.279649000184605, 32.769421000062657 ], [ -97.283566999799007, 32.765352000137433 ], [ -97.274787000123936, 32.765462000077875 ], [ -97.267684000160543, 32.766619000422935 ], [ -97.258815000536458, 32.766924999582585 ], [ -97.259906999619787, 32.762899999982835 ], [ -97.261814999496622, 32.759924999633121 ], [ -97.26169700048149, 32.758089000345755 ], [ -97.261671999770016, 32.757353000228413 ], [ -97.265517000120084, 32.75681799983623 ], [ -97.274319999715246, 32.752128000223635 ], [ -97.279967999741032, 32.750360000048516 ], [ -97.289432999555217, 32.749685000071921 ], [ -97.289191000065131, 32.754694000252414 ], [ -97.287730999677109, 32.758217999791704 ], [ -97.287442999503909, 32.771047999796558 ], [ -97.287848000370346, 32.77485299984933 ], [ -97.290330999897478, 32.778238999548101 ], [ -97.290645000506757, 32.78097000023191 ], [ -97.289541999531664, 32.781787999778572 ], [ -97.287431000271212, 32.781809000135354 ], [ -97.286018000517402, 32.779587000088981 ], [ -97.284133000416091, 32.779572999608916 ], [ -97.278963000530553, 32.779573000008398 ], [ -97.278332999996294, 32.779541999969318 ], [ -97.27321799978202, 32.779597000379397 ] ] ] } },
{ "type": "Feature", "id": 74, "properties": { "pctwhite": 67.234043, "pctrep": 65.384615, "R": 187, "D": 94, "CNTYVTD": "4391199", "rmapshaperid": 74, "id": 72 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.212769000515095, 32.778329000364003 ], [ -97.220426000014641, 32.777101000301784 ], [ -97.224958999521903, 32.776829000291336 ], [ -97.230844999555018, 32.775291999753492 ], [ -97.233004999778188, 32.7770619995947 ], [ -97.234611000248819, 32.775287000204052 ], [ -97.237773000030558, 32.776918999854246 ], [ -97.236099999757258, 32.779227999698158 ], [ -97.232367000272916, 32.780453000281284 ], [ -97.235249999730769, 32.782423999778224 ], [ -97.238736999665605, 32.781773000030107 ], [ -97.240059999612029, 32.7836369999102 ], [ -97.238456000026261, 32.785625000363076 ], [ -97.243394000403057, 32.787740000070286 ], [ -97.2437759995166, 32.790854999757897 ], [ -97.236276999767952, 32.794055000351236 ], [ -97.233212999818022, 32.794615000325919 ], [ -97.221219999645129, 32.79454499986084 ], [ -97.221198999765193, 32.800451999745789 ], [ -97.212370999586511, 32.804219000385984 ], [ -97.212165999644725, 32.8043050000311 ], [ -97.212769000515095, 32.778329000364003 ] ] ] } },
{ "type": "Feature", "id": 75, "properties": { "pctwhite": 84.299641, "pctrep": 68.576389, "R": 1185, "D": 508, "CNTYVTD": "4391206", "rmapshaperid": 75, "id": 73 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.452469000264017, 32.682858999938304 ], [ -97.452576000472135, 32.669182000369432 ], [ -97.454250999909604, 32.665092000415811 ], [ -97.455816000200642, 32.664014000212461 ], [ -97.463392999691834, 32.662332000036656 ], [ -97.470052999839808, 32.663542000103384 ], [ -97.471975999833759, 32.664753999839469 ], [ -97.47461100018748, 32.668671999570527 ], [ -97.471984999875971, 32.670594000209967 ], [ -97.464122000451098, 32.679195000205084 ], [ -97.457439000526776, 32.678944999709898 ], [ -97.45742899978967, 32.68272400038196 ], [ -97.460496000435242, 32.683011000146372 ], [ -97.458427999962495, 32.686738000155913 ], [ -97.451967999484822, 32.689248000056139 ], [ -97.452469000264017, 32.682858999938304 ] ] ] } },
{ "type": "Feature", "id": 76, "properties": { "pctwhite": 55.560976, "pctrep": 52.862850, "R": 794, "D": 690, "CNTYVTD": "4391207", "rmapshaperid": 76, "id": 74 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.390909000493437, 32.648822999730847 ], [ -97.395881999525969, 32.647930999880629 ], [ -97.39824899970435, 32.647407000113262 ], [ -97.40217099978932, 32.644470000170728 ], [ -97.404760000415479, 32.643723999809708 ], [ -97.409585000045482, 32.64380000006966 ], [ -97.409655999927239, 32.629262999984725 ], [ -97.418635999796123, 32.629298000144146 ], [ -97.415069999646079, 32.635087000432272 ], [ -97.414637000382612, 32.640627000363111 ], [ -97.413619999950001, 32.644792999885084 ], [ -97.411170000459194, 32.650210000045732 ], [ -97.400002000391638, 32.65947499957732 ], [ -97.395856000072243, 32.656754000293141 ], [ -97.395871000312127, 32.650628999940302 ], [ -97.391932999939911, 32.650606999845678 ], [ -97.390909000493437, 32.648822999730847 ] ] ] } },
{ "type": "Feature", "id": 77, "properties": { "pctwhite": 82.011195, "pctrep": 71.065067, "R": 1955, "D": 748, "CNTYVTD": "4391208", "rmapshaperid": 77, "id": 75 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.463392999691834, 32.662332000036656 ], [ -97.461860999673917, 32.657845000292951 ], [ -97.459940000161509, 32.656238999586662 ], [ -97.449396999991734, 32.65321800040639 ], [ -97.447914000415096, 32.652118999766138 ], [ -97.448436999964471, 32.650826000164344 ], [ -97.46205900022828, 32.654626000116615 ], [ -97.465454000435059, 32.654637000122932 ], [ -97.46853899985247, 32.657873999641509 ], [ -97.474824000142561, 32.658739999875117 ], [ -97.476024000072186, 32.656083999873125 ], [ -97.472928000413688, 32.653536999989349 ], [ -97.469187000438183, 32.652006000407731 ], [ -97.469416000538402, 32.64754599967857 ], [ -97.477179999554565, 32.647821000032458 ], [ -97.477164000413097, 32.649143999858772 ], [ -97.485266000039317, 32.649276999934514 ], [ -97.487601000345435, 32.647738999592008 ], [ -97.491319999574614, 32.649109000020971 ], [ -97.497058999808232, 32.648168000167516 ], [ -97.499481000151803, 32.645867000235768 ], [ -97.503997999667419, 32.647204000268061 ], [ -97.503826999935768, 32.673066999965044 ], [ -97.499698999568565, 32.672966999993314 ], [ -97.498185000144304, 32.673947999927599 ], [ -97.498951000015182, 32.676903999744383 ], [ -97.495308000456234, 32.674522000222886 ], [ -97.493250999916953, 32.676195000047727 ], [ -97.49089899959057, 32.673626999820037 ], [ -97.486886000459066, 32.674140000162637 ], [ -97.485148000178725, 32.673314999568646 ], [ -97.480566000182662, 32.674515000371727 ], [ -97.476816000356749, 32.677964000369968 ], [ -97.472295999959712, 32.679159000290774 ], [ -97.470630000326793, 32.678496999918785 ], [ -97.467476000312175, 32.680663999802611 ], [ -97.466094000209822, 32.684209999593676 ], [ -97.463009000398159, 32.686237000094536 ], [ -97.460331999671823, 32.687426999861827 ], [ -97.458427999962495, 32.686738000155913 ], [ -97.460496000435242, 32.683011000146372 ], [ -97.45742899978967, 32.68272400038196 ], [ -97.457439000526776, 32.678944999709898 ], [ -97.464122000451098, 32.679195000205084 ], [ -97.471984999875971, 32.670594000209967 ], [ -97.47461100018748, 32.668671999570527 ], [ -97.471975999833759, 32.664753999839469 ], [ -97.470052999839808, 32.663542000103384 ], [ -97.463392999691834, 32.662332000036656 ] ] ] } },
{ "type": "Feature", "id": 78, "properties": { "pctwhite": 4.308898, "pctrep": 2.897416, "R": 37, "D": 1231, "CNTYVTD": "4391211", "rmapshaperid": 78, "id": 76 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.23759799985325, 32.72068399997459 ], [ -97.225384999722351, 32.720456999959119 ], [ -97.224966999850906, 32.719501999570994 ], [ -97.217085999787756, 32.71948199962906 ], [ -97.213105999754163, 32.71867100015259 ], [ -97.215338999999446, 32.715547000402033 ], [ -97.21901600042078, 32.715946999863689 ], [ -97.219403999508515, 32.715425000239229 ], [ -97.219823000183069, 32.713848000401228 ], [ -97.219908999775029, 32.713368999560871 ], [ -97.21583099969159, 32.711668000103018 ], [ -97.217341999663333, 32.709192000414305 ], [ -97.221322000496556, 32.707700999605805 ], [ -97.221780999710532, 32.706325000081208 ], [ -97.216363999746605, 32.707039999921939 ], [ -97.218612000191627, 32.703010000406074 ], [ -97.216559999464806, 32.700981000063571 ], [ -97.218764000318046, 32.697150000098269 ], [ -97.220451999492639, 32.697183000141088 ], [ -97.222412999709903, 32.699281000216835 ], [ -97.225203999716939, 32.696856999940451 ], [ -97.226264999646048, 32.697594999846743 ], [ -97.237108000041843, 32.697591999603773 ], [ -97.237390000454297, 32.697587000100825 ], [ -97.231541000458549, 32.708190000448759 ], [ -97.233569999779405, 32.708637999883472 ], [ -97.240887999842315, 32.708638000267186 ], [ -97.248471000239519, 32.71172000044438 ], [ -97.248405000019915, 32.718289999731489 ], [ -97.251963999945318, 32.718285999632521 ], [ -97.252248000158076, 32.721155999592185 ], [ -97.238527000011558, 32.721109999635175 ], [ -97.23759799985325, 32.72068399997459 ] ] ] } },
{ "type": "Feature", "id": 79, "properties": { "pctwhite": 29.504132, "pctrep": 28.613445, "R": 681, "D": 1672, "CNTYVTD": "4391227", "rmapshaperid": 79, "id": 77 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.179780000155191, 32.779702000007305 ], [ -97.179248999700661, 32.779656999588035 ], [ -97.176723000360937, 32.779492999791621 ], [ -97.174990999804734, 32.777683000043588 ], [ -97.17499400031403, 32.773158999917136 ], [ -97.170361000033836, 32.770191999720176 ], [ -97.167924000357843, 32.767836999926836 ], [ -97.167237000118632, 32.765625000433907 ], [ -97.164997999629691, 32.765659000394713 ], [ -97.163333999602401, 32.764046000039542 ], [ -97.158533000490308, 32.76033899959203 ], [ -97.167098999725923, 32.760224 ], [ -97.183113999810772, 32.75999300025623 ], [ -97.193304999647097, 32.759863999951612 ], [ -97.214164000176268, 32.759903999973176 ], [ -97.212962000197649, 32.763962000027263 ], [ -97.212769000515095, 32.778329000364003 ], [ -97.207164000226797, 32.779977999777309 ], [ -97.201358999653664, 32.779952999939397 ], [ -97.199049000005658, 32.781129000429537 ], [ -97.193193999894163, 32.781641000359357 ], [ -97.189142000442274, 32.780539999903638 ], [ -97.179780000155191, 32.779702000007305 ] ] ] } },
{ "type": "Feature", "id": 80, "properties": { "pctwhite": 59.855335, "pctrep": 45.530726, "R": 163, "D": 185, "CNTYVTD": "4391236", "rmapshaperid": 80, "id": 78 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.262640000053651, 32.74568599998895 ], [ -97.267451000501808, 32.743366999595899 ], [ -97.270816000250903, 32.743949000046932 ], [ -97.274492999586442, 32.745171000063287 ], [ -97.281328000426626, 32.745161999837762 ], [ -97.284351000214258, 32.747506000336742 ], [ -97.289407999839142, 32.74770700008753 ], [ -97.289432999555217, 32.749685000071921 ], [ -97.279967999741032, 32.750360000048516 ], [ -97.274319999715246, 32.752128000223635 ], [ -97.265517000120084, 32.75681799983623 ], [ -97.261671999770016, 32.757353000228413 ], [ -97.261688999951502, 32.746795999634614 ], [ -97.262640000053651, 32.74568599998895 ] ] ] } },
{ "type": "Feature", "id": 81, "properties": { "pctwhite": 14.958348, "pctrep": 39.498433, "R": 126, "D": 190, "CNTYVTD": "4391237", "rmapshaperid": 81, "id": 79 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.331813000505406, 32.664470000121248 ], [ -97.334283999846448, 32.664056000247065 ], [ -97.339737999467786, 32.664415000367349 ], [ -97.35258999964222, 32.667256999566447 ], [ -97.352588999595895, 32.667416999555556 ], [ -97.352440999595103, 32.670498000140469 ], [ -97.345088999733093, 32.670569000295359 ], [ -97.345088999824412, 32.668726000346389 ], [ -97.334128000042398, 32.668712000048004 ], [ -97.331824999645704, 32.667357999986514 ], [ -97.331813000505406, 32.664470000121248 ] ] ] } },
{ "type": "Feature", "id": 82, "properties": { "pctwhite": 37.472680, "pctrep": 39.528509, "R": 721, "D": 1077, "CNTYVTD": "4391238", "rmapshaperid": 82, "id": 80 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.369866999775027, 32.634831999668449 ], [ -97.36998499965938, 32.628860999669342 ], [ -97.37000100024126, 32.627932999740572 ], [ -97.384407999898002, 32.628041000325148 ], [ -97.379799999778186, 32.634760000417145 ], [ -97.384177999562766, 32.636038000356429 ], [ -97.384426000536521, 32.639625999833243 ], [ -97.379496000038799, 32.642052000237676 ], [ -97.377265999667728, 32.645447999843256 ], [ -97.376896000221791, 32.650511000296341 ], [ -97.367683999702479, 32.649625000240242 ], [ -97.369704000470193, 32.646768999837946 ], [ -97.369866999775027, 32.634831999668449 ] ] ] } },
{ "type": "Feature", "id": 83, "properties": { "pctwhite": 32.292460, "pctrep": 32.835821, "R": 44, "D": 88, "CNTYVTD": "4391241", "rmapshaperid": 83, "id": 81 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.38498400025604, 32.671925999767588 ], [ -97.38698800045745, 32.672898000366132 ], [ -97.386374999502664, 32.675944999617229 ], [ -97.387213999626283, 32.678052000409004 ], [ -97.381192000390499, 32.675066999705876 ], [ -97.38498400025604, 32.671925999767588 ] ] ] } },
{ "type": "Feature", "id": 84, "properties": { "pctwhite": 77.533040, "pctrep": 76.521739, "R": 88, "D": 25, "CNTYVTD": "4391244", "rmapshaperid": 84, "id": 82 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.253989000211504, 32.623792999982221 ], [ -97.25673799986005, 32.621420000353154 ], [ -97.256345999772435, 32.619431000378789 ], [ -97.257413999991186, 32.61576399976601 ], [ -97.256780000428222, 32.611175000142971 ], [ -97.257959000244441, 32.608748000218824 ], [ -97.261074999863339, 32.606521000166246 ], [ -97.261966000146828, 32.604142999616947 ], [ -97.264931999765778, 32.603217999754627 ], [ -97.266720000480788, 32.606501999824118 ], [ -97.268989000183907, 32.603889999729496 ], [ -97.284058999757704, 32.603984999635372 ], [ -97.284840000164465, 32.603998999596421 ], [ -97.285820999713764, 32.608316999738015 ], [ -97.287134999614722, 32.610684000355256 ], [ -97.28711799971893, 32.616501000310102 ], [ -97.26992000016881, 32.616463000331443 ], [ -97.269982000425159, 32.623730000336401 ], [ -97.264695000410583, 32.623745000458136 ], [ -97.263182000494893, 32.62491399977965 ], [ -97.262770000531631, 32.627858999719372 ], [ -97.266130999466412, 32.629098000319829 ], [ -97.266104999718465, 32.630285999564663 ], [ -97.261369999803733, 32.630958999769355 ], [ -97.253752999866151, 32.630979000106358 ], [ -97.252678999677514, 32.632122000184367 ], [ -97.252669000448108, 32.645552999859895 ], [ -97.252629999933788, 32.65646999986707 ], [ -97.242815999869876, 32.656464000018957 ], [ -97.241501999830291, 32.654972000078175 ], [ -97.243490000218287, 32.653489000434284 ], [ -97.244100000307014, 32.650733000207858 ], [ -97.246960000361383, 32.649771999864093 ], [ -97.247986999702121, 32.645804999942747 ], [ -97.242510999822926, 32.641792000185404 ], [ -97.242188999849276, 32.638360999660982 ], [ -97.24329599957602, 32.635815999628171 ], [ -97.242844000140323, 32.631802000013899 ], [ -97.244617999830652, 32.631393000199296 ], [ -97.248203999638037, 32.628382999630915 ], [ -97.24901400044989, 32.626362000030852 ], [ -97.253989000211504, 32.623792999982221 ] ] ] } },
{ "type": "Feature", "id": 85, "properties": { "pctwhite": 20.363220, "pctrep": 20.815752, "R": 444, "D": 1666, "CNTYVTD": "4391251", "rmapshaperid": 85, "id": 83 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.349690000179876, 32.614130999891266 ], [ -97.35319899971708, 32.614734999861696 ], [ -97.369862000330798, 32.614597000259387 ], [ -97.371490000206563, 32.61490300003738 ], [ -97.369961999871151, 32.621498999841727 ], [ -97.37000100024126, 32.627932999740572 ], [ -97.36998499965938, 32.628860999669342 ], [ -97.367058000512898, 32.629194000139371 ], [ -97.361537000423652, 32.628041999693281 ], [ -97.361650999512648, 32.625464999955064 ], [ -97.357401000178839, 32.625563000399993 ], [ -97.35699399992788, 32.631679999607542 ], [ -97.357652999673675, 32.63479999969168 ], [ -97.348618000381464, 32.634818999809383 ], [ -97.348541999717966, 32.618527000129419 ], [ -97.349690000179876, 32.614130999891266 ] ] ] } },
{ "type": "Feature", "id": 86, "properties": { "pctwhite": 37.804878, "pctrep": 38.341646, "R": 615, "D": 962, "CNTYVTD": "4391255", "rmapshaperid": 86, "id": 84 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.37000100024126, 32.627932999740572 ], [ -97.369961999871151, 32.621498999841727 ], [ -97.371490000206563, 32.61490300003738 ], [ -97.379180000184519, 32.615853000237699 ], [ -97.383575000014034, 32.616929000122468 ], [ -97.388589999846417, 32.617091999944208 ], [ -97.388598000018064, 32.618949000116814 ], [ -97.384566999574915, 32.61923599993537 ], [ -97.384407999898002, 32.628041000325148 ], [ -97.37000100024126, 32.627932999740572 ] ] ] } },
{ "type": "Feature", "id": 87, "properties": { "pctwhite": 30.308422, "pctrep": 41.455696, "R": 393, "D": 547, "CNTYVTD": "4391257", "rmapshaperid": 87, "id": 85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.35284699951157, 32.661459000311517 ], [ -97.353345999518439, 32.648828999675551 ], [ -97.360572999658004, 32.648943000038507 ], [ -97.367683999702479, 32.649625000240242 ], [ -97.361902999712171, 32.655336000436684 ], [ -97.361892999759007, 32.659373999698126 ], [ -97.365683999913841, 32.659181999754473 ], [ -97.368238000217517, 32.660711000406721 ], [ -97.366535000133226, 32.662900000346106 ], [ -97.356007999984683, 32.662969999849665 ], [ -97.35284699951157, 32.661459000311517 ] ] ] } },
{ "type": "Feature", "id": 88, "properties": { "pctwhite": 74.044444, "pctrep": 66.215072, "R": 782, "D": 381, "CNTYVTD": "4391264", "rmapshaperid": 88, "id": 86 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.382899999474816, 32.65109599990771 ], [ -97.388397999845651, 32.651108999712108 ], [ -97.390909000493437, 32.648822999730847 ], [ -97.391932999939911, 32.650606999845678 ], [ -97.395871000312127, 32.650628999940302 ], [ -97.395856000072243, 32.656754000293141 ], [ -97.400002000391638, 32.65947499957732 ], [ -97.392882999804485, 32.665387999727479 ], [ -97.387722999814031, 32.661123999999347 ], [ -97.383399000315308, 32.658574999970298 ], [ -97.381938999734373, 32.656502999890236 ], [ -97.382899999474816, 32.65109599990771 ] ] ] } },
{ "type": "Feature", "id": 89, "properties": { "pctwhite": 41.381601, "pctrep": 44.070278, "R": 602, "D": 750, "CNTYVTD": "4391265", "rmapshaperid": 89, "id": 87 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.384407999898002, 32.628041000325148 ], [ -97.388607000460553, 32.628065000113232 ], [ -97.387675000027016, 32.628786999815112 ], [ -97.38912000018081, 32.632621000179014 ], [ -97.394564999755843, 32.637384999925466 ], [ -97.39597599947939, 32.64004500009699 ], [ -97.395881999525969, 32.647930999880629 ], [ -97.390909000493437, 32.648822999730847 ], [ -97.389573000171936, 32.646400000429381 ], [ -97.390735000320333, 32.642718999890683 ], [ -97.385969000085055, 32.640895000222379 ], [ -97.384426000536521, 32.639625999833243 ], [ -97.384177999562766, 32.636038000356429 ], [ -97.379799999778186, 32.634760000417145 ], [ -97.384407999898002, 32.628041000325148 ] ] ] } },
{ "type": "Feature", "id": 90, "properties": { "pctwhite": 50.420168, "pctrep": 49.137931, "R": 171, "D": 170, "CNTYVTD": "4391270", "rmapshaperid": 90, "id": 88 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.198789000066071, 32.736355000023046 ], [ -97.198809999582423, 32.728323999909286 ], [ -97.202042999575568, 32.727830999781034 ], [ -97.207237999497579, 32.727726999732596 ], [ -97.213974000043152, 32.727907999689144 ], [ -97.214264999725231, 32.730108000001287 ], [ -97.220198999516256, 32.730661999603619 ], [ -97.2205240001025, 32.733554999970352 ], [ -97.221941999532945, 32.735712000009428 ], [ -97.224611999793538, 32.735613000280566 ], [ -97.224969999775283, 32.737741000145874 ], [ -97.219048000097061, 32.737608999853386 ], [ -97.213884999938159, 32.736500000131379 ], [ -97.198789000066071, 32.736355000023046 ] ] ] } },
{ "type": "Feature", "id": 91, "properties": { "pctwhite": 79.547063, "pctrep": 73.652454, "R": 1831, "D": 625, "CNTYVTD": "4391271", "rmapshaperid": 91, "id": 89 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.318768999764785, 32.569292000369693 ], [ -97.318763000450332, 32.560743000370508 ], [ -97.314598000143661, 32.56069300007097 ], [ -97.314594000535735, 32.560526999597847 ], [ -97.315430999608793, 32.560485000055237 ], [ -97.315444999811845, 32.552646999657995 ], [ -97.348990000092044, 32.553145000256002 ], [ -97.34392399961888, 32.557455000334514 ], [ -97.351432000136626, 32.563852999670374 ], [ -97.345371999806133, 32.568998000182425 ], [ -97.334258000090188, 32.571838000420669 ], [ -97.334235999973572, 32.571708999728862 ], [ -97.332300999529735, 32.571579000123002 ], [ -97.332237999578396, 32.568930999900751 ], [ -97.327244999762073, 32.570035999893705 ], [ -97.326182000031508, 32.571821999609355 ], [ -97.32433800033526, 32.571822999638016 ], [ -97.323984999954121, 32.569265000205853 ], [ -97.318768999764785, 32.569292000369693 ] ] ] } },
{ "type": "Feature", "id": 92, "properties": { "pctwhite": 21.859655, "pctrep": 44.885799, "R": 452, "D": 538, "CNTYVTD": "4391273", "rmapshaperid": 92, "id": 90 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.349877999473904, 32.684544999751445 ], [ -97.351824000023583, 32.678462999711101 ], [ -97.352440999595103, 32.670498000140469 ], [ -97.352588999595895, 32.667416999555556 ], [ -97.355992000137974, 32.668439000237782 ], [ -97.356549999823926, 32.67266899957076 ], [ -97.356549999827735, 32.674480999564082 ], [ -97.359855000346855, 32.674598000143142 ], [ -97.359842999945911, 32.677193999630113 ], [ -97.362777999485147, 32.678100000167049 ], [ -97.364818000008441, 32.679768999746734 ], [ -97.368736999485932, 32.681335999908072 ], [ -97.372911000140547, 32.681493999919425 ], [ -97.373419000011012, 32.68193299969834 ], [ -97.370226999531681, 32.685319000314081 ], [ -97.360500000353753, 32.694544000103512 ], [ -97.352587999842243, 32.701696000006692 ], [ -97.352966000338085, 32.700789000304155 ], [ -97.353038000314172, 32.684558000075327 ], [ -97.349877999473904, 32.684544999751445 ] ] ] } },
{ "type": "Feature", "id": 93, "properties": { "pctwhite": 59.368421, "pctrep": 55.088496, "R": 498, "D": 385, "CNTYVTD": "4391277A", "rmapshaperid": 93, "id": 91 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.26169700048149, 32.758089000345755 ], [ -97.261814999496622, 32.759924999633121 ], [ -97.259906999619787, 32.762899999982835 ], [ -97.258815000536458, 32.766924999582585 ], [ -97.257426000186783, 32.767802000113115 ], [ -97.254121000285295, 32.77078900018256 ], [ -97.251921000191913, 32.771131999966386 ], [ -97.242831999514422, 32.770165000414643 ], [ -97.242978000035777, 32.769114999841328 ], [ -97.240715999580843, 32.763258000059587 ], [ -97.239633999760073, 32.760701999706562 ], [ -97.256988999603408, 32.758681999896105 ], [ -97.26169700048149, 32.758089000345755 ] ] ] } },
{ "type": "Feature", "id": 96, "properties": { "pctwhite": 17.608410, "pctrep": 18.467742, "R": 229, "D": 1000, "CNTYVTD": "4391278", "rmapshaperid": 96, "id": 92 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.183291000446445, 32.757936000107065 ], [ -97.186122000143456, 32.757372999696081 ], [ -97.190938999568289, 32.757704999908967 ], [ -97.190946000047703, 32.753080999842233 ], [ -97.193170000088642, 32.753804999887222 ], [ -97.198598000153254, 32.753535000250544 ], [ -97.201889999628463, 32.753489000228704 ], [ -97.205532000116236, 32.751851999917314 ], [ -97.207351000452974, 32.754339999961232 ], [ -97.209543999494102, 32.752609000183092 ], [ -97.215431999858069, 32.75275799961878 ], [ -97.216579000394574, 32.754739000337928 ], [ -97.214164000176268, 32.759903999973176 ], [ -97.193304999647097, 32.759863999951612 ], [ -97.183113999810772, 32.75999300025623 ], [ -97.183291000446445, 32.757936000107065 ] ] ] } },
{ "type": "Feature", "id": 97, "properties": { "pctwhite": 31.418419, "pctrep": 29.743976, "R": 395, "D": 920, "CNTYVTD": "4391279", "rmapshaperid": 97, "id": 93 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.198598000153254, 32.753535000250544 ], [ -97.198789999697851, 32.745757999992783 ], [ -97.222324999757035, 32.746068000037631 ], [ -97.216579000394574, 32.754739000337928 ], [ -97.215431999858069, 32.75275799961878 ], [ -97.209543999494102, 32.752609000183092 ], [ -97.207351000452974, 32.754339999961232 ], [ -97.205532000116236, 32.751851999917314 ], [ -97.201889999628463, 32.753489000228704 ], [ -97.198598000153254, 32.753535000250544 ] ] ] } },
{ "type": "Feature", "id": 98, "properties": { "pctwhite": 4.332021, "pctrep": 2.347762, "R": 32, "D": 1328, "CNTYVTD": "4391291", "rmapshaperid": 98, "id": 94 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.280186000367067, 32.671773999560074 ], [ -97.28025199994488, 32.666254999702026 ], [ -97.281405999765894, 32.661327000090843 ], [ -97.284856999815489, 32.648420999687815 ], [ -97.286178000077626, 32.64329199999856 ], [ -97.288681999633454, 32.633779999951507 ], [ -97.292693999639866, 32.633635999670808 ], [ -97.292686000134609, 32.631030000040262 ], [ -97.301301000452227, 32.631023000419013 ], [ -97.304314000469958, 32.631043000052564 ], [ -97.304425999614963, 32.627557999648872 ], [ -97.32152700025155, 32.627707999643995 ], [ -97.321463999678315, 32.63516300017011 ], [ -97.321371000458214, 32.643739999878591 ], [ -97.321181000527631, 32.660462000211147 ], [ -97.320495999732742, 32.666816999812525 ], [ -97.310818000377722, 32.669224000403624 ], [ -97.306024000055444, 32.669581000072135 ], [ -97.299404000205669, 32.6682500000218 ], [ -97.293689000011028, 32.665680000250866 ], [ -97.293329999883369, 32.669541999738534 ], [ -97.295229000199612, 32.672251000367723 ], [ -97.280186000367067, 32.671773999560074 ] ] ] } },
{ "type": "Feature", "id": 99, "properties": { "pctwhite": 17.504606, "pctrep": 24.037340, "R": 206, "D": 645, "CNTYVTD": "4391292", "rmapshaperid": 99, "id": 95 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.359603000406125, 32.634803999865099 ], [ -97.369866999775027, 32.634831999668449 ], [ -97.369704000470193, 32.646768999837946 ], [ -97.367683999702479, 32.649625000240242 ], [ -97.360572999658004, 32.648943000038507 ], [ -97.361372000264097, 32.647202000254161 ], [ -97.36439299970651, 32.646126999542851 ], [ -97.363146999895648, 32.644110999626818 ], [ -97.359821999854333, 32.644096999853566 ], [ -97.359603000406125, 32.634803999865099 ] ] ] } },
{ "type": "Feature", "id": 100, "properties": { "pctwhite": 14.383562, "pctrep": 16.821192, "R": 127, "D": 619, "CNTYVTD": "4391293", "rmapshaperid": 100, "id": 96 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.241752000470498, 32.665616000173308 ], [ -97.24129999952676, 32.665301000137866 ], [ -97.244645000492739, 32.662662999840656 ], [ -97.249531000287291, 32.661351000297955 ], [ -97.263619999718941, 32.661367999596955 ], [ -97.264602000008992, 32.666055000263185 ], [ -97.264604999750318, 32.674788000228219 ], [ -97.267878000368981, 32.677580000305475 ], [ -97.263451000441805, 32.675628999770268 ], [ -97.241752000470498, 32.665616000173308 ] ] ] } },
{ "type": "Feature", "id": 101, "properties": { "pctwhite": 72.066004, "pctrep": 67.017544, "R": 1528, "D": 714, "CNTYVTD": "4391294", "rmapshaperid": 101, "id": 97 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.331113000160741, 32.587800999893403 ], [ -97.33445299984875, 32.587054000165274 ], [ -97.339098000477406, 32.585983000136331 ], [ -97.339522000222985, 32.583593000071069 ], [ -97.343028999878754, 32.582650000369512 ], [ -97.342033000509986, 32.581193000180804 ], [ -97.344838000522415, 32.578190000029274 ], [ -97.334521000389884, 32.577909999605858 ], [ -97.334258000090188, 32.571838000420669 ], [ -97.345371999806133, 32.568998000182425 ], [ -97.351432000136626, 32.563852999670374 ], [ -97.34392399961888, 32.557455000334514 ], [ -97.348990000092044, 32.553145000256002 ], [ -97.364586999921926, 32.55336200039276 ], [ -97.357945999783638, 32.583955999649419 ], [ -97.355898999472302, 32.593867999976553 ], [ -97.355135000311137, 32.606785000005821 ], [ -97.351484999576584, 32.606794000286023 ], [ -97.350929999610756, 32.600066999925772 ], [ -97.334344000305393, 32.599874999637365 ], [ -97.334361000247895, 32.589227000032551 ], [ -97.331113000160741, 32.587800999893403 ] ] ] } },
{ "type": "Feature", "id": 102, "properties": { "pctwhite": 23.609707, "pctrep": 30.549451, "R": 139, "D": 314, "CNTYVTD": "4391295", "rmapshaperid": 102, "id": 98 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.261369999803733, 32.630958999769355 ], [ -97.292686000134609, 32.631030000040262 ], [ -97.292693999639866, 32.633635999670808 ], [ -97.288681999633454, 32.633779999951507 ], [ -97.286178000077626, 32.64329199999856 ], [ -97.280085999868817, 32.643337000259272 ], [ -97.280195999949015, 32.633953999927755 ], [ -97.272370999596177, 32.633814999929257 ], [ -97.269945999599059, 32.635154000323951 ], [ -97.261312999596484, 32.635140999627993 ], [ -97.261369999803733, 32.630958999769355 ] ] ] } },
{ "type": "Feature", "id": 103, "properties": { "pctwhite": 73.333333, "pctrep": 68.041237, "R": 1254, "D": 572, "CNTYVTD": "4391296", "rmapshaperid": 103, "id": 99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.414162999817705, 32.683675000212808 ], [ -97.414703000301174, 32.679785999820496 ], [ -97.418070000271612, 32.675142999649246 ], [ -97.419248000116482, 32.672091999709401 ], [ -97.420048999738995, 32.666496999976204 ], [ -97.422716999807278, 32.661969000142875 ], [ -97.425881000294964, 32.659976000245791 ], [ -97.428451999905647, 32.66301300001399 ], [ -97.428954999664484, 32.668249000377557 ], [ -97.430755999804987, 32.671385000340877 ], [ -97.429590000083195, 32.674786999958741 ], [ -97.430062000104741, 32.678584999947923 ], [ -97.428173999774444, 32.681243999878681 ], [ -97.425709999850994, 32.681525000166751 ], [ -97.424614999683143, 32.682205999734698 ], [ -97.425475000210739, 32.683587999784692 ], [ -97.424495999757767, 32.683821999967584 ], [ -97.414162999817705, 32.683675000212808 ] ] ] } },
{ "type": "Feature", "id": 104, "properties": { "pctwhite": 2.520492, "pctrep": 1.366607, "R": 23, "D": 1658, "CNTYVTD": "4391297", "rmapshaperid": 104, "id": 100 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.237390000454297, 32.697587000100825 ], [ -97.241925999826378, 32.697726999839851 ], [ -97.245157000215983, 32.698915000356969 ], [ -97.253449999680001, 32.698930999578145 ], [ -97.253533999923135, 32.706660000135791 ], [ -97.256071999876028, 32.706668000119862 ], [ -97.256084000173018, 32.715622000395477 ], [ -97.262873999515236, 32.715852000426288 ], [ -97.262858000104643, 32.718393000085292 ], [ -97.257861000444507, 32.71808200005524 ], [ -97.256944999856586, 32.721213000208522 ], [ -97.252248000158076, 32.721155999592185 ], [ -97.251963999945318, 32.718285999632521 ], [ -97.248405000019915, 32.718289999731489 ], [ -97.248471000239519, 32.71172000044438 ], [ -97.240887999842315, 32.708638000267186 ], [ -97.233569999779405, 32.708637999883472 ], [ -97.231541000458549, 32.708190000448759 ], [ -97.237390000454297, 32.697587000100825 ] ] ] } },
{ "type": "Feature", "id": 105, "properties": { "pctwhite": 72.475248, "pctrep": 51.700680, "R": 456, "D": 407, "CNTYVTD": "4391298", "rmapshaperid": 105, "id": 101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.352096000455646, 32.71275000001831 ], [ -97.352395000146529, 32.701877999691277 ], [ -97.352587999842243, 32.701696000006692 ], [ -97.360500000353753, 32.694544000103512 ], [ -97.365064000386496, 32.696349999668911 ], [ -97.365269999759136, 32.701575999603016 ], [ -97.360505000400195, 32.701859999871623 ], [ -97.360419000216567, 32.713804000115736 ], [ -97.356134000254329, 32.712760999675993 ], [ -97.352096000455646, 32.71275000001831 ] ] ] } },
{ "type": "Feature", "id": 106, "properties": { "pctwhite": 30.571942, "pctrep": 36.483346, "R": 471, "D": 809, "CNTYVTD": "4391300", "rmapshaperid": 106, "id": 102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.334012999807697, 32.635193000231524 ], [ -97.34380800038511, 32.635043999935412 ], [ -97.345875000128828, 32.634093000227026 ], [ -97.348618000381464, 32.634818999809383 ], [ -97.348570000327044, 32.648782999808631 ], [ -97.348584000010177, 32.649847000289761 ], [ -97.340616000263893, 32.649856000224602 ], [ -97.340675999504839, 32.648547000432629 ], [ -97.336637999820837, 32.648493999630894 ], [ -97.330719999820147, 32.650760999775493 ], [ -97.332764000306256, 32.644568000388993 ], [ -97.334012999807697, 32.635193000231524 ] ] ] } },
{ "type": "Feature", "id": 107, "properties": { "pctwhite": 11.816514, "pctrep": 9.098787, "R": 105, "D": 1042, "CNTYVTD": "4391301", "rmapshaperid": 107, "id": 103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.269915999651332, 32.646185000323385 ], [ -97.269913999757861, 32.661358000248548 ], [ -97.263619999718941, 32.661367999596955 ], [ -97.249531000287291, 32.661351000297955 ], [ -97.244645000492739, 32.662662999840656 ], [ -97.244218000214545, 32.659084000338368 ], [ -97.242962000525054, 32.656694999592077 ], [ -97.242815999869876, 32.656464000018957 ], [ -97.252629999933788, 32.65646999986707 ], [ -97.252669000448108, 32.645552999859895 ], [ -97.269916999762444, 32.645574000270102 ], [ -97.269915999651332, 32.646185000323385 ] ] ] } },
{ "type": "Feature", "id": 108, "properties": { "pctwhite": 19.897785, "pctrep": 20.897959, "R": 256, "D": 953, "CNTYVTD": "4391311", "rmapshaperid": 108, "id": 104 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.181648999732076, 32.745648999545516 ], [ -97.182304000187628, 32.744742999896985 ], [ -97.182419999630355, 32.730758999612256 ], [ -97.181137999548596, 32.730669999596373 ], [ -97.196773000491689, 32.728347000351903 ], [ -97.198809999582423, 32.728323999909286 ], [ -97.198789000066071, 32.736355000023046 ], [ -97.198789999697851, 32.745757999992783 ], [ -97.181648999732076, 32.745648999545516 ] ] ] } },
{ "type": "Feature", "id": 109, "properties": { "pctwhite": 85.351003, "pctrep": 74.575163, "R": 1141, "D": 364, "CNTYVTD": "4391337", "rmapshaperid": 109, "id": 105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.459748000172695, 32.716296000183789 ], [ -97.461790000219906, 32.71405800025061 ], [ -97.461826999874802, 32.70937600036018 ], [ -97.46064699988537, 32.708640999842892 ], [ -97.460501999533349, 32.701898000083318 ], [ -97.457806000375129, 32.700030999788659 ], [ -97.455372000177888, 32.700287999984639 ], [ -97.453130000230445, 32.698803999781312 ], [ -97.45718099969416, 32.690974999694937 ], [ -97.458427999962495, 32.686738000155913 ], [ -97.460331999671823, 32.687426999861827 ], [ -97.463009000398159, 32.686237000094536 ], [ -97.465251999699689, 32.688035000387295 ], [ -97.468166999622369, 32.692278999757065 ], [ -97.47695200005694, 32.711732999581706 ], [ -97.479122999980959, 32.718240000128453 ], [ -97.472505000383947, 32.718209000437767 ], [ -97.46603600042566, 32.716354999771255 ], [ -97.459748000172695, 32.716296000183789 ] ] ] } },
{ "type": "Feature", "id": 110, "properties": { "pctwhite": 68.617297, "pctrep": 63.938180, "R": 1117, "D": 604, "CNTYVTD": "4391339", "rmapshaperid": 110, "id": 106 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.423656000017104, 32.696700000444878 ], [ -97.413489999688522, 32.696267999634252 ], [ -97.411845000475395, 32.694614999698388 ], [ -97.412328000463347, 32.689296999737394 ], [ -97.415031000452657, 32.688857999899291 ], [ -97.415091000245738, 32.684715999787535 ], [ -97.423299999899498, 32.684585999800895 ], [ -97.424495999757767, 32.683821999967584 ], [ -97.425475000210739, 32.683587999784692 ], [ -97.426896999750127, 32.683130999769759 ], [ -97.447440999843849, 32.68351999976128 ], [ -97.452469000264017, 32.682858999938304 ], [ -97.451967999484822, 32.689248000056139 ], [ -97.446952000051652, 32.695219999614572 ], [ -97.439838999839182, 32.699393000246538 ], [ -97.436217999491276, 32.699467000404852 ], [ -97.435222999908774, 32.687326000005825 ], [ -97.434586000233153, 32.684837999854643 ], [ -97.426390999814771, 32.685098999647835 ], [ -97.427769000490443, 32.68735099976216 ], [ -97.429304000093438, 32.69329800027829 ], [ -97.427816999699047, 32.695861999858806 ], [ -97.423656000017104, 32.696700000444878 ] ] ] } },
{ "type": "Feature", "id": 111, "properties": { "pctwhite": 45.364892, "pctrep": 52.142857, "R": 73, "D": 67, "CNTYVTD": "4391345", "rmapshaperid": 111, "id": 107 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.318768999764785, 32.569292000369693 ], [ -97.323984999954121, 32.569265000205853 ], [ -97.32433800033526, 32.571822999638016 ], [ -97.326182000031508, 32.571821999609355 ], [ -97.334235999973572, 32.571708999728862 ], [ -97.334258000090188, 32.571838000420669 ], [ -97.334521000389884, 32.577909999605858 ], [ -97.325251999535197, 32.577930000079668 ], [ -97.324229000128923, 32.571822999866114 ], [ -97.319104000284995, 32.57186600012578 ], [ -97.319509999521401, 32.577834000149061 ], [ -97.318768999764785, 32.569292000369693 ] ] ] } },
{ "type": "Feature", "id": 112, "properties": { "pctwhite": 2.750000, "pctrep": 1.721440, "R": 11, "D": 627, "CNTYVTD": "4391346", "rmapshaperid": 112, "id": 108 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.23759799985325, 32.72068399997459 ], [ -97.238527000011558, 32.721109999635175 ], [ -97.252248000158076, 32.721155999592185 ], [ -97.256944999856586, 32.721213000208522 ], [ -97.257458000133227, 32.724303000199711 ], [ -97.257351999842442, 32.731224999859947 ], [ -97.244858000178098, 32.73116100017495 ], [ -97.237398999634109, 32.730305000230615 ], [ -97.23759799985325, 32.72068399997459 ] ] ] } },
{ "type": "Feature", "id": 113, "properties": { "pctwhite": 53.837342, "pctrep": 55.306884, "R": 1631, "D": 1294, "CNTYVTD": "4391347", "rmapshaperid": 113, "id": 109 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.388607000460553, 32.628065000113232 ], [ -97.384407999898002, 32.628041000325148 ], [ -97.384566999574915, 32.61923599993537 ], [ -97.388598000018064, 32.618949000116814 ], [ -97.388589999846417, 32.617091999944208 ], [ -97.393034000348052, 32.617263000156584 ], [ -97.398115999860522, 32.616502000055547 ], [ -97.403148999688824, 32.616488999832463 ], [ -97.406242000304459, 32.615885999650992 ], [ -97.408027000387236, 32.622765999833966 ], [ -97.40647299998912, 32.628898000117402 ], [ -97.400211999505174, 32.628176000150361 ], [ -97.388607000460553, 32.628065000113232 ] ] ] } },
{ "type": "Feature", "id": 114, "properties": { "pctwhite": 76.993865, "pctrep": 77.804878, "R": 319, "D": 87, "CNTYVTD": "4391348", "rmapshaperid": 114, "id": 110 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.46010599985587, 32.616976999790921 ], [ -97.460333999462435, 32.615491000314812 ], [ -97.45874500019967, 32.611755000158851 ], [ -97.456525000235928, 32.610853000395466 ], [ -97.458053000345316, 32.60875599998154 ], [ -97.454603999549846, 32.607751000367173 ], [ -97.453164000177154, 32.606309000041236 ], [ -97.443982000505059, 32.605230999599627 ], [ -97.440361999486868, 32.605504999647337 ], [ -97.437165000061469, 32.606962999619256 ], [ -97.434252999662121, 32.610735999942996 ], [ -97.429470999572104, 32.610719999588341 ], [ -97.42935600037282, 32.599887000229323 ], [ -97.432517999946896, 32.599301999632246 ], [ -97.432504000404833, 32.589095000153527 ], [ -97.427024999729312, 32.589855000363393 ], [ -97.425353999570376, 32.591092999734464 ], [ -97.420971000133349, 32.590911999638323 ], [ -97.416345000081378, 32.5890980001694 ], [ -97.415727999969704, 32.587092000228971 ], [ -97.410105000032829, 32.587079999653653 ], [ -97.410118000283788, 32.573967000328608 ], [ -97.41253100013715, 32.573662000182523 ], [ -97.412543000405464, 32.569322000426688 ], [ -97.419781000077379, 32.569332999616421 ], [ -97.419993000435881, 32.564888999854766 ], [ -97.427352999909573, 32.563693000079525 ], [ -97.4249809999272, 32.558907999885086 ], [ -97.426739000307123, 32.556825999891039 ], [ -97.430755999562152, 32.556121999659574 ], [ -97.430997999830993, 32.554106000147002 ], [ -97.454995000128747, 32.554484999551157 ], [ -97.466853000315908, 32.554900000034102 ], [ -97.494254000037301, 32.555395999631585 ], [ -97.520013000199114, 32.555503999708073 ], [ -97.550582000359739, 32.55539100044308 ], [ -97.550368000165037, 32.580322999736381 ], [ -97.546684999855373, 32.581493999959669 ], [ -97.539957000515088, 32.586803999763738 ], [ -97.535174000446958, 32.588835000427196 ], [ -97.530139999494722, 32.589396999791788 ], [ -97.526437000043131, 32.591360999808309 ], [ -97.524435000381899, 32.590282999726661 ], [ -97.520841000166612, 32.591640000284769 ], [ -97.517705999919954, 32.591441999581349 ], [ -97.516583999723906, 32.593022999799842 ], [ -97.509505999577172, 32.59608599954877 ], [ -97.507375000184439, 32.599134000414352 ], [ -97.502025000416836, 32.600396999884481 ], [ -97.49836699971921, 32.604111999718313 ], [ -97.492428999822366, 32.605834999991373 ], [ -97.488887999890949, 32.610180000327603 ], [ -97.488205999492678, 32.613365000088997 ], [ -97.48658399973543, 32.614026999614111 ], [ -97.48103900036692, 32.610655000149094 ], [ -97.478137000032746, 32.610011000085898 ], [ -97.471340999934867, 32.610778000362195 ], [ -97.471950999839223, 32.607548000124531 ], [ -97.474623999924745, 32.606539999959089 ], [ -97.475840000525608, 32.604384999922324 ], [ -97.474367999644997, 32.600530000130725 ], [ -97.471743000036682, 32.603603000136594 ], [ -97.469630000248273, 32.604734000378102 ], [ -97.464442000217488, 32.603343999900254 ], [ -97.461990000453284, 32.599348000409591 ], [ -97.454736999783236, 32.597417000391971 ], [ -97.45621999968715, 32.600622999746122 ], [ -97.458280000416323, 32.601117999561886 ], [ -97.460007999905372, 32.60318899993365 ], [ -97.459815000354183, 32.605549000430791 ], [ -97.458001000274564, 32.606038999789732 ], [ -97.460445999564513, 32.610539999686374 ], [ -97.460152000522541, 32.613934000119578 ], [ -97.46120199952199, 32.616418999578229 ], [ -97.46010599985587, 32.616976999790921 ] ] ] } },
{ "type": "Feature", "id": 116, "properties": { "pctwhite": 75.740944, "pctrep": 70.812183, "R": 279, "D": 112, "CNTYVTD": "4391352", "rmapshaperid": 116, "id": 111 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.234283999747262, 32.610192999567666 ], [ -97.23405000004297, 32.609467000369811 ], [ -97.234364999988458, 32.602024999862294 ], [ -97.245170000306587, 32.602215999716336 ], [ -97.245595999461827, 32.590921000243085 ], [ -97.26329600002714, 32.591154999989961 ], [ -97.265464000307389, 32.590816999558825 ], [ -97.292881000001231, 32.591291000101634 ], [ -97.292585999809646, 32.597569000288921 ], [ -97.284251000101094, 32.597610999927049 ], [ -97.284058999757704, 32.603984999635372 ], [ -97.268989000183907, 32.603889999729496 ], [ -97.266720000480788, 32.606501999824118 ], [ -97.264931999765778, 32.603217999754627 ], [ -97.261966000146828, 32.604142999616947 ], [ -97.261074999863339, 32.606521000166246 ], [ -97.257959000244441, 32.608748000218824 ], [ -97.256780000428222, 32.611175000142971 ], [ -97.257413999991186, 32.61576399976601 ], [ -97.256345999772435, 32.619431000378789 ], [ -97.25673799986005, 32.621420000353154 ], [ -97.253989000211504, 32.623792999982221 ], [ -97.252711999686483, 32.623676000404949 ], [ -97.252740000475384, 32.611023999761926 ], [ -97.252221000027518, 32.610360000042355 ], [ -97.236594999751546, 32.610388000391353 ], [ -97.234283999747262, 32.610192999567666 ] ] ] } },
{ "type": "Feature", "id": 118, "properties": { "pctwhite": 53.275401, "pctrep": 60.000000, "R": 6, "D": 3, "CNTYVTD": "4391376", "rmapshaperid": 118, "id": 112 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.334199000207889, 32.759097999896362 ], [ -97.334146999757394, 32.757412999587814 ], [ -97.338956000390382, 32.75417900026406 ], [ -97.342383999534462, 32.75808700036032 ], [ -97.339542000196218, 32.759516999887815 ], [ -97.334199000207889, 32.759097999896362 ] ] ] } },
{ "type": "Feature", "id": 119, "properties": { "pctwhite": 56.137184, "pctrep": 53.368940, "R": 1299, "D": 1095, "CNTYVTD": "4391377", "rmapshaperid": 119, "id": 113 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.402509000304931, 32.662795999647535 ], [ -97.400002000391638, 32.65947499957732 ], [ -97.411170000459194, 32.650210000045732 ], [ -97.413619999950001, 32.644792999885084 ], [ -97.417556000050695, 32.645569999712841 ], [ -97.428367000092649, 32.645944000144702 ], [ -97.430333999549489, 32.651659000318716 ], [ -97.430157999551724, 32.654175999737674 ], [ -97.425881000294964, 32.659976000245791 ], [ -97.422716999807278, 32.661969000142875 ], [ -97.420168999929331, 32.661786000397967 ], [ -97.416910000492294, 32.662843999727428 ], [ -97.402509000304931, 32.662795999647535 ] ] ] } },
{ "type": "Feature", "id": 120, "properties": { "pctwhite": 23.345102, "pctrep": 29.382958, "R": 600, "D": 1425, "CNTYVTD": "4391378", "rmapshaperid": 120, "id": 114 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.32152700025155, 32.627707999643995 ], [ -97.321537999771124, 32.61399400009595 ], [ -97.349690000179876, 32.614130999891266 ], [ -97.348541999717966, 32.618527000129419 ], [ -97.348618000381464, 32.634818999809383 ], [ -97.345875000128828, 32.634093000227026 ], [ -97.34380800038511, 32.635043999935412 ], [ -97.334012999807697, 32.635193000231524 ], [ -97.327344000423636, 32.635202000041616 ], [ -97.321463999678315, 32.63516300017011 ], [ -97.32152700025155, 32.627707999643995 ] ] ] } },
{ "type": "Feature", "id": 121, "properties": { "pctwhite": 55.451587, "pctrep": 47.643979, "R": 455, "D": 483, "CNTYVTD": "4391380", "rmapshaperid": 121, "id": 115 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.10487599981883, 32.78984399984413 ], [ -97.101659000157355, 32.789238999992037 ], [ -97.100165999787748, 32.787425000117686 ], [ -97.096003000495003, 32.786011000261546 ], [ -97.095348999947944, 32.784488999568623 ], [ -97.096880000438432, 32.778500999602286 ], [ -97.097072999669678, 32.77533499963571 ], [ -97.106436999812161, 32.775435999754606 ], [ -97.106437999721464, 32.777809999845033 ], [ -97.106434000023242, 32.780901000195165 ], [ -97.108139999875931, 32.785251999808473 ], [ -97.110719000284206, 32.784932999559608 ], [ -97.115971000495321, 32.782333000444929 ], [ -97.119460999920278, 32.782193000197289 ], [ -97.125474000113698, 32.779127999974797 ], [ -97.131511999867271, 32.779109000336746 ], [ -97.133570999631416, 32.77927500010356 ], [ -97.126009999874668, 32.779262000147476 ], [ -97.121065000168201, 32.782038000121567 ], [ -97.115781999799907, 32.782634999736558 ], [ -97.111638999894552, 32.784952999913251 ], [ -97.112364999663527, 32.788078000225767 ], [ -97.110189000436321, 32.790899999587658 ], [ -97.10764099965408, 32.788483000431931 ], [ -97.10487599981883, 32.78984399984413 ] ] ] } },
{ "type": "Feature", "id": 122, "properties": { "pctwhite": 41.491841, "pctrep": 28.971963, "R": 341, "D": 819, "CNTYVTD": "4391382", "rmapshaperid": 122, "id": 116 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.034789999555485, 32.786041000167629 ], [ -97.034933999763993, 32.779929000401609 ], [ -97.046553000482973, 32.779887999744552 ], [ -97.050217999556438, 32.778913999607141 ], [ -97.062525999936483, 32.779026999654249 ], [ -97.062664000439526, 32.795720999621771 ], [ -97.061322000110422, 32.797590000375152 ], [ -97.060430000063477, 32.801194000415329 ], [ -97.056918999463235, 32.803286000341103 ], [ -97.054689000162782, 32.801208999984553 ], [ -97.050884999497796, 32.801233000144997 ], [ -97.049055999504844, 32.79996199962909 ], [ -97.042095000387533, 32.7995940002072 ], [ -97.039638999624145, 32.795409000121843 ], [ -97.039621000005681, 32.790194000372445 ], [ -97.038753999744216, 32.787948000182745 ], [ -97.042108999769354, 32.787928999822789 ], [ -97.042113999596026, 32.785460000135316 ], [ -97.03585999979687, 32.785269000195001 ], [ -97.034789999555485, 32.786041000167629 ] ] ] } },
{ "type": "Feature", "id": 123, "properties": { "pctwhite": 33.408578, "pctrep": 39.285714, "R": 561, "D": 848, "CNTYVTD": "4391388", "rmapshaperid": 123, "id": 117 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.058900999753348, 32.817120999783555 ], [ -97.059230000346801, 32.817120999913023 ], [ -97.069016000319564, 32.815875999917033 ], [ -97.099517000305298, 32.808760000208324 ], [ -97.099642999670948, 32.822417999704747 ], [ -97.082326000430797, 32.822381000304894 ], [ -97.082335000028948, 32.821111999931873 ], [ -97.086423999614638, 32.821071999965795 ], [ -97.086369000478754, 32.819722999967489 ], [ -97.079302999874912, 32.819290999689876 ], [ -97.076589000425656, 32.819850999962135 ], [ -97.073577999572933, 32.817995000071825 ], [ -97.072720999572468, 32.821125999834585 ], [ -97.069439000020751, 32.822750000332327 ], [ -97.066302999833511, 32.822996000117598 ], [ -97.061321000178197, 32.822350000244342 ], [ -97.058900999753348, 32.817120999783555 ] ] ] } },
{ "type": "Feature", "id": 125, "properties": { "pctwhite": 46.428571, "pctrep": 47.058824, "R": 8, "D": 9, "CNTYVTD": "4391404", "rmapshaperid": 125, "id": 118 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.034085000046574, 32.816660000111774 ], [ -97.034789999555485, 32.786041000167629 ], [ -97.03585999979687, 32.785269000195001 ], [ -97.042113999596026, 32.785460000135316 ], [ -97.042108999769354, 32.787928999822789 ], [ -97.038753999744216, 32.787948000182745 ], [ -97.039621000005681, 32.790194000372445 ], [ -97.039638999624145, 32.795409000121843 ], [ -97.042095000387533, 32.7995940002072 ], [ -97.049055999504844, 32.79996199962909 ], [ -97.050884999497796, 32.801233000144997 ], [ -97.054689000162782, 32.801208999984553 ], [ -97.056918999463235, 32.803286000341103 ], [ -97.060430000063477, 32.801194000415329 ], [ -97.061322000110422, 32.797590000375152 ], [ -97.062664000439526, 32.795720999621771 ], [ -97.062680999977744, 32.802113999726373 ], [ -97.062538999916569, 32.808472000176373 ], [ -97.058551000486361, 32.811141000450455 ], [ -97.060226999782202, 32.813553999790969 ], [ -97.059230000346801, 32.817120999913023 ], [ -97.058900999753348, 32.817120999783555 ], [ -97.034085000046574, 32.816660000111774 ] ] ] } },
{ "type": "Feature", "id": 126, "properties": { "pctwhite": 46.363636, "pctrep": 36.585366, "R": 15, "D": 26, "CNTYVTD": "4391407", "rmapshaperid": 126, "id": 119 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.230262000038636, 32.746098999769266 ], [ -97.227871000313996, 32.746096000297896 ], [ -97.227926000396366, 32.741689000151752 ], [ -97.230349999661499, 32.741680999656758 ], [ -97.230262000038636, 32.746098999769266 ] ] ] } },
{ "type": "Feature", "id": 127, "properties": { "pctwhite": 19.348659, "pctrep": 30.555556, "R": 22, "D": 50, "CNTYVTD": "4391408", "rmapshaperid": 127, "id": 120 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.345965000011049, 32.708087000440173 ], [ -97.346300000318763, 32.707773999834906 ], [ -97.348038000013034, 32.709586999640031 ], [ -97.350147999883319, 32.709595000057739 ], [ -97.350095000512837, 32.712735000124816 ], [ -97.349035999581474, 32.712743000265569 ], [ -97.345627000219807, 32.712727999564336 ], [ -97.345285999739062, 32.711525000362741 ], [ -97.345965000011049, 32.708087000440173 ] ] ] } },
{ "type": "Feature", "id": 129, "properties": { "pctwhite": 39.062500, "pctrep": 16.666667, "R": 4, "D": 19, "CNTYVTD": "4391414", "rmapshaperid": 129, "id": 121 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.226705999673655, 32.746085999662903 ], [ -97.225490999626544, 32.746076000405992 ], [ -97.225561000220964, 32.741694000283701 ], [ -97.226742999740992, 32.741691999607717 ], [ -97.226705999673655, 32.746085999662903 ] ] ] } },
{ "type": "Feature", "id": 130, "properties": { "pctwhite": 16.406946, "pctrep": 19.835841, "R": 145, "D": 577, "CNTYVTD": "4391415", "rmapshaperid": 130, "id": 122 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.233583999599603, 32.746075999591028 ], [ -97.234381000315608, 32.746066000236013 ], [ -97.234479000471097, 32.737981999794648 ], [ -97.236428999704785, 32.737885999747029 ], [ -97.23644300011307, 32.731171999593194 ], [ -97.237398999634109, 32.730305000230615 ], [ -97.244858000178098, 32.73116100017495 ], [ -97.257351999842442, 32.731224999859947 ], [ -97.261929999693862, 32.731263000271916 ], [ -97.261945999771257, 32.734246000378889 ], [ -97.253701000083538, 32.734679000210271 ], [ -97.253688000047049, 32.741010000152386 ], [ -97.256098999774395, 32.740926999980815 ], [ -97.255956000202218, 32.743500999737385 ], [ -97.25251499995818, 32.744601999734321 ], [ -97.248752999480217, 32.744547999805789 ], [ -97.245004000371068, 32.743425000235852 ], [ -97.245035999609925, 32.741009999957839 ], [ -97.238658999760929, 32.739648000211247 ], [ -97.238606999676591, 32.742167999846338 ], [ -97.24207899971762, 32.742232000134067 ], [ -97.242059000272278, 32.745677000089316 ], [ -97.236651999787796, 32.746066000294512 ], [ -97.236526999718464, 32.747410999565588 ], [ -97.233548000214043, 32.748307999559024 ], [ -97.233583999599603, 32.746075999591028 ] ] ] } },
{ "type": "Feature", "id": 131, "properties": { "pctwhite": 49.746193, "pctrep": 56.818182, "R": 50, "D": 37, "CNTYVTD": "4391416", "rmapshaperid": 131, "id": 123 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.308576000056263, 32.780912000022838 ], [ -97.308613000259456, 32.779459000452206 ], [ -97.313357000463384, 32.779404000034042 ], [ -97.315502000185617, 32.776531999990937 ], [ -97.318762999698521, 32.780625000093274 ], [ -97.308576000056263, 32.780912000022838 ] ] ] } },
{ "type": "Feature", "id": 134, "properties": { "pctwhite": 82.988981, "pctrep": 78.614623, "R": 1430, "D": 377, "CNTYVTD": "4391423", "rmapshaperid": 134, "id": 124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.425881000294964, 32.659976000245791 ], [ -97.430157999551724, 32.654175999737674 ], [ -97.430333999549489, 32.651659000318716 ], [ -97.428367000092649, 32.645944000144702 ], [ -97.446766000493582, 32.646655999600895 ], [ -97.448436999964471, 32.650826000164344 ], [ -97.447914000415096, 32.652118999766138 ], [ -97.447536000093393, 32.653751000447087 ], [ -97.450342999965585, 32.658180999839736 ], [ -97.447253999633077, 32.664095000298403 ], [ -97.44467299973509, 32.663876999781955 ], [ -97.438704000340749, 32.666857000377625 ], [ -97.436415999996854, 32.666685000082389 ], [ -97.437457999691759, 32.669810999580392 ], [ -97.435605000016352, 32.671062000251062 ], [ -97.433017000204373, 32.677456000115463 ], [ -97.430518000512038, 32.678711000456467 ], [ -97.42916399962084, 32.681522999753874 ], [ -97.427677999984851, 32.682109999733072 ], [ -97.425592999756205, 32.681867999646954 ], [ -97.425475000210739, 32.683587999784692 ], [ -97.424614999683143, 32.682205999734698 ], [ -97.425709999850994, 32.681525000166751 ], [ -97.428173999774444, 32.681243999878681 ], [ -97.430062000104741, 32.678584999947923 ], [ -97.429590000083195, 32.674786999958741 ], [ -97.430755999804987, 32.671385000340877 ], [ -97.428954999664484, 32.668249000377557 ], [ -97.428451999905647, 32.66301300001399 ], [ -97.425881000294964, 32.659976000245791 ] ] ] } },
{ "type": "Feature", "id": 135, "properties": { "pctwhite": 92.000000, "pctrep": 62.500000, "R": 10, "D": 6, "CNTYVTD": "4391424", "rmapshaperid": 135, "id": 125 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.42935600037282, 32.599887000229323 ], [ -97.429470999572104, 32.610719999588341 ], [ -97.426613999714831, 32.610549000086486 ], [ -97.426558000337863, 32.599933000450264 ], [ -97.42935600037282, 32.599887000229323 ] ] ] } },
{ "type": "Feature", "id": 136, "properties": { "pctwhite": 51.724138, "pctrep": 70.000000, "R": 7, "D": 3, "CNTYVTD": "4391427", "rmapshaperid": 136, "id": 126 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.238661999599771, 32.662964000134188 ], [ -97.235517000087768, 32.659990000413345 ], [ -97.237247000080174, 32.657587000298726 ], [ -97.241501999830291, 32.654972000078175 ], [ -97.242815999869876, 32.656464000018957 ], [ -97.242962000525054, 32.656694999592077 ], [ -97.242593999712028, 32.659079999985664 ], [ -97.238661999599771, 32.662964000134188 ] ] ] } },
{ "type": "Feature", "id": 137, "properties": { "pctwhite": 31.578947, "pctrep": 75.000000, "R": 3, "D": 1, "CNTYVTD": "4391430", "rmapshaperid": 137, "id": 127 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.257426000186783, 32.767802000113115 ], [ -97.258815000536458, 32.766924999582585 ], [ -97.267684000160543, 32.766619000422935 ], [ -97.274787000123936, 32.765462000077875 ], [ -97.283566999799007, 32.765352000137433 ], [ -97.279649000184605, 32.769421000062657 ], [ -97.279607999551828, 32.774883000352041 ], [ -97.276405999896156, 32.776616999908512 ], [ -97.273523000427772, 32.776581000326075 ], [ -97.273262999504652, 32.778311999726753 ], [ -97.268315000017267, 32.780439000354086 ], [ -97.256677000429733, 32.780420000019447 ], [ -97.254275000413074, 32.780419000227234 ], [ -97.254240999516981, 32.775897000041667 ], [ -97.256104000115414, 32.772797999977534 ], [ -97.258175999508495, 32.771523999924128 ], [ -97.257426000186783, 32.767802000113115 ] ] ] } },
{ "type": "Feature", "id": 138, "properties": { "pctwhite": 77.682686, "pctrep": 76.375712, "R": 805, "D": 237, "CNTYVTD": "4391431", "rmapshaperid": 138, "id": 128 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.260455999506888, 32.551944999649315 ], [ -97.287891000295332, 32.552315000179767 ], [ -97.284820000374864, 32.555798000129293 ], [ -97.286880999689714, 32.557533000385661 ], [ -97.287196999678457, 32.560605999716643 ], [ -97.301310999717643, 32.560632999571702 ], [ -97.300984999512579, 32.564133999932132 ], [ -97.298311999541312, 32.568078999806986 ], [ -97.293655999470502, 32.568232999948876 ], [ -97.293502000176829, 32.571713999994138 ], [ -97.290622000339425, 32.574592999730392 ], [ -97.290521999735745, 32.579747999868395 ], [ -97.29269999969236, 32.579737999882703 ], [ -97.292881000001231, 32.591291000101634 ], [ -97.265464000307389, 32.590816999558825 ], [ -97.26329600002714, 32.591154999989961 ], [ -97.26329400036299, 32.567900999805644 ], [ -97.265297999817676, 32.567590999898442 ], [ -97.265488999742345, 32.553302000054515 ], [ -97.261963999478823, 32.553262999900561 ], [ -97.260455999506888, 32.551944999649315 ] ] ] } },
{ "type": "Feature", "id": 140, "properties": { "pctwhite": 50.326409, "pctrep": 49.441341, "R": 177, "D": 178, "CNTYVTD": "4391436", "rmapshaperid": 140, "id": 129 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.325251999535197, 32.577930000079668 ], [ -97.334521000389884, 32.577909999605858 ], [ -97.33445299984875, 32.587054000165274 ], [ -97.331113000160741, 32.587800999893403 ], [ -97.327249999623334, 32.589892000124614 ], [ -97.325251999535197, 32.577930000079668 ] ] ] } },
{ "type": "Feature", "id": 141, "properties": { "pctwhite": 58.341658, "pctrep": 60.042735, "R": 281, "D": 182, "CNTYVTD": "4391437", "rmapshaperid": 141, "id": 130 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.155958000399352, 32.771920000173324 ], [ -97.158796000014448, 32.767681999582464 ], [ -97.163333999602401, 32.764046000039542 ], [ -97.164997999629691, 32.765659000394713 ], [ -97.167237000118632, 32.765625000433907 ], [ -97.167924000357843, 32.767836999926836 ], [ -97.170361000033836, 32.770191999720176 ], [ -97.17499400031403, 32.773158999917136 ], [ -97.174990999804734, 32.777683000043588 ], [ -97.176723000360937, 32.779492999791621 ], [ -97.179248999700661, 32.779656999588035 ], [ -97.179058000360627, 32.780256999728557 ], [ -97.178502000424473, 32.781815000111123 ], [ -97.176044999878428, 32.781371000269175 ], [ -97.172081999773624, 32.776536000161826 ], [ -97.168109000084485, 32.774974000117929 ], [ -97.160190999539751, 32.775317000383254 ], [ -97.157949000359565, 32.774600000279577 ], [ -97.155958000399352, 32.771920000173324 ] ] ] } },
{ "type": "Feature", "id": 142, "properties": { "pctwhite": 12.041885, "pctrep": 23.809524, "R": 10, "D": 32, "CNTYVTD": "4391439", "rmapshaperid": 142, "id": 131 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.269982000425159, 32.623730000336401 ], [ -97.26992000016881, 32.616463000331443 ], [ -97.28711799971893, 32.616501000310102 ], [ -97.28710900009996, 32.62373700002248 ], [ -97.269982000425159, 32.623730000336401 ] ] ] } },
{ "type": "Feature", "id": 143, "properties": { "pctwhite": 16.442224, "pctrep": 22.452361, "R": 271, "D": 928, "CNTYVTD": "4391440", "rmapshaperid": 143, "id": 132 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.348570000327044, 32.648782999808631 ], [ -97.348618000381464, 32.634818999809383 ], [ -97.357652999673675, 32.63479999969168 ], [ -97.359603000406125, 32.634803999865099 ], [ -97.359821999854333, 32.644096999853566 ], [ -97.363146999895648, 32.644110999626818 ], [ -97.36439299970651, 32.646126999542851 ], [ -97.361372000264097, 32.647202000254161 ], [ -97.360572999658004, 32.648943000038507 ], [ -97.353345999518439, 32.648828999675551 ], [ -97.348570000327044, 32.648782999808631 ] ] ] } },
{ "type": "Feature", "id": 144, "properties": { "pctwhite": 25.202840, "pctrep": 14.942529, "R": 65, "D": 364, "CNTYVTD": "4391441", "rmapshaperid": 144, "id": 133 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.062680999977744, 32.802113999726373 ], [ -97.062664000439526, 32.795720999621771 ], [ -97.062525999936483, 32.779026999654249 ], [ -97.062643999991209, 32.779030000349714 ], [ -97.064515000033566, 32.779002000294227 ], [ -97.06486900047031, 32.784669999914186 ], [ -97.065001999646313, 32.787089000385627 ], [ -97.067032000374695, 32.789523000065756 ], [ -97.06738299971498, 32.793862999637405 ], [ -97.066403000320932, 32.796296999863351 ], [ -97.06426599950224, 32.796128999986557 ], [ -97.062680999977744, 32.802113999726373 ] ] ] } },
{ "type": "Feature", "id": 145, "properties": { "pctwhite": 50.000000, "pctrep": 0.000000, "R": 0, "D": 1, "CNTYVTD": "4391442", "rmapshaperid": 145, "id": 134 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.059230000346801, 32.817120999913023 ], [ -97.060226999782202, 32.813553999790969 ], [ -97.058551000486361, 32.811141000450455 ], [ -97.062538999916569, 32.808472000176373 ], [ -97.062680999977744, 32.802113999726373 ], [ -97.06426599950224, 32.796128999986557 ], [ -97.066403000320932, 32.796296999863351 ], [ -97.06738299971498, 32.793862999637405 ], [ -97.068948000521331, 32.794922000400973 ], [ -97.070708000037328, 32.791018000046606 ], [ -97.073413000379603, 32.790745999999366 ], [ -97.073473000010864, 32.785297000274738 ], [ -97.075193999561023, 32.784010999930871 ], [ -97.078520999903944, 32.783318000027364 ], [ -97.080430999520587, 32.784782000065441 ], [ -97.081838000100689, 32.78270099981188 ], [ -97.086470999824712, 32.782898999869268 ], [ -97.089174000234237, 32.78516099975775 ], [ -97.088236999896665, 32.787166000393718 ], [ -97.096003000495003, 32.786011000261546 ], [ -97.100165999787748, 32.787425000117686 ], [ -97.101659000157355, 32.789238999992037 ], [ -97.10487599981883, 32.78984399984413 ], [ -97.107914000105566, 32.791395000103492 ], [ -97.104678999920367, 32.793880000395319 ], [ -97.107610000077386, 32.795223000346823 ], [ -97.108307000047404, 32.801281999885184 ], [ -97.110088000420248, 32.806279000141402 ], [ -97.103702999951338, 32.80774900005197 ], [ -97.099517000305298, 32.808760000208324 ], [ -97.069016000319564, 32.815875999917033 ], [ -97.059230000346801, 32.817120999913023 ] ] ] } },
{ "type": "Feature", "id": 146, "properties": { "pctwhite": 22.115385, "pctrep": 22.000000, "R": 11, "D": 38, "CNTYVTD": "4391444", "rmapshaperid": 146, "id": 135 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.31201199949767, 32.743014000436787 ], [ -97.319291000146578, 32.742522000379843 ], [ -97.320329000240079, 32.735401000218118 ], [ -97.324260000340104, 32.735499999658479 ], [ -97.325864999829392, 32.735559999830187 ], [ -97.325859000070949, 32.741804999803414 ], [ -97.321541000130608, 32.741834999928287 ], [ -97.321397000234015, 32.744992000372598 ], [ -97.31201199949767, 32.743014000436787 ] ] ] } },
{ "type": "Feature", "id": 147, "properties": { "pctwhite": 36.559140, "pctrep": 26.086957, "R": 6, "D": 17, "CNTYVTD": "4391445", "rmapshaperid": 147, "id": 136 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.372911000140547, 32.681493999919425 ], [ -97.368736999485932, 32.681335999908072 ], [ -97.364818000008441, 32.679768999746734 ], [ -97.370192000378111, 32.679422999772676 ], [ -97.372911000140547, 32.681493999919425 ] ] ] } },
{ "type": "Feature", "id": 150, "properties": { "pctwhite": 28.372740, "pctrep": 29.653505, "R": 368, "D": 855, "CNTYVTD": "4391459", "rmapshaperid": 150, "id": 137 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.36998499965938, 32.628860999669342 ], [ -97.369866999775027, 32.634831999668449 ], [ -97.359603000406125, 32.634803999865099 ], [ -97.357652999673675, 32.63479999969168 ], [ -97.35699399992788, 32.631679999607542 ], [ -97.357401000178839, 32.625563000399993 ], [ -97.361650999512648, 32.625464999955064 ], [ -97.361537000423652, 32.628041999693281 ], [ -97.367058000512898, 32.629194000139371 ], [ -97.36998499965938, 32.628860999669342 ] ] ] } },
{ "type": "Feature", "id": 151, "properties": { "pctwhite": 15.343393, "pctrep": 19.882180, "R": 270, "D": 1079, "CNTYVTD": "4391460", "rmapshaperid": 151, "id": 138 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.212769000515095, 32.778329000364003 ], [ -97.212962000197649, 32.763962000027263 ], [ -97.214164000176268, 32.759903999973176 ], [ -97.225772999528004, 32.760067000240475 ], [ -97.238345000103223, 32.76077599960233 ], [ -97.239633999760073, 32.760701999706562 ], [ -97.240715999580843, 32.763258000059587 ], [ -97.237363999644572, 32.764224999587164 ], [ -97.236411000282047, 32.765749000242124 ], [ -97.228683999524861, 32.765537999703895 ], [ -97.226719000172238, 32.76810900032433 ], [ -97.223596000315283, 32.769000000429877 ], [ -97.222866999519155, 32.771229000095495 ], [ -97.224958999521903, 32.776829000291336 ], [ -97.220426000014641, 32.777101000301784 ], [ -97.212769000515095, 32.778329000364003 ] ] ] } },
{ "type": "Feature", "id": 152, "properties": { "pctwhite": 24.250519, "pctrep": 24.339360, "R": 175, "D": 533, "CNTYVTD": "4391463", "rmapshaperid": 152, "id": 139 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.097072999669678, 32.77533499963571 ], [ -97.097026999797478, 32.765737000026256 ], [ -97.102542999559446, 32.764006999795882 ], [ -97.105458000223848, 32.766573000127444 ], [ -97.105085000175507, 32.772573000037909 ], [ -97.106436999812161, 32.775435999754606 ], [ -97.097072999669678, 32.77533499963571 ] ] ] } },
{ "type": "Feature", "id": 154, "properties": { "pctwhite": 29.647059, "pctrep": 51.063830, "R": 24, "D": 21, "CNTYVTD": "4391473", "rmapshaperid": 154, "id": 140 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.301720999818798, 32.76989600026883 ], [ -97.301786999768481, 32.768291999944864 ], [ -97.308897999951597, 32.767391000099742 ], [ -97.310784000075401, 32.768709999913852 ], [ -97.311558999588058, 32.770998000296366 ], [ -97.308846000208447, 32.770262999878938 ], [ -97.301720999818798, 32.76989600026883 ] ] ] } },
{ "type": "Feature", "id": 155, "properties": { "pctwhite": 25.505051, "pctrep": 46.428571, "R": 26, "D": 30, "CNTYVTD": "4391476", "rmapshaperid": 155, "id": 141 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.301786999768481, 32.768291999944864 ], [ -97.287848000370346, 32.77485299984933 ], [ -97.287442999503909, 32.771047999796558 ], [ -97.293028000161698, 32.768005000161146 ], [ -97.301786999768481, 32.768291999944864 ] ] ] } },
{ "type": "Feature", "id": 156, "properties": { "pctwhite": 6.839686, "pctrep": 12.343470, "R": 69, "D": 484, "CNTYVTD": "4391477", "rmapshaperid": 156, "id": 142 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.262901000213461, 32.702691999718681 ], [ -97.262923000534386, 32.700644999995106 ], [ -97.263163999908741, 32.691843999726615 ], [ -97.263183999846646, 32.676993999941679 ], [ -97.263451000441805, 32.675628999770268 ], [ -97.267878000368981, 32.677580000305475 ], [ -97.271576000464179, 32.679270999829441 ], [ -97.27150199993531, 32.692230999686814 ], [ -97.271456000069833, 32.700195999572117 ], [ -97.273572999860306, 32.700217999713573 ], [ -97.272891000355528, 32.706383999642505 ], [ -97.269964999516517, 32.705236000246146 ], [ -97.268579999588965, 32.702699000048611 ], [ -97.262901000213461, 32.702691999718681 ] ] ] } },
{ "type": "Feature", "id": 157, "properties": { "pctwhite": 16.770186, "pctrep": 28.260870, "R": 26, "D": 64, "CNTYVTD": "4391479", "rmapshaperid": 157, "id": 143 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.261733000105977, 32.740988999584516 ], [ -97.270859999817745, 32.741023999880468 ], [ -97.270816000250903, 32.743949000046932 ], [ -97.267451000501808, 32.743366999595899 ], [ -97.262640000053651, 32.74568599998895 ], [ -97.261733000105977, 32.740988999584516 ] ] ] } },
{ "type": "Feature", "id": 158, "properties": { "pctwhite": 9.480932, "pctrep": 21.590909, "R": 38, "D": 138, "CNTYVTD": "4391481", "rmapshaperid": 158, "id": 144 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.32058100036015, 32.684333999705359 ], [ -97.320264000045427, 32.676478999654385 ], [ -97.327026999987069, 32.678074999947405 ], [ -97.331784999939956, 32.678084999987135 ], [ -97.331754999511546, 32.684804000186752 ], [ -97.32058100036015, 32.684333999705359 ] ] ] } },
{ "type": "Feature", "id": 159, "properties": { "pctwhite": 9.961190, "pctrep": 13.013699, "R": 38, "D": 248, "CNTYVTD": "4391482", "rmapshaperid": 159, "id": 145 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.271576000464179, 32.679270999829441 ], [ -97.280153000275234, 32.683213999559989 ], [ -97.280244000431097, 32.692287000265537 ], [ -97.27150199993531, 32.692230999686814 ], [ -97.271576000464179, 32.679270999829441 ] ] ] } },
{ "type": "Feature", "id": 160, "properties": { "pctwhite": 30.748483, "pctrep": 32.049948, "R": 308, "D": 647, "CNTYVTD": "4391489", "rmapshaperid": 160, "id": 146 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.161086000116754, 32.757558999834103 ], [ -97.163089999960746, 32.756131000250598 ], [ -97.163698999529799, 32.745626000285043 ], [ -97.170463999463593, 32.742964000412123 ], [ -97.173298000051375, 32.741211000232767 ], [ -97.179117999757949, 32.735823000089567 ], [ -97.179435999553135, 32.730901999692612 ], [ -97.181137999548596, 32.730669999596373 ], [ -97.182419999630355, 32.730758999612256 ], [ -97.182304000187628, 32.744742999896985 ], [ -97.181648999732076, 32.745648999545516 ], [ -97.181157000017038, 32.748654999903216 ], [ -97.183151999976758, 32.751821000153456 ], [ -97.183291000446445, 32.757936000107065 ], [ -97.183113999810772, 32.75999300025623 ], [ -97.167098999725923, 32.760224 ], [ -97.167520999735586, 32.757116999636779 ], [ -97.161086000116754, 32.757558999834103 ] ] ] } },
{ "type": "Feature", "id": 161, "properties": { "pctwhite": 33.528428, "pctrep": 28.333333, "R": 102, "D": 253, "CNTYVTD": "4391490", "rmapshaperid": 161, "id": 147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.149364000129779, 32.776148000378925 ], [ -97.148801000270197, 32.771368999785452 ], [ -97.150621999558425, 32.770881999964004 ], [ -97.152699000340832, 32.76784300012681 ], [ -97.149408000442321, 32.767736000438305 ], [ -97.149537999593377, 32.764573999552212 ], [ -97.151604000157832, 32.764442999762615 ], [ -97.151789999476975, 32.760249999909689 ], [ -97.158533000490308, 32.76033899959203 ], [ -97.163333999602401, 32.764046000039542 ], [ -97.158796000014448, 32.767681999582464 ], [ -97.155958000399352, 32.771920000173324 ], [ -97.153140000143438, 32.776009999847112 ], [ -97.153095999480755, 32.778609999680519 ], [ -97.149364000129779, 32.776148000378925 ] ] ] } },
{ "type": "Feature", "id": 163, "properties": { "pctwhite": 43.892751, "pctrep": 50.877193, "R": 145, "D": 139, "CNTYVTD": "4391501", "rmapshaperid": 163, "id": 148 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.33445299984875, 32.587054000165274 ], [ -97.334521000389884, 32.577909999605858 ], [ -97.344838000522415, 32.578190000029274 ], [ -97.342033000509986, 32.581193000180804 ], [ -97.343028999878754, 32.582650000369512 ], [ -97.339522000222985, 32.583593000071069 ], [ -97.339098000477406, 32.585983000136331 ], [ -97.33445299984875, 32.587054000165274 ] ] ] } },
{ "type": "Feature", "id": 164, "properties": { "pctwhite": 83.979933, "pctrep": 79.747899, "R": 949, "D": 229, "CNTYVTD": "4391504", "rmapshaperid": 164, "id": 149 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.232461999764567, 32.607513999820689 ], [ -97.233283999913951, 32.607559999719413 ], [ -97.233726999591184, 32.582908999879848 ], [ -97.241500000222274, 32.582830999772447 ], [ -97.241776999612455, 32.559004999545635 ], [ -97.237408999809048, 32.551700000364178 ], [ -97.260455999506888, 32.551944999649315 ], [ -97.261963999478823, 32.553262999900561 ], [ -97.265488999742345, 32.553302000054515 ], [ -97.265297999817676, 32.567590999898442 ], [ -97.26329400036299, 32.567900999805644 ], [ -97.26329600002714, 32.591154999989961 ], [ -97.245595999461827, 32.590921000243085 ], [ -97.245170000306587, 32.602215999716336 ], [ -97.234364999988458, 32.602024999862294 ], [ -97.23405000004297, 32.609467000369811 ], [ -97.232461999764567, 32.607513999820689 ] ] ] } },
{ "type": "Feature", "id": 166, "properties": { "pctwhite": 58.415842, "pctrep": 57.142857, "R": 12, "D": 8, "CNTYVTD": "4391515", "rmapshaperid": 166, "id": 150 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.242962000525054, 32.656694999592077 ], [ -97.244218000214545, 32.659084000338368 ], [ -97.244645000492739, 32.662662999840656 ], [ -97.24129999952676, 32.665301000137866 ], [ -97.238661999599771, 32.662964000134188 ], [ -97.242593999712028, 32.659079999985664 ], [ -97.242962000525054, 32.656694999592077 ] ] ] } },
{ "type": "Feature", "id": 167, "properties": { "pctwhite": 27.921093, "pctrep": 21.794872, "R": 102, "D": 361, "CNTYVTD": "4391518", "rmapshaperid": 167, "id": 151 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.154895000012132, 32.757719999594855 ], [ -97.156413999695545, 32.757546999861489 ], [ -97.159641999533946, 32.757556000259406 ], [ -97.161086000116754, 32.757558999834103 ], [ -97.167520999735586, 32.757116999636779 ], [ -97.167098999725923, 32.760224 ], [ -97.158533000490308, 32.76033899959203 ], [ -97.151789999476975, 32.760249999909689 ], [ -97.154895000012132, 32.757719999594855 ] ] ] } },
{ "type": "Feature", "id": 172, "properties": { "pctwhite": 1.834862, "pctrep": 10.000000, "R": 3, "D": 27, "CNTYVTD": "4391550", "rmapshaperid": 171, "id": 152 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.306433000137304, 32.76227100040937 ], [ -97.30897600000921, 32.759645000216736 ], [ -97.308981000061777, 32.761248999845904 ], [ -97.306433000137304, 32.76227100040937 ] ] ] } },
{ "type": "Feature", "id": 173, "properties": { "pctwhite": 0.000000, "pctrep": 0.000000, "R": 0, "D": 2, "CNTYVTD": "4391555", "rmapshaperid": 172, "id": 153 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.320469000251933, 32.667057000045261 ], [ -97.320264000045427, 32.676478999654385 ], [ -97.318814000543895, 32.676114999562884 ], [ -97.315208999707735, 32.67301199993414 ], [ -97.314668999612977, 32.668922999764163 ], [ -97.320469000251933, 32.667057000045261 ] ] ] } },
{ "type": "Feature", "id": 174, "properties": { "pctwhite": 26.813880, "pctrep": 32.142857, "R": 36, "D": 75, "CNTYVTD": "4391559", "rmapshaperid": 173, "id": 154 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.321463999678315, 32.63516300017011 ], [ -97.327344000423636, 32.635202000041616 ], [ -97.327126000477747, 32.638170000379439 ], [ -97.32468800032801, 32.639638999945767 ], [ -97.321789000400443, 32.63964899974188 ], [ -97.321577000225204, 32.643690000100662 ], [ -97.321371000458214, 32.643739999878591 ], [ -97.321463999678315, 32.63516300017011 ] ] ] } },
{ "type": "Feature", "id": 176, "properties": { "pctwhite": 1.714801, "pctrep": 6.382979, "R": 6, "D": 87, "CNTYVTD": "4391576", "rmapshaperid": 175, "id": 155 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.312641999785356, 32.684395999556372 ], [ -97.30625800020978, 32.684386999918551 ], [ -97.306675999787856, 32.682997000285049 ], [ -97.310837000052246, 32.681983000017922 ], [ -97.312641999785356, 32.684395999556372 ] ] ] } },
{ "type": "Feature", "id": 177, "properties": { "pctwhite": 14.600551, "pctrep": 11.721612, "R": 64, "D": 476, "CNTYVTD": "4391577", "rmapshaperid": 176, "id": 156 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.269915999651332, 32.646185000323385 ], [ -97.269916999762444, 32.645574000270102 ], [ -97.252669000448108, 32.645552999859895 ], [ -97.252678999677514, 32.632122000184367 ], [ -97.253752999866151, 32.630979000106358 ], [ -97.261369999803733, 32.630958999769355 ], [ -97.261312999596484, 32.635140999627993 ], [ -97.269945999599059, 32.635154000323951 ], [ -97.272370999596177, 32.633814999929257 ], [ -97.280195999949015, 32.633953999927755 ], [ -97.280085999868817, 32.643337000259272 ], [ -97.286178000077626, 32.64329199999856 ], [ -97.284856999815489, 32.648420999687815 ], [ -97.278085000322918, 32.648449000180406 ], [ -97.278166999552198, 32.645237999722227 ], [ -97.271899999705397, 32.645038000082316 ], [ -97.269915999651332, 32.646185000323385 ] ] ] } },
{ "type": "Feature", "id": 178, "properties": { "pctwhite": 21.241226, "pctrep": 23.858616, "R": 162, "D": 512, "CNTYVTD": "4391578", "rmapshaperid": 177, "id": 157 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.301301000452227, 32.631023000419013 ], [ -97.301218999539145, 32.627057000301527 ], [ -97.298269999817151, 32.625165999943924 ], [ -97.29322599964398, 32.623592000201072 ], [ -97.293286000370514, 32.620032000167903 ], [ -97.294598000235766, 32.616494000360419 ], [ -97.28711799971893, 32.616501000310102 ], [ -97.287134999614722, 32.610684000355256 ], [ -97.285820999713764, 32.608316999738015 ], [ -97.287716000473665, 32.608311000226422 ], [ -97.292209000298968, 32.606360999751736 ], [ -97.294191999516983, 32.604055999805951 ], [ -97.308707000065183, 32.604107000027419 ], [ -97.310365999775485, 32.603084999993158 ], [ -97.313231999493539, 32.604753999696804 ], [ -97.319950999816299, 32.605135999723991 ], [ -97.320309000514811, 32.605984000406174 ], [ -97.321537999771124, 32.61399400009595 ], [ -97.32152700025155, 32.627707999643995 ], [ -97.304425999614963, 32.627557999648872 ], [ -97.304314000469958, 32.631043000052564 ], [ -97.301301000452227, 32.631023000419013 ] ] ] } },
{ "type": "Feature", "id": 179, "properties": { "pctwhite": 36.363636, "pctrep": 11.111111, "R": 1, "D": 8, "CNTYVTD": "4391586", "rmapshaperid": 178, "id": 158 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.103702999951338, 32.80774900005197 ], [ -97.110088000420248, 32.806279000141402 ], [ -97.121878000163676, 32.80350599961951 ], [ -97.122966000320702, 32.804433999726967 ], [ -97.122953000035395, 32.8077580001437 ], [ -97.103702999951338, 32.80774900005197 ] ] ] } },
{ "type": "Feature", "id": 182, "properties": { "pctwhite": 12.434457, "pctrep": 21.649485, "R": 42, "D": 151, "CNTYVTD": "4391597", "rmapshaperid": 181, "id": 159 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.311634000335928, 32.67450899963525 ], [ -97.315208999707735, 32.67301199993414 ], [ -97.318814000543895, 32.676114999562884 ], [ -97.320264000045427, 32.676478999654385 ], [ -97.32058100036015, 32.684333999705359 ], [ -97.315220999953212, 32.684369999821982 ], [ -97.313862000200388, 32.677237999931791 ], [ -97.311634000335928, 32.67450899963525 ] ] ] } },
{ "type": "Feature", "id": 183, "properties": { "pctwhite": 31.921182, "pctrep": 31.281534, "R": 310, "D": 663, "CNTYVTD": "4391603", "rmapshaperid": 182, "id": 160 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.033714999618411, 32.838153000049282 ], [ -97.034085000046574, 32.816660000111774 ], [ -97.058900999753348, 32.817120999783555 ], [ -97.061321000178197, 32.822350000244342 ], [ -97.066302999833511, 32.822996000117598 ], [ -97.069439000020751, 32.822750000332327 ], [ -97.072720999572468, 32.821125999834585 ], [ -97.073577999572933, 32.817995000071825 ], [ -97.076589000425656, 32.819850999962135 ], [ -97.079302999874912, 32.819290999689876 ], [ -97.086369000478754, 32.819722999967489 ], [ -97.086423999614638, 32.821071999965795 ], [ -97.082335000028948, 32.821111999931873 ], [ -97.082326000430797, 32.822381000304894 ], [ -97.07415000024163, 32.822364000254147 ], [ -97.070909000042477, 32.823289000227511 ], [ -97.069450000322803, 32.828889999859562 ], [ -97.069641999573903, 32.836773999787425 ], [ -97.069640999487618, 32.837026999706886 ], [ -97.065266999963924, 32.837822000383902 ], [ -97.063152999774317, 32.838890999678426 ], [ -97.060745999990473, 32.843494000107313 ], [ -97.058149000020109, 32.841147000013457 ], [ -97.05478399996916, 32.840650999732816 ], [ -97.048584000258018, 32.838603000403666 ], [ -97.043268999689928, 32.839596000402864 ], [ -97.041667999942476, 32.84155199994845 ], [ -97.03922799975966, 32.841306000136015 ], [ -97.037233999910001, 32.839236000423895 ], [ -97.033714999618411, 32.838153000049282 ] ] ] } },
{ "type": "Feature", "id": 186, "properties": { "pctwhite": 70.315399, "pctrep": 46.126126, "R": 256, "D": 288, "CNTYVTD": "4391608", "rmapshaperid": 185, "id": 161 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.335173000087835, 32.718006000216008 ], [ -97.335157000028758, 32.716589000084021 ], [ -97.331590999535095, 32.716610999901768 ], [ -97.33158999959781, 32.716266999543102 ], [ -97.333834999720949, 32.713154999967799 ], [ -97.336743000285807, 32.713147000146883 ], [ -97.3379490002675, 32.711357000026979 ], [ -97.342796999633194, 32.711401000196588 ], [ -97.343828999845172, 32.71139500018365 ], [ -97.343768999704309, 32.718053999958812 ], [ -97.335173000087835, 32.718006000216008 ] ] ] } },
{ "type": "Feature", "id": 188, "properties": { "pctwhite": 8.620690, "pctrep": 35.714286, "R": 5, "D": 9, "CNTYVTD": "4391611", "rmapshaperid": 186, "id": 162 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.33158999959781, 32.716266999543102 ], [ -97.331608000345327, 32.71313900001828 ], [ -97.333834999720949, 32.713154999967799 ], [ -97.33158999959781, 32.716266999543102 ] ] ] } },
{ "type": "Feature", "id": 190, "properties": { "pctwhite": 0.000000, "pctrep": 18.181818, "R": 2, "D": 9, "CNTYVTD": "4391619", "rmapshaperid": 187, "id": 163 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.318475000132594, 32.707770999957745 ], [ -97.318583000213394, 32.70297500034188 ], [ -97.317433000169686, 32.701520999563243 ], [ -97.320280000127966, 32.703034000023166 ], [ -97.32055499979711, 32.703217999988411 ], [ -97.320553000341121, 32.712994999614565 ], [ -97.320241000027352, 32.710393999629929 ], [ -97.318475000132594, 32.707770999957745 ] ] ] } },
{ "type": "Feature", "id": 191, "properties": { "pctwhite": 20.168067, "pctrep": 20.000000, "R": 5, "D": 20, "CNTYVTD": "4391621", "rmapshaperid": 188, "id": 164 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.284840000164465, 32.603998999596421 ], [ -97.294191999516983, 32.604055999805951 ], [ -97.292209000298968, 32.606360999751736 ], [ -97.287716000473665, 32.608311000226422 ], [ -97.285820999713764, 32.608316999738015 ], [ -97.284840000164465, 32.603998999596421 ] ] ] } },
{ "type": "Feature", "id": 192, "properties": { "pctwhite": 42.857143, "pctrep": 40.000000, "R": 10, "D": 15, "CNTYVTD": "4391622", "rmapshaperid": 189, "id": 165 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.230844999555018, 32.775291999753492 ], [ -97.233080999511756, 32.774579999694836 ], [ -97.240090999765343, 32.770480000360187 ], [ -97.242831999514422, 32.770165000414643 ], [ -97.251921000191913, 32.771131999966386 ], [ -97.254121000285295, 32.77078900018256 ], [ -97.257426000186783, 32.767802000113115 ], [ -97.258175999508495, 32.771523999924128 ], [ -97.256104000115414, 32.772797999977534 ], [ -97.254240999516981, 32.775897000041667 ], [ -97.254275000413074, 32.780419000227234 ], [ -97.256677000429733, 32.780420000019447 ], [ -97.256678999545997, 32.78404100041088 ], [ -97.249683999644517, 32.784193999993676 ], [ -97.249428000458067, 32.787580999614086 ], [ -97.245769000136491, 32.787617999666772 ], [ -97.243394000403057, 32.787740000070286 ], [ -97.238456000026261, 32.785625000363076 ], [ -97.240059999612029, 32.7836369999102 ], [ -97.238736999665605, 32.781773000030107 ], [ -97.235249999730769, 32.782423999778224 ], [ -97.232367000272916, 32.780453000281284 ], [ -97.236099999757258, 32.779227999698158 ], [ -97.237773000030558, 32.776918999854246 ], [ -97.234611000248819, 32.775287000204052 ], [ -97.233004999778188, 32.7770619995947 ], [ -97.230844999555018, 32.775291999753492 ] ] ] } },
{ "type": "Feature", "id": 195, "properties": { "pctwhite": 69.649805, "pctrep": 74.054054, "R": 137, "D": 42, "CNTYVTD": "4391627", "rmapshaperid": 191, "id": 166 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.326182000031508, 32.571821999609355 ], [ -97.327244999762073, 32.570035999893705 ], [ -97.332237999578396, 32.568930999900751 ], [ -97.332300999529735, 32.571579000123002 ], [ -97.334235999973572, 32.571708999728862 ], [ -97.326182000031508, 32.571821999609355 ] ] ] } },
{ "type": "Feature", "id": 197, "properties": { "pctwhite": 45.019920, "pctrep": 43.225806, "R": 67, "D": 86, "CNTYVTD": "4391631", "rmapshaperid": 193, "id": 167 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.107610000077386, 32.795223000346823 ], [ -97.104678999920367, 32.793880000395319 ], [ -97.107914000105566, 32.791395000103492 ], [ -97.10487599981883, 32.78984399984413 ], [ -97.10764099965408, 32.788483000431931 ], [ -97.110189000436321, 32.790899999587658 ], [ -97.112364999663527, 32.788078000225767 ], [ -97.111638999894552, 32.784952999913251 ], [ -97.115781999799907, 32.782634999736558 ], [ -97.121065000168201, 32.782038000121567 ], [ -97.126009999874668, 32.779262000147476 ], [ -97.133570999631416, 32.77927500010356 ], [ -97.13940999981341, 32.779160999871394 ], [ -97.139062999915978, 32.782682999623773 ], [ -97.116648999524244, 32.782625000416829 ], [ -97.116862000115248, 32.790734000009913 ], [ -97.126744999660033, 32.790685999871513 ], [ -97.126730999688448, 32.793846999929066 ], [ -97.131782000107265, 32.793855000284353 ], [ -97.131790999817355, 32.802760999919514 ], [ -97.13119699953927, 32.802863999835239 ], [ -97.131016000127914, 32.797150999639527 ], [ -97.127987000154732, 32.797049000353176 ], [ -97.112320000265086, 32.794432000028124 ], [ -97.109710999855849, 32.793011000407986 ], [ -97.107610000077386, 32.795223000346823 ] ] ] } },
{ "type": "Feature", "id": 199, "properties": { "pctwhite": 19.246704, "pctrep": 21.473088, "R": 379, "D": 1374, "CNTYVTD": "4391639", "rmapshaperid": 194, "id": 168 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.349690000179876, 32.614130999891266 ], [ -97.351484000092157, 32.609926999662882 ], [ -97.351484999576584, 32.606794000286023 ], [ -97.355135000311137, 32.606785000005821 ], [ -97.376302000083115, 32.606959000242888 ], [ -97.376612999837576, 32.586474000302481 ], [ -97.379715999511419, 32.586560000436748 ], [ -97.379707000098989, 32.58899599999517 ], [ -97.388398000034158, 32.589021000286181 ], [ -97.388589999846417, 32.617091999944208 ], [ -97.383575000014034, 32.616929000122468 ], [ -97.379180000184519, 32.615853000237699 ], [ -97.371490000206563, 32.61490300003738 ], [ -97.369862000330798, 32.614597000259387 ], [ -97.35319899971708, 32.614734999861696 ], [ -97.349690000179876, 32.614130999891266 ] ] ] } },
{ "type": "Feature", "id": 200, "properties": { "pctwhite": 43.924783, "pctrep": 46.232670, "R": 767, "D": 873, "CNTYVTD": "4391641", "rmapshaperid": 195, "id": 169 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.40647299998912, 32.628898000117402 ], [ -97.408027000387236, 32.622765999833966 ], [ -97.406242000304459, 32.615885999650992 ], [ -97.403148999688824, 32.616488999832463 ], [ -97.398115999860522, 32.616502000055547 ], [ -97.393034000348052, 32.617263000156584 ], [ -97.388589999846417, 32.617091999944208 ], [ -97.388398000034158, 32.589021000286181 ], [ -97.388342999517278, 32.581529000310688 ], [ -97.403737999920182, 32.581448999803847 ], [ -97.404244999494054, 32.587092999831711 ], [ -97.410105000032829, 32.587079999653653 ], [ -97.415727999969704, 32.587092000228971 ], [ -97.416345000081378, 32.5890980001694 ], [ -97.420971000133349, 32.590911999638323 ], [ -97.425353999570376, 32.591092999734464 ], [ -97.427024999729312, 32.589855000363393 ], [ -97.432504000404833, 32.589095000153527 ], [ -97.432517999946896, 32.599301999632246 ], [ -97.42935600037282, 32.599887000229323 ], [ -97.426558000337863, 32.599933000450264 ], [ -97.426613999714831, 32.610549000086486 ], [ -97.429470999572104, 32.610719999588341 ], [ -97.434252999662121, 32.610735999942996 ], [ -97.430161999964497, 32.616365999734683 ], [ -97.424324000413449, 32.620900999830283 ], [ -97.42259899996175, 32.62290399993411 ], [ -97.418635999796123, 32.629298000144146 ], [ -97.409655999927239, 32.629262999984725 ], [ -97.40647299998912, 32.628898000117402 ] ] ] } },
{ "type": "Feature", "id": 201, "properties": { "pctwhite": 30.245133, "pctrep": 31.890459, "R": 361, "D": 759, "CNTYVTD": "4391642", "rmapshaperid": 196, "id": 170 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.319509999521401, 32.577834000149061 ], [ -97.319104000284995, 32.57186600012578 ], [ -97.324229000128923, 32.571822999866114 ], [ -97.325251999535197, 32.577930000079668 ], [ -97.327249999623334, 32.589892000124614 ], [ -97.331113000160741, 32.587800999893403 ], [ -97.334361000247895, 32.589227000032551 ], [ -97.334344000305393, 32.599874999637365 ], [ -97.350929999610756, 32.600066999925772 ], [ -97.351484999576584, 32.606794000286023 ], [ -97.351484000092157, 32.609926999662882 ], [ -97.349690000179876, 32.614130999891266 ], [ -97.321537999771124, 32.61399400009595 ], [ -97.320309000514811, 32.605984000406174 ], [ -97.319336999612005, 32.599119999921314 ], [ -97.319509999521401, 32.577834000149061 ] ] ] } },
{ "type": "Feature", "id": 203, "properties": { "pctwhite": 4.000000, "pctrep": 0.990099, "R": 1, "D": 100, "CNTYVTD": "4391652", "rmapshaperid": 198, "id": 171 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.311634000335928, 32.67450899963525 ], [ -97.306024000055444, 32.669581000072135 ], [ -97.310818000377722, 32.669224000403624 ], [ -97.320495999732742, 32.666816999812525 ], [ -97.320762000040531, 32.666763999682168 ], [ -97.32073200036622, 32.667008999646356 ], [ -97.320469000251933, 32.667057000045261 ], [ -97.314668999612977, 32.668922999764163 ], [ -97.315208999707735, 32.67301199993414 ], [ -97.311634000335928, 32.67450899963525 ] ] ] } },
{ "type": "Feature", "id": 207, "properties": { "pctwhite": 79.521057, "pctrep": 64.784547, "R": 436, "D": 227, "CNTYVTD": "4392003", "rmapshaperid": 201, "id": 172 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.140360000036921, 32.7502860004372 ], [ -97.140460000175338, 32.742856999934524 ], [ -97.143092000514372, 32.743451000044026 ], [ -97.149076999751273, 32.743150000136872 ], [ -97.151642999499856, 32.746183000270435 ], [ -97.150846000353155, 32.75004200036075 ], [ -97.147169999848472, 32.750694000363175 ], [ -97.140360000036921, 32.7502860004372 ] ] ] } },
{ "type": "Feature", "id": 208, "properties": { "pctwhite": 81.910643, "pctrep": 69.716495, "R": 1082, "D": 454, "CNTYVTD": "4392007", "rmapshaperid": 202, "id": 173 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.157563999915496, 32.674541999945333 ], [ -97.155425999834847, 32.670255999594161 ], [ -97.153451000161283, 32.669012999848206 ], [ -97.15298599986825, 32.664746000186831 ], [ -97.150185000240683, 32.659661000317989 ], [ -97.157709000469822, 32.659679999659652 ], [ -97.163053999985138, 32.658418999803175 ], [ -97.166802999874875, 32.658329999737148 ], [ -97.166689000198431, 32.674998999990926 ], [ -97.157563999915496, 32.674541999945333 ] ] ] } },
{ "type": "Feature", "id": 209, "properties": { "pctwhite": 72.945892, "pctrep": 60.562249, "R": 754, "D": 464, "CNTYVTD": "4392026", "rmapshaperid": 203, "id": 174 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.12307899989878, 32.759833000308198 ], [ -97.123063000409587, 32.757474999728117 ], [ -97.123242000294312, 32.750152000161485 ], [ -97.117637000310467, 32.750151999919211 ], [ -97.116920999982511, 32.742866000289148 ], [ -97.119671999997195, 32.742924000428452 ], [ -97.119719000243009, 32.739076999617332 ], [ -97.123338000446225, 32.738932999728263 ], [ -97.131569999492612, 32.736524999798768 ], [ -97.131844000328385, 32.739044000339689 ], [ -97.131584000155769, 32.759922999908085 ], [ -97.12307899989878, 32.759833000308198 ] ] ] } },
{ "type": "Feature", "id": 210, "properties": { "pctwhite": 27.217235, "pctrep": 37.339056, "R": 261, "D": 428, "CNTYVTD": "4392027", "rmapshaperid": 204, "id": 175 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.071833999976619, 32.706040999908133 ], [ -97.072148000229916, 32.691608000103301 ], [ -97.076190000094186, 32.691515999953495 ], [ -97.080492999701619, 32.691546000201413 ], [ -97.08075399954356, 32.691545999801072 ], [ -97.080459000032931, 32.70613899961706 ], [ -97.071833999976619, 32.706040999908133 ] ] ] } },
{ "type": "Feature", "id": 211, "properties": { "pctwhite": 82.837529, "pctrep": 68.961494, "R": 591, "D": 253, "CNTYVTD": "4392028", "rmapshaperid": 205, "id": 176 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.166802999874875, 32.658329999737148 ], [ -97.166882999878027, 32.656051999668058 ], [ -97.158464000430413, 32.650007999648167 ], [ -97.157651000307069, 32.6486109997848 ], [ -97.175545999742212, 32.649201999557192 ], [ -97.175516999729311, 32.658937999895493 ], [ -97.173684999788833, 32.658405999659095 ], [ -97.166802999874875, 32.658329999737148 ] ] ] } },
{ "type": "Feature", "id": 212, "properties": { "pctwhite": 72.571529, "pctrep": 69.283569, "R": 1615, "D": 686, "CNTYVTD": "4392029", "rmapshaperid": 206, "id": 177 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.204866000373642, 32.667124000073308 ], [ -97.206703999931335, 32.664104000272765 ], [ -97.206848999834506, 32.656184000114848 ], [ -97.202454000455944, 32.656216000408641 ], [ -97.202559999686628, 32.653975999564622 ], [ -97.197765999878854, 32.653902000348857 ], [ -97.198079000051948, 32.651514999744983 ], [ -97.200112999995127, 32.649158000395452 ], [ -97.196160999791587, 32.649162999915568 ], [ -97.196058000501196, 32.646733999637803 ], [ -97.189003999834753, 32.646212000174806 ], [ -97.188848999856603, 32.64092100008228 ], [ -97.19574200035234, 32.640588000152654 ], [ -97.195660000399599, 32.637627000309621 ], [ -97.197636000127076, 32.636114000086572 ], [ -97.20269300005188, 32.636141999668986 ], [ -97.202819999542399, 32.634005000226878 ], [ -97.198849999503906, 32.62937599975826 ], [ -97.202761999944073, 32.62909500017922 ], [ -97.202798000155795, 32.631393000047588 ], [ -97.219033999665612, 32.630849000007814 ], [ -97.219107000421516, 32.635429000402326 ], [ -97.225264999830927, 32.635460999925684 ], [ -97.225233000508183, 32.633082999651307 ], [ -97.234180000287239, 32.633075999565072 ], [ -97.234131000256497, 32.646424999578734 ], [ -97.232993999748544, 32.643190999680193 ], [ -97.230070999505713, 32.64341900008224 ], [ -97.227659999923304, 32.644892999640483 ], [ -97.228890999538933, 32.647072000386558 ], [ -97.224815999740912, 32.647104000004937 ], [ -97.224751000217381, 32.649867000448168 ], [ -97.22611499954543, 32.651139000385477 ], [ -97.226046000135966, 32.659338999769496 ], [ -97.224257999807634, 32.660259999791805 ], [ -97.216338000133391, 32.660412999868285 ], [ -97.216327999600878, 32.655875999655883 ], [ -97.211692999731767, 32.656216000191854 ], [ -97.211617999926304, 32.65995899994217 ], [ -97.208989999496026, 32.65971300001975 ], [ -97.208227999567313, 32.666951999928898 ], [ -97.204866000373642, 32.667124000073308 ] ] ] } },
{ "type": "Feature", "id": 213, "properties": { "pctwhite": 29.406850, "pctrep": 27.644870, "R": 520, "D": 1337, "CNTYVTD": "4392030", "rmapshaperid": 207, "id": 178 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.115199999659765, 32.65523699985345 ], [ -97.11520899980377, 32.653384999917655 ], [ -97.115794000445845, 32.648497000255162 ], [ -97.115545000214723, 32.644714000289447 ], [ -97.122351000274875, 32.644813000221674 ], [ -97.133468000193972, 32.644936999914073 ], [ -97.134252000168189, 32.648570000352343 ], [ -97.13489300047442, 32.651284999606062 ], [ -97.134696000513358, 32.65540999969506 ], [ -97.115199999659765, 32.65523699985345 ] ] ] } },
{ "type": "Feature", "id": 214, "properties": { "pctwhite": 28.041489, "pctrep": 31.089179, "R": 882, "D": 1935, "CNTYVTD": "4392031", "rmapshaperid": 208, "id": 179 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.083097999836752, 32.586564999983842 ], [ -97.090483000080127, 32.598087000154003 ], [ -97.08914599963073, 32.598720000167866 ], [ -97.091159000395109, 32.602109000122823 ], [ -97.093248999569283, 32.604013999725098 ], [ -97.097031999741617, 32.610935000142057 ], [ -97.097520000117726, 32.613313999912442 ], [ -97.099743000334271, 32.616429000365592 ], [ -97.098612000042777, 32.619337000017424 ], [ -97.09837100013749, 32.623116999642512 ], [ -97.075142000236468, 32.634392000249882 ], [ -97.074083000467354, 32.63283799967521 ], [ -97.070340000353355, 32.62701800021734 ], [ -97.070200000257884, 32.626789000153664 ], [ -97.075797999818121, 32.619192000204997 ], [ -97.076875999724649, 32.616265999791622 ], [ -97.077375999560147, 32.611339999976792 ], [ -97.078516000212318, 32.590186999576325 ], [ -97.08310200004972, 32.588365000404956 ], [ -97.083097999836752, 32.586564999983842 ] ] ] } },
{ "type": "Feature", "id": 215, "properties": { "pctwhite": 53.552015, "pctrep": 63.578565, "R": 700, "D": 387, "CNTYVTD": "4392033", "rmapshaperid": 209, "id": 180 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.087417000162844, 32.562139000263016 ], [ -97.082454000386917, 32.558981999639904 ], [ -97.079339000322378, 32.554495000087172 ], [ -97.080015999676718, 32.55233099972579 ], [ -97.078009000270598, 32.549267000387225 ], [ -97.099597999873907, 32.549750999744937 ], [ -97.107883000452063, 32.549562999915892 ], [ -97.129786000156344, 32.549813000326537 ], [ -97.140571000333651, 32.556309000339198 ], [ -97.142275000187297, 32.559330999701636 ], [ -97.141620000092814, 32.566124999889567 ], [ -97.142957999663608, 32.571657999579109 ], [ -97.144023999632864, 32.573645000136011 ], [ -97.138299000393459, 32.576698000141413 ], [ -97.133151000111184, 32.574944999746222 ], [ -97.134249999996911, 32.568980000210679 ], [ -97.135604000267762, 32.565545000416542 ], [ -97.134992000422784, 32.563690000022945 ], [ -97.130721999470694, 32.565013000356537 ], [ -97.121461999716516, 32.566185999636978 ], [ -97.109862000500996, 32.571123000062961 ], [ -97.1076159995431, 32.571300999953579 ], [ -97.102974000425164, 32.570042999850614 ], [ -97.098971999516976, 32.568078000197787 ], [ -97.093297999635908, 32.570487000234621 ], [ -97.087417000162844, 32.562139000263016 ] ] ] } },
{ "type": "Feature", "id": 216, "properties": { "pctwhite": 46.074965, "pctrep": 42.760690, "R": 570, "D": 719, "CNTYVTD": "4392052", "rmapshaperid": 210, "id": 181 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.102873999548081, 32.721059999693395 ], [ -97.12332599995672, 32.721212999561033 ], [ -97.131922000255088, 32.721245999890257 ], [ -97.13187299986005, 32.732891000393373 ], [ -97.131548000235625, 32.736195999892558 ], [ -97.131569999492612, 32.736524999798768 ], [ -97.123338000446225, 32.738932999728263 ], [ -97.119719000243009, 32.739076999617332 ], [ -97.114543999909941, 32.739074000018505 ], [ -97.114594999986906, 32.730700999763997 ], [ -97.123658000314904, 32.729352000061994 ], [ -97.123657000102369, 32.726055000092067 ], [ -97.117802999511213, 32.725955000325236 ], [ -97.115348000383364, 32.727187000265126 ], [ -97.111695000173029, 32.726920000046348 ], [ -97.106477999852274, 32.728349999551639 ], [ -97.106491999655447, 32.726440999914068 ], [ -97.103118000467518, 32.723028000064026 ], [ -97.102873999548081, 32.721059999693395 ] ] ] } },
{ "type": "Feature", "id": 217, "properties": { "pctwhite": 72.385747, "pctrep": 61.667886, "R": 843, "D": 498, "CNTYVTD": "4392055", "rmapshaperid": 211, "id": 182 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.106437999721464, 32.777809999845033 ], [ -97.110592999979545, 32.77695700027288 ], [ -97.114170999880571, 32.777382000107579 ], [ -97.114153999665263, 32.774152999549194 ], [ -97.117337000234187, 32.773310999660119 ], [ -97.122911999961715, 32.773320999812235 ], [ -97.123023999887522, 32.779177999560822 ], [ -97.125474000113698, 32.779127999974797 ], [ -97.119460999920278, 32.782193000197289 ], [ -97.115971000495321, 32.782333000444929 ], [ -97.110719000284206, 32.784932999559608 ], [ -97.108139999875931, 32.785251999808473 ], [ -97.106434000023242, 32.780901000195165 ], [ -97.106437999721464, 32.777809999845033 ] ] ] } },
{ "type": "Feature", "id": 218, "properties": { "pctwhite": 36.363636, "pctrep": 100.000000, "R": 1, "D": 0, "CNTYVTD": "4392058", "rmapshaperid": 212, "id": 183 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.149137999747296, 32.734062999893588 ], [ -97.149136000253563, 32.735944999670004 ], [ -97.138209999810613, 32.735851999545076 ], [ -97.131569999492612, 32.736524999798768 ], [ -97.131548000235625, 32.736195999892558 ], [ -97.137015000009669, 32.734875999998522 ], [ -97.149137999747296, 32.734062999893588 ] ] ] } },
{ "type": "Feature", "id": 219, "properties": { "pctwhite": 50.799290, "pctrep": 53.697749, "R": 167, "D": 139, "CNTYVTD": "4392100", "rmapshaperid": 213, "id": 184 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.097416999723237, 32.725934999971138 ], [ -97.097332999782182, 32.735555999898324 ], [ -97.095655999557195, 32.732480999986628 ], [ -97.09017500024737, 32.735404999629949 ], [ -97.087084000053849, 32.731399000114436 ], [ -97.087132000277464, 32.726243999939129 ], [ -97.090453999961696, 32.725029000286746 ], [ -97.09374300014602, 32.725904000184464 ], [ -97.097416999723237, 32.725934999971138 ] ] ] } },
{ "type": "Feature", "id": 220, "properties": { "pctwhite": 85.588972, "pctrep": 75.929978, "R": 1041, "D": 311, "CNTYVTD": "4392112", "rmapshaperid": 214, "id": 185 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.140780999884683, 32.721298999569605 ], [ -97.140898999888364, 32.720292000074245 ], [ -97.148510000347301, 32.720246000055447 ], [ -97.149132000358179, 32.719637999790088 ], [ -97.149185000147412, 32.710095999705381 ], [ -97.141266999510847, 32.710222999581333 ], [ -97.138034999545539, 32.709093999787207 ], [ -97.138030999991486, 32.706660000133482 ], [ -97.149196000227505, 32.706791999682807 ], [ -97.151238000197196, 32.707970999759411 ], [ -97.151197000367446, 32.710455999802171 ], [ -97.161103999782185, 32.710372000029906 ], [ -97.165968999501416, 32.711028999575682 ], [ -97.166269000365006, 32.721444000023226 ], [ -97.149127000216055, 32.721344000049314 ], [ -97.149132999820608, 32.721753000138037 ], [ -97.140780999884683, 32.721298999569605 ] ] ] } },
{ "type": "Feature", "id": 221, "properties": { "pctwhite": 14.609929, "pctrep": 26.208651, "R": 103, "D": 285, "CNTYVTD": "4392134", "rmapshaperid": 215, "id": 186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.080459000032931, 32.70613899961706 ], [ -97.080374000234997, 32.710010999905116 ], [ -97.072563000467639, 32.711899999653269 ], [ -97.063021999566658, 32.712203000087825 ], [ -97.062961000108018, 32.706029999891086 ], [ -97.071833999976619, 32.706040999908133 ], [ -97.080459000032931, 32.70613899961706 ] ] ] } },
{ "type": "Feature", "id": 222, "properties": { "pctwhite": 36.164384, "pctrep": 50.593824, "R": 213, "D": 196, "CNTYVTD": "4392143", "rmapshaperid": 216, "id": 187 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.097474000273223, 32.723000000134725 ], [ -97.097471000432449, 32.721013000032052 ], [ -97.097653000023755, 32.707971000196906 ], [ -97.107623999912306, 32.708006999933531 ], [ -97.105917999559239, 32.710722999649256 ], [ -97.103236000202273, 32.719197000195443 ], [ -97.101701000490536, 32.721046000253153 ], [ -97.099635999525432, 32.721014999979964 ], [ -97.097474000273223, 32.723000000134725 ] ] ] } },
{ "type": "Feature", "id": 223, "properties": { "pctwhite": 17.936583, "pctrep": 35.809019, "R": 270, "D": 473, "CNTYVTD": "4392145", "rmapshaperid": 217, "id": 188 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.062609000086056, 32.725707000077414 ], [ -97.066518000134664, 32.725686999705836 ], [ -97.069962000097519, 32.724866999830006 ], [ -97.077880000391019, 32.72498700012396 ], [ -97.080261999601987, 32.726335000371236 ], [ -97.080209999759987, 32.735249999623491 ], [ -97.06708800021471, 32.735197000131357 ], [ -97.063099999947838, 32.735642000403246 ], [ -97.062600999677528, 32.735698000038539 ], [ -97.062609000086056, 32.725707000077414 ] ] ] } },
{ "type": "Feature", "id": 224, "properties": { "pctwhite": 77.898158, "pctrep": 62.666667, "R": 470, "D": 261, "CNTYVTD": "4392147", "rmapshaperid": 218, "id": 189 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.12332599995672, 32.721212999561033 ], [ -97.123336000076307, 32.708916000179137 ], [ -97.131945999894299, 32.709026000433177 ], [ -97.131922000255088, 32.721245999890257 ], [ -97.12332599995672, 32.721212999561033 ] ] ] } },
{ "type": "Feature", "id": 225, "properties": { "pctwhite": 17.516675, "pctrep": 32.744186, "R": 352, "D": 708, "CNTYVTD": "4392148", "rmapshaperid": 219, "id": 190 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.063447000256303, 32.759523000271116 ], [ -97.06277700037036, 32.748956000026332 ], [ -97.068528000477457, 32.747991000135521 ], [ -97.076016999994692, 32.74801300003012 ], [ -97.079764000532734, 32.749744000040174 ], [ -97.083777999566124, 32.744393000038713 ], [ -97.083578999924882, 32.741602000316568 ], [ -97.091464000078631, 32.740360999755381 ], [ -97.097388000278627, 32.73894799988107 ], [ -97.09740100035296, 32.740087999690189 ], [ -97.103238999831561, 32.740239999851198 ], [ -97.103128999797818, 32.742867999955195 ], [ -97.108145000062891, 32.742802999936885 ], [ -97.110620000135938, 32.740957999658264 ], [ -97.111306999946791, 32.739159999612937 ], [ -97.112931999889042, 32.739155999750714 ], [ -97.112895999930757, 32.742837999758414 ], [ -97.114480999461975, 32.742803000116481 ], [ -97.115879000464801, 32.742859000379362 ], [ -97.114036000218675, 32.744964000124057 ], [ -97.113715000289872, 32.753454999910588 ], [ -97.114455000059735, 32.757454999799876 ], [ -97.118080000302939, 32.756188999634006 ], [ -97.120128000282932, 32.757485999874682 ], [ -97.123063000409587, 32.757474999728117 ], [ -97.12307899989878, 32.759833000308198 ], [ -97.114402000200755, 32.759886000188679 ], [ -97.105013999609071, 32.759617999661963 ], [ -97.104858000167496, 32.757505999863831 ], [ -97.102319999981219, 32.757072000088783 ], [ -97.102906000366048, 32.754334000083269 ], [ -97.106829999747134, 32.750004999919184 ], [ -97.10684600010191, 32.748073999919249 ], [ -97.102797999748063, 32.748030000204622 ], [ -97.102816999690162, 32.745994999650939 ], [ -97.099147000508879, 32.745972999603659 ], [ -97.099584000155232, 32.754119999796281 ], [ -97.097305999678483, 32.754087000213659 ], [ -97.09736700047155, 32.750003000115001 ], [ -97.089584999652857, 32.750546000074856 ], [ -97.088447000277597, 32.752664999930573 ], [ -97.088555999856993, 32.759104000101075 ], [ -97.086220999761608, 32.759579000149913 ], [ -97.063447000256303, 32.759523000271116 ] ] ] } },
{ "type": "Feature", "id": 226, "properties": { "pctwhite": 62.507937, "pctrep": 62.866894, "R": 921, "D": 520, "CNTYVTD": "4392158", "rmapshaperid": 220, "id": 191 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.034933999763993, 32.779929000401609 ], [ -97.035169000459504, 32.759657999877547 ], [ -97.037086000484294, 32.759652000165218 ], [ -97.037113999603676, 32.759649999869495 ], [ -97.037173000118216, 32.761360000323492 ], [ -97.038476000024644, 32.761389000016273 ], [ -97.045587999838588, 32.761536000256839 ], [ -97.045599000027693, 32.764301999928918 ], [ -97.059592999482362, 32.76433100010852 ], [ -97.062900000428925, 32.764338999995907 ], [ -97.061766999768352, 32.773559999583163 ], [ -97.062323000245271, 32.773592000160001 ], [ -97.062665999908617, 32.77367699999516 ], [ -97.062643999991209, 32.779030000349714 ], [ -97.062525999936483, 32.779026999654249 ], [ -97.050217999556438, 32.778913999607141 ], [ -97.046553000482973, 32.779887999744552 ], [ -97.034933999763993, 32.779929000401609 ] ] ] } },
{ "type": "Feature", "id": 227, "properties": { "pctwhite": 35.684748, "pctrep": 34.890656, "R": 351, "D": 619, "CNTYVTD": "4392161", "rmapshaperid": 221, "id": 192 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.097388000278627, 32.73894799988107 ], [ -97.097332999782182, 32.735555999898324 ], [ -97.097416999723237, 32.725934999971138 ], [ -97.097474000273223, 32.723000000134725 ], [ -97.099635999525432, 32.721014999979964 ], [ -97.101701000490536, 32.721046000253153 ], [ -97.102873999548081, 32.721059999693395 ], [ -97.103118000467518, 32.723028000064026 ], [ -97.106491999655447, 32.726440999914068 ], [ -97.106477999852274, 32.728349999551639 ], [ -97.111695000173029, 32.726920000046348 ], [ -97.115348000383364, 32.727187000265126 ], [ -97.117802999511213, 32.725955000325236 ], [ -97.123657000102369, 32.726055000092067 ], [ -97.123658000314904, 32.729352000061994 ], [ -97.114594999986906, 32.730700999763997 ], [ -97.114543999909941, 32.739074000018505 ], [ -97.112931999889042, 32.739155999750714 ], [ -97.111306999946791, 32.739159999612937 ], [ -97.097388000278627, 32.73894799988107 ] ] ] } },
{ "type": "Feature", "id": 228, "properties": { "pctwhite": 39.182652, "pctrep": 49.141150, "R": 658, "D": 650, "CNTYVTD": "4392168", "rmapshaperid": 222, "id": 193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.101701000490536, 32.721046000253153 ], [ -97.103236000202273, 32.719197000195443 ], [ -97.105917999559239, 32.710722999649256 ], [ -97.107623999912306, 32.708006999933531 ], [ -97.112670000053669, 32.708062000354332 ], [ -97.114546999912136, 32.708153999588724 ], [ -97.114710999972132, 32.70816800036404 ], [ -97.123336000076307, 32.708916000179137 ], [ -97.12332599995672, 32.721212999561033 ], [ -97.102873999548081, 32.721059999693395 ], [ -97.101701000490536, 32.721046000253153 ] ] ] } },
{ "type": "Feature", "id": 229, "properties": { "pctwhite": 11.527378, "pctrep": 31.239389, "R": 184, "D": 400, "CNTYVTD": "4392169", "rmapshaperid": 223, "id": 194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.080374000234997, 32.710010999905116 ], [ -97.080298000065895, 32.720899999726264 ], [ -97.062700999818361, 32.720756999872599 ], [ -97.063021999566658, 32.712203000087825 ], [ -97.072563000467639, 32.711899999653269 ], [ -97.080374000234997, 32.710010999905116 ] ] ] } },
{ "type": "Feature", "id": 230, "properties": { "pctwhite": 80.242547, "pctrep": 66.666667, "R": 1228, "D": 573, "CNTYVTD": "4392171", "rmapshaperid": 224, "id": 195 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.149132999820608, 32.721753000138037 ], [ -97.149127000216055, 32.721344000049314 ], [ -97.166269000365006, 32.721444000023226 ], [ -97.166302999803179, 32.731018999735426 ], [ -97.168101999890695, 32.731495000102221 ], [ -97.15291300010422, 32.733795000179988 ], [ -97.149137999747296, 32.734062999893588 ], [ -97.149132999820608, 32.721753000138037 ] ] ] } },
{ "type": "Feature", "id": 231, "properties": { "pctwhite": 81.302170, "pctrep": 74.732620, "R": 559, "D": 179, "CNTYVTD": "4392173", "rmapshaperid": 225, "id": 196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.20780100004896, 32.725149999880941 ], [ -97.204828999584677, 32.725419000220811 ], [ -97.19282500036077, 32.717205000215834 ], [ -97.194341000182533, 32.714305999823722 ], [ -97.197834000134975, 32.712720999929907 ], [ -97.198651000400474, 32.713698999874239 ], [ -97.202263000316066, 32.712483999989644 ], [ -97.203572000501694, 32.711938000444079 ], [ -97.203437000078566, 32.707898000250751 ], [ -97.200536999825587, 32.702913000233991 ], [ -97.201432999543329, 32.697284000002185 ], [ -97.19911399951549, 32.697368999671859 ], [ -97.199137999585787, 32.692609999610603 ], [ -97.200155999660865, 32.689672999947327 ], [ -97.209891999969159, 32.689695000324029 ], [ -97.216837999532828, 32.686451999628311 ], [ -97.217628000354168, 32.688560999944464 ], [ -97.221665000301641, 32.688767999840366 ], [ -97.222462000345971, 32.685450000397978 ], [ -97.223821000044467, 32.683937000344805 ], [ -97.225080999816555, 32.6800500004261 ], [ -97.22773000017979, 32.675063999711121 ], [ -97.229603999891523, 32.673774999756439 ], [ -97.232442000291343, 32.673824000239719 ], [ -97.233162000330182, 32.671306000001671 ], [ -97.231884000383616, 32.669606999716713 ], [ -97.233573999614904, 32.671219999548008 ], [ -97.232224999492189, 32.674387000311562 ], [ -97.23183200042088, 32.674598000372093 ], [ -97.229757000226186, 32.677297999666798 ], [ -97.230171999966501, 32.681610000047399 ], [ -97.232182000440048, 32.682835999564936 ], [ -97.231373999575268, 32.685282999846201 ], [ -97.233512000146987, 32.692963000133624 ], [ -97.231644999639983, 32.695482000040478 ], [ -97.228001999599059, 32.695672000412685 ], [ -97.225203999716939, 32.696856999940451 ], [ -97.222412999709903, 32.699281000216835 ], [ -97.220451999492639, 32.697183000141088 ], [ -97.218764000318046, 32.697150000098269 ], [ -97.216559999464806, 32.700981000063571 ], [ -97.218612000191627, 32.703010000406074 ], [ -97.216363999746605, 32.707039999921939 ], [ -97.221780999710532, 32.706325000081208 ], [ -97.221322000496556, 32.707700999605805 ], [ -97.217341999663333, 32.709192000414305 ], [ -97.21583099969159, 32.711668000103018 ], [ -97.219908999775029, 32.713368999560871 ], [ -97.219823000183069, 32.713848000401228 ], [ -97.219403999508515, 32.715425000239229 ], [ -97.21901600042078, 32.715946999863689 ], [ -97.215338999999446, 32.715547000402033 ], [ -97.213105999754163, 32.71867100015259 ], [ -97.212309000131043, 32.719929000158245 ], [ -97.216733999716155, 32.724466000395836 ], [ -97.215356999841035, 32.725378000377539 ], [ -97.210086999518566, 32.721556000278859 ], [ -97.20780100004896, 32.725149999880941 ] ] ] } },
{ "type": "Feature", "id": 232, "properties": { "pctwhite": 65.482823, "pctrep": 60.365854, "R": 990, "D": 625, "CNTYVTD": "4392174", "rmapshaperid": 226, "id": 197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.138705999793089, 32.692163000113197 ], [ -97.138560000183588, 32.689531999902329 ], [ -97.134220999810523, 32.689450000279024 ], [ -97.132879000523374, 32.690938000342861 ], [ -97.129581000196168, 32.689557000169557 ], [ -97.134102000122539, 32.681381000103904 ], [ -97.135191000220132, 32.678677000323155 ], [ -97.134539000341206, 32.675333999773365 ], [ -97.134725000333589, 32.675312999779429 ], [ -97.141773000363386, 32.674450000272486 ], [ -97.149495000109297, 32.674394000394017 ], [ -97.149586000224886, 32.677764000106244 ], [ -97.149452000279624, 32.688463999718088 ], [ -97.148227000332909, 32.69220899984996 ], [ -97.138705999793089, 32.692163000113197 ] ] ] } },
{ "type": "Feature", "id": 233, "properties": { "pctwhite": 10.505319, "pctrep": 8.713693, "R": 42, "D": 439, "CNTYVTD": "4392180", "rmapshaperid": 227, "id": 198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.036096000124417, 32.720596000285489 ], [ -97.045794000436857, 32.720621000392498 ], [ -97.045690999678484, 32.728125000035114 ], [ -97.056311000263563, 32.728115000141123 ], [ -97.056363000196086, 32.735227000048702 ], [ -97.049349000465256, 32.735110999805556 ], [ -97.049320999560024, 32.737426000165243 ], [ -97.046023999983277, 32.73783700012887 ], [ -97.045869999621829, 32.739562000324177 ], [ -97.041329000056322, 32.739181000314581 ], [ -97.035596999873277, 32.739701000292996 ], [ -97.036096000124417, 32.720596000285489 ] ] ] } },
{ "type": "Feature", "id": 234, "properties": { "pctwhite": 75.306069, "pctrep": 61.651584, "R": 1090, "D": 635, "CNTYVTD": "4392181", "rmapshaperid": 228, "id": 199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.131922000255088, 32.721245999890257 ], [ -97.140780999884683, 32.721298999569605 ], [ -97.149132999820608, 32.721753000138037 ], [ -97.149137999747296, 32.734062999893588 ], [ -97.137015000009669, 32.734875999998522 ], [ -97.131548000235625, 32.736195999892558 ], [ -97.13187299986005, 32.732891000393373 ], [ -97.131922000255088, 32.721245999890257 ] ] ] } },
{ "type": "Feature", "id": 235, "properties": { "pctwhite": 47.416974, "pctrep": 47.159091, "R": 83, "D": 89, "CNTYVTD": "4392190", "rmapshaperid": 229, "id": 200 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.115879000464801, 32.742859000379362 ], [ -97.116920999982511, 32.742866000289148 ], [ -97.117637000310467, 32.750151999919211 ], [ -97.123242000294312, 32.750152000161485 ], [ -97.123063000409587, 32.757474999728117 ], [ -97.120128000282932, 32.757485999874682 ], [ -97.118080000302939, 32.756188999634006 ], [ -97.114455000059735, 32.757454999799876 ], [ -97.113715000289872, 32.753454999910588 ], [ -97.114036000218675, 32.744964000124057 ], [ -97.115879000464801, 32.742859000379362 ] ] ] } },
{ "type": "Feature", "id": 236, "properties": { "pctwhite": 79.223881, "pctrep": 69.416873, "R": 1119, "D": 473, "CNTYVTD": "4392205", "rmapshaperid": 230, "id": 201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.131922000255088, 32.721245999890257 ], [ -97.131945999894299, 32.709026000433177 ], [ -97.138034999545539, 32.709093999787207 ], [ -97.141266999510847, 32.710222999581333 ], [ -97.149185000147412, 32.710095999705381 ], [ -97.149132000358179, 32.719637999790088 ], [ -97.148510000347301, 32.720246000055447 ], [ -97.140898999888364, 32.720292000074245 ], [ -97.140780999884683, 32.721298999569605 ], [ -97.131922000255088, 32.721245999890257 ] ] ] } },
{ "type": "Feature", "id": 237, "properties": { "pctwhite": 23.773434, "pctrep": 46.764706, "R": 159, "D": 169, "CNTYVTD": "4392210", "rmapshaperid": 231, "id": 202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.062609000086056, 32.725707000077414 ], [ -97.062700999818361, 32.720756999872599 ], [ -97.080298000065895, 32.720899999726264 ], [ -97.080261999601987, 32.726335000371236 ], [ -97.077880000391019, 32.72498700012396 ], [ -97.069962000097519, 32.724866999830006 ], [ -97.066518000134664, 32.725686999705836 ], [ -97.062609000086056, 32.725707000077414 ] ] ] } },
{ "type": "Feature", "id": 238, "properties": { "pctwhite": 42.325654, "pctrep": 42.076503, "R": 693, "D": 918, "CNTYVTD": "4392217", "rmapshaperid": 232, "id": 203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.131569999492612, 32.736524999798768 ], [ -97.138209999810613, 32.735851999545076 ], [ -97.149136000253563, 32.735944999670004 ], [ -97.149076999751273, 32.743150000136872 ], [ -97.143092000514372, 32.743451000044026 ], [ -97.140460000175338, 32.742856999934524 ], [ -97.140360000036921, 32.7502860004372 ], [ -97.139032999768801, 32.754506000102005 ], [ -97.136123000269052, 32.756314999934041 ], [ -97.136650000122742, 32.759897000085552 ], [ -97.131584000155769, 32.759922999908085 ], [ -97.131844000328385, 32.739044000339689 ], [ -97.131569999492612, 32.736524999798768 ] ] ] } },
{ "type": "Feature", "id": 239, "properties": { "pctwhite": 65.643994, "pctrep": 61.371630, "R": 1047, "D": 633, "CNTYVTD": "4392219", "rmapshaperid": 233, "id": 204 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.216837999532828, 32.686451999628311 ], [ -97.218288999818384, 32.683217000050405 ], [ -97.218282000244258, 32.678964000036977 ], [ -97.217172999765893, 32.669449000009401 ], [ -97.219515999675451, 32.66817000009322 ], [ -97.223359000351877, 32.667956999942803 ], [ -97.231465999949336, 32.668113000068637 ], [ -97.231636999836439, 32.669307999982522 ], [ -97.231884000383616, 32.669606999716713 ], [ -97.233162000330182, 32.671306000001671 ], [ -97.232442000291343, 32.673824000239719 ], [ -97.229603999891523, 32.673774999756439 ], [ -97.22773000017979, 32.675063999711121 ], [ -97.225080999816555, 32.6800500004261 ], [ -97.223821000044467, 32.683937000344805 ], [ -97.222462000345971, 32.685450000397978 ], [ -97.221665000301641, 32.688767999840366 ], [ -97.217628000354168, 32.688560999944464 ], [ -97.216837999532828, 32.686451999628311 ] ] ] } },
{ "type": "Feature", "id": 240, "properties": { "pctwhite": 74.562990, "pctrep": 66.685457, "R": 1183, "D": 561, "CNTYVTD": "4392220", "rmapshaperid": 234, "id": 205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.171991000295236, 32.706766999749576 ], [ -97.17925000022683, 32.706870000313849 ], [ -97.190855999978965, 32.707609999815269 ], [ -97.196244999669517, 32.708371000006743 ], [ -97.202263000316066, 32.712483999989644 ], [ -97.198651000400474, 32.713698999874239 ], [ -97.197834000134975, 32.712720999929907 ], [ -97.194341000182533, 32.714305999823722 ], [ -97.19282500036077, 32.717205000215834 ], [ -97.204828999584677, 32.725419000220811 ], [ -97.20780100004896, 32.725149999880941 ], [ -97.207237999497579, 32.727726999732596 ], [ -97.202042999575568, 32.727830999781034 ], [ -97.198809999582423, 32.728323999909286 ], [ -97.196773000491689, 32.728347000351903 ], [ -97.179444999897669, 32.730663000239865 ], [ -97.169423999771141, 32.731497999695485 ], [ -97.173721999759053, 32.726516999769672 ], [ -97.172376000526725, 32.716745000088487 ], [ -97.172890999915154, 32.712303000278112 ], [ -97.170473999760233, 32.708817999722854 ], [ -97.171991000295236, 32.706766999749576 ] ] ] } },
{ "type": "Feature", "id": 241, "properties": { "pctwhite": 55.632607, "pctrep": 56.252239, "R": 1570, "D": 1188, "CNTYVTD": "4392221", "rmapshaperid": 235, "id": 206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.147245000536728, 32.597647999861948 ], [ -97.144462000250144, 32.602555999817689 ], [ -97.142367999696603, 32.611062999585243 ], [ -97.125846000157182, 32.610936999716557 ], [ -97.119781999594579, 32.613540000342645 ], [ -97.117533000530898, 32.610246999667801 ], [ -97.116415999777857, 32.608227000161897 ], [ -97.115626999967887, 32.60663599972343 ], [ -97.121330000181516, 32.603772000157818 ], [ -97.131407999545303, 32.598931000149506 ], [ -97.143578000494841, 32.593125000335725 ], [ -97.147245000536728, 32.597647999861948 ] ] ] } },
{ "type": "Feature", "id": 242, "properties": { "pctwhite": 76.936698, "pctrep": 75.755343, "R": 1028, "D": 305, "CNTYVTD": "4392223", "rmapshaperid": 236, "id": 207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.149196000227505, 32.706791999682807 ], [ -97.149399000499486, 32.692217000274354 ], [ -97.148227000332909, 32.69220899984996 ], [ -97.149452000279624, 32.688463999718088 ], [ -97.149586000224886, 32.677764000106244 ], [ -97.155715000378919, 32.678017999628551 ], [ -97.159927000036859, 32.680162999883692 ], [ -97.164370999980079, 32.680176999854133 ], [ -97.164313000017444, 32.690455000161272 ], [ -97.165965000266382, 32.691650999874881 ], [ -97.166463999890354, 32.697729999581611 ], [ -97.16138100038728, 32.697726000243954 ], [ -97.16108600035939, 32.706818000233355 ], [ -97.161103999782185, 32.710372000029906 ], [ -97.151197000367446, 32.710455999802171 ], [ -97.151238000197196, 32.707970999759411 ], [ -97.149196000227505, 32.706791999682807 ] ] ] } },
{ "type": "Feature", "id": 243, "properties": { "pctwhite": 47.238507, "pctrep": 42.440318, "R": 480, "D": 634, "CNTYVTD": "4392224", "rmapshaperid": 237, "id": 208 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.083079999683662, 32.773192000313237 ], [ -97.085342000249184, 32.773022999921707 ], [ -97.091756000065814, 32.775305000282884 ], [ -97.097072999669678, 32.77533499963571 ], [ -97.096880000438432, 32.778500999602286 ], [ -97.095348999947944, 32.784488999568623 ], [ -97.092495999972627, 32.783955000223806 ], [ -97.08675199963487, 32.780779000237835 ], [ -97.083062000029656, 32.776980999849549 ], [ -97.083947000505773, 32.775028999561329 ], [ -97.083079999683662, 32.773192000313237 ] ] ] } },
{ "type": "Feature", "id": 244, "properties": { "pctwhite": 9.859866, "pctrep": 22.222222, "R": 156, "D": 538, "CNTYVTD": "4392225", "rmapshaperid": 238, "id": 209 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.045794000436857, 32.720621000392498 ], [ -97.047482000244983, 32.720632999714844 ], [ -97.061945999553046, 32.720770999861578 ], [ -97.062275999926129, 32.724907000126997 ], [ -97.062319000441562, 32.735717999882226 ], [ -97.049320999560024, 32.737426000165243 ], [ -97.049349000465256, 32.735110999805556 ], [ -97.056363000196086, 32.735227000048702 ], [ -97.056311000263563, 32.728115000141123 ], [ -97.045690999678484, 32.728125000035114 ], [ -97.045794000436857, 32.720621000392498 ] ] ] } },
{ "type": "Feature", "id": 245, "properties": { "pctwhite": 23.830138, "pctrep": 37.394958, "R": 356, "D": 585, "CNTYVTD": "4392226", "rmapshaperid": 239, "id": 210 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.10675800002241, 32.70106199977684 ], [ -97.106723999518522, 32.700280000062598 ], [ -97.097764999923569, 32.700190000272272 ], [ -97.093619999494209, 32.700905000181272 ], [ -97.093639999735302, 32.698593999927397 ], [ -97.096998000280905, 32.698616000237756 ], [ -97.097015999718934, 32.694326999786163 ], [ -97.093934999736391, 32.695934999646255 ], [ -97.090346000132499, 32.696699999851909 ], [ -97.091547999687961, 32.692253999648123 ], [ -97.09158100050071, 32.691661999896702 ], [ -97.09783600045823, 32.691736000345344 ], [ -97.10500700023934, 32.691786000007447 ], [ -97.108634000057847, 32.691037000235866 ], [ -97.115008999751311, 32.690965000178522 ], [ -97.114863000024044, 32.703295999647871 ], [ -97.114647999910275, 32.706186999991232 ], [ -97.113427000451466, 32.706025999656816 ], [ -97.112702000081967, 32.702012999578628 ], [ -97.111557000508782, 32.701136000259538 ], [ -97.10675800002241, 32.70106199977684 ] ] ] } },
{ "type": "Feature", "id": 246, "properties": { "pctwhite": 80.600293, "pctrep": 69.940828, "R": 1182, "D": 486, "CNTYVTD": "4392228", "rmapshaperid": 240, "id": 211 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.131511999867271, 32.779109000336746 ], [ -97.131584000155769, 32.759922999908085 ], [ -97.136650000122742, 32.759897000085552 ], [ -97.149731999529678, 32.760153000318766 ], [ -97.149240999500407, 32.763758000310823 ], [ -97.149408000442321, 32.767736000438305 ], [ -97.152699000340832, 32.76784300012681 ], [ -97.150621999558425, 32.770881999964004 ], [ -97.148801000270197, 32.771368999785452 ], [ -97.146507000469441, 32.771393000408956 ], [ -97.143821000294963, 32.773017999774083 ], [ -97.139497000068658, 32.773006000011598 ], [ -97.13940999981341, 32.779160999871394 ], [ -97.133570999631416, 32.77927500010356 ], [ -97.131511999867271, 32.779109000336746 ] ] ] } },
{ "type": "Feature", "id": 247, "properties": { "pctwhite": 61.902144, "pctrep": 58.333333, "R": 819, "D": 560, "CNTYVTD": "4392229", "rmapshaperid": 241, "id": 212 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.136875000287063, 32.706608999736453 ], [ -97.136864000143504, 32.699522999638702 ], [ -97.135246000446742, 32.697612000170466 ], [ -97.135075000165131, 32.692153999827568 ], [ -97.138705999793089, 32.692163000113197 ], [ -97.148227000332909, 32.69220899984996 ], [ -97.149399000499486, 32.692217000274354 ], [ -97.149196000227505, 32.706791999682807 ], [ -97.138030999991486, 32.706660000133482 ], [ -97.136875000287063, 32.706608999736453 ] ] ] } },
{ "type": "Feature", "id": 248, "properties": { "pctwhite": 22.325695, "pctrep": 38.264580, "R": 538, "D": 848, "CNTYVTD": "4392235", "rmapshaperid": 242, "id": 213 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.080459000032931, 32.70613899961706 ], [ -97.08075399954356, 32.691545999801072 ], [ -97.088344000346694, 32.691635999729328 ], [ -97.091547999687961, 32.692253999648123 ], [ -97.090346000132499, 32.696699999851909 ], [ -97.090317000109906, 32.700857000168348 ], [ -97.093619999494209, 32.700905000181272 ], [ -97.097764999923569, 32.700190000272272 ], [ -97.09771799951352, 32.703596999692444 ], [ -97.101753999764298, 32.704620999577081 ], [ -97.10527800014431, 32.70475400037877 ], [ -97.108396000379898, 32.703711000129566 ], [ -97.109021999568597, 32.705733000174739 ], [ -97.107623999912306, 32.708006999933531 ], [ -97.097653000023755, 32.707971000196906 ], [ -97.097668999866926, 32.706234999649773 ], [ -97.080459000032931, 32.70613899961706 ] ] ] } },
{ "type": "Feature", "id": 249, "properties": { "pctwhite": 83.543417, "pctrep": 70.232558, "R": 604, "D": 239, "CNTYVTD": "4392246", "rmapshaperid": 243, "id": 214 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.114153999665263, 32.774152999549194 ], [ -97.114402000200755, 32.759886000188679 ], [ -97.12307899989878, 32.759833000308198 ], [ -97.122911999961715, 32.773320999812235 ], [ -97.117337000234187, 32.773310999660119 ], [ -97.114153999665263, 32.774152999549194 ] ] ] } },
{ "type": "Feature", "id": 250, "properties": { "pctwhite": 60.000000, "pctrep": 74.509804, "R": 266, "D": 88, "CNTYVTD": "4392258", "rmapshaperid": 244, "id": 215 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.179345000380977, 32.582563000260883 ], [ -97.189221999996619, 32.577856999969129 ], [ -97.184608999640801, 32.575380999645446 ], [ -97.18333199957533, 32.57618299959158 ], [ -97.18060299954432, 32.57256399999909 ], [ -97.178023999552721, 32.570481000115613 ], [ -97.173777999523026, 32.568478999636397 ], [ -97.171163000282519, 32.569054999734831 ], [ -97.164801999542647, 32.565903999559644 ], [ -97.164290000404918, 32.564381999604436 ], [ -97.17198699994286, 32.563249000375514 ], [ -97.173752000495426, 32.564531000438748 ], [ -97.18283899972424, 32.559603999568118 ], [ -97.185458000152536, 32.562706999819156 ], [ -97.190921999503303, 32.5600699998122 ], [ -97.198151999577036, 32.570768999827713 ], [ -97.198450000441824, 32.575187000141931 ], [ -97.207231000334204, 32.58797799971056 ], [ -97.208318000063926, 32.590675999924848 ], [ -97.214158000340078, 32.590698999699335 ], [ -97.216631000270297, 32.592593000452752 ], [ -97.216655999541317, 32.598388000050619 ], [ -97.215393999880519, 32.599215000393471 ], [ -97.215369000506968, 32.607048999564896 ], [ -97.201377999850976, 32.606839999835763 ], [ -97.198222999963221, 32.60536999970288 ], [ -97.19241700029788, 32.60551400027483 ], [ -97.185214999691055, 32.609034000050535 ], [ -97.186457000468778, 32.597044999585052 ], [ -97.184944000205348, 32.588239999853528 ], [ -97.184025999920294, 32.586504999857951 ], [ -97.179345000380977, 32.582563000260883 ] ] ] } },
{ "type": "Feature", "id": 251, "properties": { "pctwhite": 76.952141, "pctrep": 76.965265, "R": 421, "D": 121, "CNTYVTD": "4392262", "rmapshaperid": 245, "id": 216 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.184588000409619, 32.611877000012164 ], [ -97.185214999691055, 32.609034000050535 ], [ -97.19241700029788, 32.60551400027483 ], [ -97.198222999963221, 32.60536999970288 ], [ -97.201377999850976, 32.606839999835763 ], [ -97.215369000506968, 32.607048999564896 ], [ -97.228377999518514, 32.607120999677996 ], [ -97.232461999764567, 32.607513999820689 ], [ -97.23405000004297, 32.609467000369811 ], [ -97.234283999747262, 32.610192999567666 ], [ -97.234180000287239, 32.633075999565072 ], [ -97.225233000508183, 32.633082999651307 ], [ -97.225264999830927, 32.635460999925684 ], [ -97.219107000421516, 32.635429000402326 ], [ -97.219033999665612, 32.630849000007814 ], [ -97.202798000155795, 32.631393000047588 ], [ -97.202761999944073, 32.62909500017922 ], [ -97.198849999503906, 32.62937599975826 ], [ -97.202819999542399, 32.634005000226878 ], [ -97.20269300005188, 32.636141999668986 ], [ -97.197636000127076, 32.636114000086572 ], [ -97.195660000399599, 32.637627000309621 ], [ -97.19574200035234, 32.640588000152654 ], [ -97.188848999856603, 32.64092100008228 ], [ -97.188889000373692, 32.63481699991118 ], [ -97.192813999945201, 32.634668999761985 ], [ -97.194557999638164, 32.63321400016585 ], [ -97.194747999958125, 32.621509999711471 ], [ -97.184588000409619, 32.611877000012164 ] ] ] } },
{ "type": "Feature", "id": 252, "properties": { "pctwhite": 24.638563, "pctrep": 40.572034, "R": 383, "D": 545, "CNTYVTD": "4392263", "rmapshaperid": 246, "id": 217 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.097653000023755, 32.707971000196906 ], [ -97.097471000432449, 32.721013000032052 ], [ -97.080298000065895, 32.720899999726264 ], [ -97.080374000234997, 32.710010999905116 ], [ -97.087218000528338, 32.708333999933437 ], [ -97.090917000049103, 32.707901000443265 ], [ -97.097653000023755, 32.707971000196906 ] ] ] } },
{ "type": "Feature", "id": 253, "properties": { "pctwhite": 79.393791, "pctrep": 66.699801, "R": 1342, "D": 641, "CNTYVTD": "4392266", "rmapshaperid": 247, "id": 218 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.17925000022683, 32.706870000313849 ], [ -97.179303000325987, 32.699226000415855 ], [ -97.184242000081852, 32.692748999706481 ], [ -97.184558999624642, 32.697102000401458 ], [ -97.19911399951549, 32.697368999671859 ], [ -97.199059999845616, 32.706090000266521 ], [ -97.196244999669517, 32.708371000006743 ], [ -97.190855999978965, 32.707609999815269 ], [ -97.17925000022683, 32.706870000313849 ] ] ] } },
{ "type": "Feature", "id": 254, "properties": { "pctwhite": 37.078068, "pctrep": 36.220472, "R": 414, "D": 707, "CNTYVTD": "4392267", "rmapshaperid": 248, "id": 219 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.114863000024044, 32.703295999647871 ], [ -97.115008999751311, 32.690965000178522 ], [ -97.115085000189453, 32.678251999918743 ], [ -97.11888699974881, 32.678007999707098 ], [ -97.134539000341206, 32.675333999773365 ], [ -97.135191000220132, 32.678677000323155 ], [ -97.134102000122539, 32.681381000103904 ], [ -97.129581000196168, 32.689557000169557 ], [ -97.132879000523374, 32.690938000342861 ], [ -97.134220999810523, 32.689450000279024 ], [ -97.138560000183588, 32.689531999902329 ], [ -97.138705999793089, 32.692163000113197 ], [ -97.135075000165131, 32.692153999827568 ], [ -97.12804700052753, 32.692113000117054 ], [ -97.119593000481089, 32.703535999781778 ], [ -97.114863000024044, 32.703295999647871 ] ] ] } },
{ "type": "Feature", "id": 255, "properties": { "pctwhite": 34.266713, "pctrep": 40.469613, "R": 293, "D": 422, "CNTYVTD": "4392268", "rmapshaperid": 249, "id": 220 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.092911000291167, 32.677565000009473 ], [ -97.104016999506086, 32.677712000300325 ], [ -97.115085000189453, 32.678251999918743 ], [ -97.115008999751311, 32.690965000178522 ], [ -97.108634000057847, 32.691037000235866 ], [ -97.10500700023934, 32.691786000007447 ], [ -97.09783600045823, 32.691736000345344 ], [ -97.095277999694318, 32.686033999941969 ], [ -97.09482100038241, 32.682338999573794 ], [ -97.09309599974226, 32.679754999798135 ], [ -97.092911000291167, 32.677565000009473 ] ] ] } },
{ "type": "Feature", "id": 256, "properties": { "pctwhite": 33.567134, "pctrep": 51.291513, "R": 139, "D": 125, "CNTYVTD": "4392269", "rmapshaperid": 250, "id": 221 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.097764999923569, 32.700190000272272 ], [ -97.106723999518522, 32.700280000062598 ], [ -97.10675800002241, 32.70106199977684 ], [ -97.108396000379898, 32.703711000129566 ], [ -97.10527800014431, 32.70475400037877 ], [ -97.101753999764298, 32.704620999577081 ], [ -97.09771799951352, 32.703596999692444 ], [ -97.097764999923569, 32.700190000272272 ] ] ] } },
{ "type": "Feature", "id": 257, "properties": { "pctwhite": 25.000000, "pctrep": 66.666667, "R": 2, "D": 1, "CNTYVTD": "4392274", "rmapshaperid": 251, "id": 222 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.037113999603676, 32.759649999869495 ], [ -97.063443999755535, 32.759762999639861 ], [ -97.06343000010358, 32.764335999751076 ], [ -97.062900000428925, 32.764338999995907 ], [ -97.059592999482362, 32.76433100010852 ], [ -97.045599000027693, 32.764301999928918 ], [ -97.045587999838588, 32.761536000256839 ], [ -97.038476000024644, 32.761389000016273 ], [ -97.037173000118216, 32.761360000323492 ], [ -97.037113999603676, 32.759649999869495 ] ] ] } },
{ "type": "Feature", "id": 258, "properties": { "pctwhite": 36.358415, "pctrep": 45.009074, "R": 248, "D": 294, "CNTYVTD": "4392275", "rmapshaperid": 252, "id": 223 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.036686000375283, 32.675912999903055 ], [ -97.036786000097649, 32.661420000308397 ], [ -97.038487999979708, 32.659943000418146 ], [ -97.042110999510143, 32.659149000312546 ], [ -97.042173000438183, 32.663789999747351 ], [ -97.042946999780739, 32.66581000043449 ], [ -97.044427000015688, 32.670028999618502 ], [ -97.044454000217556, 32.676275999686446 ], [ -97.036686000375283, 32.675912999903055 ] ] ] } },
{ "type": "Feature", "id": 259, "properties": { "pctwhite": 73.731959, "pctrep": 62.342342, "R": 692, "D": 397, "CNTYVTD": "4392280", "rmapshaperid": 253, "id": 224 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.140360000036921, 32.7502860004372 ], [ -97.147169999848472, 32.750694000363175 ], [ -97.150846000353155, 32.75004200036075 ], [ -97.15320999952327, 32.753036999588403 ], [ -97.155604000033193, 32.753811000355306 ], [ -97.160941999640784, 32.753046999616004 ], [ -97.157656000353953, 32.755754999855732 ], [ -97.154418999466145, 32.757013000410701 ], [ -97.153940000366291, 32.757311999668403 ], [ -97.152235999637284, 32.757617000097788 ], [ -97.149731999529678, 32.760153000318766 ], [ -97.136650000122742, 32.759897000085552 ], [ -97.136123000269052, 32.756314999934041 ], [ -97.139032999768801, 32.754506000102005 ], [ -97.140360000036921, 32.7502860004372 ] ] ] } },
{ "type": "Feature", "id": 260, "properties": { "pctwhite": 43.020041, "pctrep": 60.152838, "R": 551, "D": 350, "CNTYVTD": "4392281", "rmapshaperid": 254, "id": 225 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.106436999812161, 32.775435999754606 ], [ -97.105085000175507, 32.772573000037909 ], [ -97.105458000223848, 32.766573000127444 ], [ -97.102542999559446, 32.764006999795882 ], [ -97.097026999797478, 32.765737000026256 ], [ -97.097018000165122, 32.759834999792112 ], [ -97.114402000200755, 32.759886000188679 ], [ -97.114153999665263, 32.774152999549194 ], [ -97.114170999880571, 32.777382000107579 ], [ -97.110592999979545, 32.77695700027288 ], [ -97.106437999721464, 32.777809999845033 ], [ -97.106436999812161, 32.775435999754606 ] ] ] } },
{ "type": "Feature", "id": 261, "properties": { "pctwhite": 16.262976, "pctrep": 28.742515, "R": 96, "D": 234, "CNTYVTD": "4392299", "rmapshaperid": 255, "id": 226 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.036786000097649, 32.661420000308397 ], [ -97.03706299988302, 32.645872999940103 ], [ -97.04050500040816, 32.647613000253621 ], [ -97.043864000460161, 32.647861000253627 ], [ -97.043356000353739, 32.651212000002594 ], [ -97.041581999527395, 32.654716000031591 ], [ -97.042110999510143, 32.659149000312546 ], [ -97.038487999979708, 32.659943000418146 ], [ -97.036786000097649, 32.661420000308397 ] ] ] } },
{ "type": "Feature", "id": 262, "properties": { "pctwhite": 15.361050, "pctrep": 20.199778, "R": 182, "D": 707, "CNTYVTD": "4392302", "rmapshaperid": 256, "id": 227 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.062753000151687, 32.691465000000591 ], [ -97.062764000404101, 32.677491999658713 ], [ -97.080242000238968, 32.677708000324515 ], [ -97.080626000051581, 32.679146999897384 ], [ -97.080492999701619, 32.691546000201413 ], [ -97.076190000094186, 32.691515999953495 ], [ -97.072165999760756, 32.691480999553264 ], [ -97.065961000123281, 32.691431000284339 ], [ -97.062753000151687, 32.691465000000591 ] ] ] } },
{ "type": "Feature", "id": 263, "properties": { "pctwhite": 63.143713, "pctrep": 67.777778, "R": 976, "D": 447, "CNTYVTD": "4392303", "rmapshaperid": 257, "id": 228 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.150846000353155, 32.75004200036075 ], [ -97.151642999499856, 32.746183000270435 ], [ -97.149076999751273, 32.743150000136872 ], [ -97.149136000253563, 32.735944999670004 ], [ -97.149137999747296, 32.734062999893588 ], [ -97.15291300010422, 32.733795000179988 ], [ -97.168101999890695, 32.731495000102221 ], [ -97.169423999771141, 32.731497999695485 ], [ -97.179444999897669, 32.730663000239865 ], [ -97.179435999553135, 32.730901999692612 ], [ -97.179117999757949, 32.735823000089567 ], [ -97.173298000051375, 32.741211000232767 ], [ -97.170463999463593, 32.742964000412123 ], [ -97.163698999529799, 32.745626000285043 ], [ -97.163089999960746, 32.756131000250598 ], [ -97.159641999533946, 32.757556000259406 ], [ -97.156413999695545, 32.757546999861489 ], [ -97.154418999466145, 32.757013000410701 ], [ -97.157656000353953, 32.755754999855732 ], [ -97.160941999640784, 32.753046999616004 ], [ -97.155604000033193, 32.753811000355306 ], [ -97.15320999952327, 32.753036999588403 ], [ -97.150846000353155, 32.75004200036075 ] ] ] } },
{ "type": "Feature", "id": 264, "properties": { "pctwhite": 75.054152, "pctrep": 69.650794, "R": 1097, "D": 456, "CNTYVTD": "4392304", "rmapshaperid": 258, "id": 229 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.134243000529921, 32.663144999882242 ], [ -97.138465000486647, 32.663042999706192 ], [ -97.141412999743793, 32.661796999696875 ], [ -97.147439999723744, 32.661871999669096 ], [ -97.149712999682691, 32.662734000084285 ], [ -97.150185000240683, 32.659661000317989 ], [ -97.15298599986825, 32.664746000186831 ], [ -97.153451000161283, 32.669012999848206 ], [ -97.155425999834847, 32.670255999594161 ], [ -97.157563999915496, 32.674541999945333 ], [ -97.149495000109297, 32.674394000394017 ], [ -97.141773000363386, 32.674450000272486 ], [ -97.134725000333589, 32.675312999779429 ], [ -97.134046000171438, 32.666959000385624 ], [ -97.134243000529921, 32.663144999882242 ] ] ] } },
{ "type": "Feature", "id": 265, "properties": { "pctwhite": 65.417559, "pctrep": 58.723404, "R": 690, "D": 468, "CNTYVTD": "4392305", "rmapshaperid": 259, "id": 230 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.184998999914725, 32.646254000444834 ], [ -97.189003999834753, 32.646212000174806 ], [ -97.196058000501196, 32.646733999637803 ], [ -97.196160999791587, 32.649162999915568 ], [ -97.200112999995127, 32.649158000395452 ], [ -97.198079000051948, 32.651514999744983 ], [ -97.197765999878854, 32.653902000348857 ], [ -97.202559999686628, 32.653975999564622 ], [ -97.202454000455944, 32.656216000408641 ], [ -97.206848999834506, 32.656184000114848 ], [ -97.206703999931335, 32.664104000272765 ], [ -97.204866000373642, 32.667124000073308 ], [ -97.201014999898604, 32.66519999968331 ], [ -97.196820999635619, 32.660436000195297 ], [ -97.187502000223802, 32.649895999994044 ], [ -97.184998999914725, 32.646254000444834 ] ] ] } },
{ "type": "Feature", "id": 266, "properties": { "pctwhite": 79.242305, "pctrep": 71.585099, "R": 980, "D": 377, "CNTYVTD": "4392306", "rmapshaperid": 260, "id": 231 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.175516999729311, 32.658937999895493 ], [ -97.180441999553096, 32.663652000428208 ], [ -97.183204000221096, 32.665356999717709 ], [ -97.188485999831883, 32.667446000288315 ], [ -97.192940000379153, 32.672192000419379 ], [ -97.193173000032104, 32.674575999666999 ], [ -97.193198000112417, 32.675082000402512 ], [ -97.186461999834705, 32.676105000191107 ], [ -97.177414000159942, 32.675893999855631 ], [ -97.177318999907044, 32.673965000323378 ], [ -97.175587000291756, 32.672102999956195 ], [ -97.175516999729311, 32.658937999895493 ] ] ] } },
{ "type": "Feature", "id": 267, "properties": { "pctwhite": 68.359166, "pctrep": 64.261807, "R": 1728, "D": 925, "CNTYVTD": "4392307", "rmapshaperid": 261, "id": 232 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.134252000168189, 32.648570000352343 ], [ -97.133468000193972, 32.644936999914073 ], [ -97.135607999845362, 32.634419000431421 ], [ -97.136035000026538, 32.626899999601093 ], [ -97.153976999972528, 32.626911000292651 ], [ -97.15389400009839, 32.632660000135836 ], [ -97.158293999503712, 32.634253999625443 ], [ -97.158125000064004, 32.641550000130799 ], [ -97.153469999619233, 32.641723999829829 ], [ -97.152221000517144, 32.642501000424282 ], [ -97.150714999686215, 32.648693999689854 ], [ -97.146362000204903, 32.648850000432837 ], [ -97.141336999927688, 32.648470999842971 ], [ -97.134252000168189, 32.648570000352343 ] ] ] } },
{ "type": "Feature", "id": 268, "properties": { "pctwhite": 61.721068, "pctrep": 62.631949, "R": 890, "D": 509, "CNTYVTD": "4392308", "rmapshaperid": 262, "id": 233 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.144023999632864, 32.573645000136011 ], [ -97.142957999663608, 32.571657999579109 ], [ -97.141620000092814, 32.566124999889567 ], [ -97.142275000187297, 32.559330999701636 ], [ -97.140571000333651, 32.556309000339198 ], [ -97.129786000156344, 32.549813000326537 ], [ -97.140722000203326, 32.550074000096245 ], [ -97.177039999957614, 32.550645999740681 ], [ -97.176594000325949, 32.553153000435174 ], [ -97.174513000318527, 32.555835999832404 ], [ -97.175957999987986, 32.558953999647045 ], [ -97.174267000000711, 32.561820999944516 ], [ -97.17198699994286, 32.563249000375514 ], [ -97.164290000404918, 32.564381999604436 ], [ -97.164801999542647, 32.565903999559644 ], [ -97.171163000282519, 32.569054999734831 ], [ -97.173777999523026, 32.568478999636397 ], [ -97.178023999552721, 32.570481000115613 ], [ -97.18060299954432, 32.57256399999909 ], [ -97.18333199957533, 32.57618299959158 ], [ -97.184608999640801, 32.575380999645446 ], [ -97.189221999996619, 32.577856999969129 ], [ -97.179345000380977, 32.582563000260883 ], [ -97.166941000103137, 32.58841399974326 ], [ -97.162137999793927, 32.590713000213505 ], [ -97.144023999632864, 32.573645000136011 ] ] ] } },
{ "type": "Feature", "id": 269, "properties": { "pctwhite": 27.354998, "pctrep": 45.100865, "R": 313, "D": 372, "CNTYVTD": "4392309", "rmapshaperid": 263, "id": 234 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.063099999947838, 32.735642000403246 ], [ -97.06708800021471, 32.735197000131357 ], [ -97.080209999759987, 32.735249999623491 ], [ -97.080261999601987, 32.726335000371236 ], [ -97.080298000065895, 32.720899999726264 ], [ -97.097471000432449, 32.721013000032052 ], [ -97.097474000273223, 32.723000000134725 ], [ -97.097416999723237, 32.725934999971138 ], [ -97.09374300014602, 32.725904000184464 ], [ -97.090453999961696, 32.725029000286746 ], [ -97.087132000277464, 32.726243999939129 ], [ -97.087084000053849, 32.731399000114436 ], [ -97.09017500024737, 32.735404999629949 ], [ -97.095655999557195, 32.732480999986628 ], [ -97.097332999782182, 32.735555999898324 ], [ -97.097388000278627, 32.73894799988107 ], [ -97.091464000078631, 32.740360999755381 ], [ -97.083578999924882, 32.741602000316568 ], [ -97.0841709998585, 32.73544199986749 ], [ -97.066940999766203, 32.735334000392562 ], [ -97.063099999947838, 32.735642000403246 ] ] ] } },
{ "type": "Feature", "id": 270, "properties": { "pctwhite": 65.359477, "pctrep": 59.913043, "R": 689, "D": 441, "CNTYVTD": "4392310", "rmapshaperid": 264, "id": 235 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.166269000365006, 32.721444000023226 ], [ -97.165968999501416, 32.711028999575682 ], [ -97.161103999782185, 32.710372000029906 ], [ -97.16108600035939, 32.706818000233355 ], [ -97.171991000295236, 32.706766999749576 ], [ -97.170473999760233, 32.708817999722854 ], [ -97.172890999915154, 32.712303000278112 ], [ -97.172376000526725, 32.716745000088487 ], [ -97.173721999759053, 32.726516999769672 ], [ -97.169423999771141, 32.731497999695485 ], [ -97.168101999890695, 32.731495000102221 ], [ -97.166302999803179, 32.731018999735426 ], [ -97.166269000365006, 32.721444000023226 ] ] ] } },
{ "type": "Feature", "id": 271, "properties": { "pctwhite": 77.337662, "pctrep": 67.619640, "R": 1088, "D": 501, "CNTYVTD": "4392313", "rmapshaperid": 265, "id": 236 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.173992999495724, 32.689833000361951 ], [ -97.17347300042681, 32.687662000377998 ], [ -97.174685000077716, 32.685464999811629 ], [ -97.177455000318389, 32.682897999829635 ], [ -97.177414000159942, 32.675893999855631 ], [ -97.186461999834705, 32.676105000191107 ], [ -97.193198000112417, 32.675082000402512 ], [ -97.20023799964433, 32.673070999932897 ], [ -97.198764999971544, 32.67491399996549 ], [ -97.193334999884087, 32.681531000419731 ], [ -97.186435999660006, 32.69002699977321 ], [ -97.173992999495724, 32.689833000361951 ] ] ] } },
{ "type": "Feature", "id": 272, "properties": { "pctwhite": 78.865751, "pctrep": 68.962392, "R": 1522, "D": 654, "CNTYVTD": "4392314", "rmapshaperid": 266, "id": 237 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.16108600035939, 32.706818000233355 ], [ -97.16138100038728, 32.697726000243954 ], [ -97.166463999890354, 32.697729999581611 ], [ -97.165965000266382, 32.691650999874881 ], [ -97.169347999718966, 32.689757000404285 ], [ -97.173992999495724, 32.689833000361951 ], [ -97.186435999660006, 32.69002699977321 ], [ -97.184242000081852, 32.692748999706481 ], [ -97.179303000325987, 32.699226000415855 ], [ -97.17925000022683, 32.706870000313849 ], [ -97.171991000295236, 32.706766999749576 ], [ -97.16108600035939, 32.706818000233355 ] ] ] } },
{ "type": "Feature", "id": 273, "properties": { "pctwhite": 36.747872, "pctrep": 42.531120, "R": 410, "D": 542, "CNTYVTD": "4392315", "rmapshaperid": 267, "id": 238 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.062643999991209, 32.779030000349714 ], [ -97.062665999908617, 32.77367699999516 ], [ -97.064989999943947, 32.774303000122515 ], [ -97.073623999973194, 32.774538000372786 ], [ -97.074607999746092, 32.777398999754041 ], [ -97.067629999633013, 32.783588000354037 ], [ -97.06486900047031, 32.784669999914186 ], [ -97.064515000033566, 32.779002000294227 ], [ -97.062643999991209, 32.779030000349714 ] ] ] } },
{ "type": "Feature", "id": 274, "properties": { "pctwhite": 57.699375, "pctrep": 51.746324, "R": 563, "D": 507, "CNTYVTD": "4392316", "rmapshaperid": 268, "id": 239 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.06486900047031, 32.784669999914186 ], [ -97.067629999633013, 32.783588000354037 ], [ -97.074607999746092, 32.777398999754041 ], [ -97.073623999973194, 32.774538000372786 ], [ -97.080805999697859, 32.774003000355357 ], [ -97.083079999683662, 32.773192000313237 ], [ -97.083947000505773, 32.775028999561329 ], [ -97.083062000029656, 32.776980999849549 ], [ -97.08675199963487, 32.780779000237835 ], [ -97.092495999972627, 32.783955000223806 ], [ -97.095348999947944, 32.784488999568623 ], [ -97.096003000495003, 32.786011000261546 ], [ -97.088236999896665, 32.787166000393718 ], [ -97.089174000234237, 32.78516099975775 ], [ -97.086470999824712, 32.782898999869268 ], [ -97.081838000100689, 32.78270099981188 ], [ -97.080430999520587, 32.784782000065441 ], [ -97.078520999903944, 32.783318000027364 ], [ -97.075193999561023, 32.784010999930871 ], [ -97.073473000010864, 32.785297000274738 ], [ -97.073413000379603, 32.790745999999366 ], [ -97.070708000037328, 32.791018000046606 ], [ -97.068948000521331, 32.794922000400973 ], [ -97.06738299971498, 32.793862999637405 ], [ -97.067032000374695, 32.789523000065756 ], [ -97.065001999646313, 32.787089000385627 ], [ -97.06486900047031, 32.784669999914186 ] ] ] } },
{ "type": "Feature", "id": 275, "properties": { "pctwhite": 76.438849, "pctrep": 65.717540, "R": 577, "D": 280, "CNTYVTD": "4392317", "rmapshaperid": 269, "id": 240 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.122911999961715, 32.773320999812235 ], [ -97.12307899989878, 32.759833000308198 ], [ -97.131584000155769, 32.759922999908085 ], [ -97.131511999867271, 32.779109000336746 ], [ -97.125474000113698, 32.779127999974797 ], [ -97.123023999887522, 32.779177999560822 ], [ -97.122911999961715, 32.773320999812235 ] ] ] } },
{ "type": "Feature", "id": 276, "properties": { "pctwhite": 69.353640, "pctrep": 68.146883, "R": 798, "D": 356, "CNTYVTD": "4392318", "rmapshaperid": 270, "id": 241 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.114647999910275, 32.706186999991232 ], [ -97.114863000024044, 32.703295999647871 ], [ -97.119593000481089, 32.703535999781778 ], [ -97.12804700052753, 32.692113000117054 ], [ -97.135075000165131, 32.692153999827568 ], [ -97.135246000446742, 32.697612000170466 ], [ -97.136864000143504, 32.699522999638702 ], [ -97.136875000287063, 32.706608999736453 ], [ -97.132721999555727, 32.706559000301311 ], [ -97.114647999910275, 32.706186999991232 ] ] ] } },
{ "type": "Feature", "id": 277, "properties": { "pctwhite": 79.454927, "pctrep": 67.709637, "R": 1082, "D": 498, "CNTYVTD": "4392319", "rmapshaperid": 271, "id": 242 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.184242000081852, 32.692748999706481 ], [ -97.186435999660006, 32.69002699977321 ], [ -97.193334999884087, 32.681531000419731 ], [ -97.200327000221264, 32.681470999734074 ], [ -97.200155999660865, 32.689672999947327 ], [ -97.199137999585787, 32.692609999610603 ], [ -97.19911399951549, 32.697368999671859 ], [ -97.184558999624642, 32.697102000401458 ], [ -97.184242000081852, 32.692748999706481 ] ] ] } },
{ "type": "Feature", "id": 278, "properties": { "pctwhite": 27.030913, "pctrep": 32.071902, "R": 339, "D": 707, "CNTYVTD": "4392320", "rmapshaperid": 272, "id": 243 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.080492999701619, 32.691546000201413 ], [ -97.080626000051581, 32.679146999897384 ], [ -97.080242000238968, 32.677708000324515 ], [ -97.062764000404101, 32.677491999658713 ], [ -97.06276199954128, 32.677201999701253 ], [ -97.092911000291167, 32.677565000009473 ], [ -97.09309599974226, 32.679754999798135 ], [ -97.09482100038241, 32.682338999573794 ], [ -97.095277999694318, 32.686033999941969 ], [ -97.09783600045823, 32.691736000345344 ], [ -97.09158100050071, 32.691661999896702 ], [ -97.088344000346694, 32.691635999729328 ], [ -97.08075399954356, 32.691545999801072 ], [ -97.080492999701619, 32.691546000201413 ] ] ] } },
{ "type": "Feature", "id": 279, "properties": { "pctwhite": 24.554184, "pctrep": 34.666667, "R": 78, "D": 147, "CNTYVTD": "4392341", "rmapshaperid": 273, "id": 244 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.106544000469128, 32.626508999757917 ], [ -97.115374000240791, 32.626668999614076 ], [ -97.11532400012085, 32.629060999859085 ], [ -97.107170000071989, 32.629056999789874 ], [ -97.106544000469128, 32.626508999757917 ] ] ] } },
{ "type": "Feature", "id": 280, "properties": { "pctwhite": 31.884664, "pctrep": 41.743590, "R": 407, "D": 563, "CNTYVTD": "4392349", "rmapshaperid": 274, "id": 245 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.042110999510143, 32.659149000312546 ], [ -97.041581999527395, 32.654716000031591 ], [ -97.043356000353739, 32.651212000002594 ], [ -97.043864000460161, 32.647861000253627 ], [ -97.051254000316376, 32.64736799980497 ], [ -97.052754999594342, 32.655640000034595 ], [ -97.054395999910966, 32.659387999824993 ], [ -97.058662000464878, 32.661671000318854 ], [ -97.062531000061369, 32.661435999664306 ], [ -97.059311999896508, 32.665073000322877 ], [ -97.056175000142829, 32.665176999941252 ], [ -97.051770000016575, 32.663415000089557 ], [ -97.050364999873679, 32.660544999853293 ], [ -97.047350000433553, 32.659291000056413 ], [ -97.047767000239347, 32.657689999610817 ], [ -97.042110999510143, 32.659149000312546 ] ] ] } },
{ "type": "Feature", "id": 281, "properties": { "pctwhite": 33.575171, "pctrep": 41.134752, "R": 290, "D": 405, "CNTYVTD": "4392353", "rmapshaperid": 275, "id": 246 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.107780000287903, 32.653345000446521 ], [ -97.11520899980377, 32.653384999917655 ], [ -97.115199999659765, 32.65523699985345 ], [ -97.115135000227056, 32.659798999839509 ], [ -97.115086000335339, 32.665490000155629 ], [ -97.112862999809224, 32.664698000158133 ], [ -97.104311000313103, 32.66357199990734 ], [ -97.107568000096975, 32.656898999791224 ], [ -97.107780000287903, 32.653345000446521 ] ] ] } },
{ "type": "Feature", "id": 282, "properties": { "pctwhite": 34.610720, "pctrep": 39.970172, "R": 536, "D": 788, "CNTYVTD": "4392354", "rmapshaperid": 276, "id": 247 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.077113000473148, 32.658846999907638 ], [ -97.077629999919921, 32.657279999778787 ], [ -97.083772999494542, 32.655459000159247 ], [ -97.084091999653566, 32.653207999591302 ], [ -97.088207999967537, 32.652813000297428 ], [ -97.088132999981752, 32.657856999735202 ], [ -97.090639000141081, 32.662688000016203 ], [ -97.090605999969412, 32.669801000173919 ], [ -97.09150899963592, 32.672146999643644 ], [ -97.088984000318135, 32.672252000090801 ], [ -97.086128999730434, 32.670250999989904 ], [ -97.082317999906863, 32.666086000146109 ], [ -97.079601000060876, 32.664723000348665 ], [ -97.0771100000144, 32.662239000298456 ], [ -97.077113000473148, 32.658846999907638 ] ] ] } },
{ "type": "Feature", "id": 283, "properties": { "pctwhite": 66.694666, "pctrep": 63.626374, "R": 579, "D": 313, "CNTYVTD": "4392355", "rmapshaperid": 277, "id": 248 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.179345000380977, 32.582563000260883 ], [ -97.184025999920294, 32.586504999857951 ], [ -97.184944000205348, 32.588239999853528 ], [ -97.186457000468778, 32.597044999585052 ], [ -97.185214999691055, 32.609034000050535 ], [ -97.184588000409619, 32.611877000012164 ], [ -97.180983999984733, 32.608526999880944 ], [ -97.178385999548397, 32.605427000371719 ], [ -97.166941000103137, 32.58841399974326 ], [ -97.179345000380977, 32.582563000260883 ] ] ] } },
{ "type": "Feature", "id": 284, "properties": { "pctwhite": 56.654229, "pctrep": 55.363881, "R": 1027, "D": 807, "CNTYVTD": "4392356", "rmapshaperid": 278, "id": 249 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.121806000241492, 32.659516000087514 ], [ -97.136920999961788, 32.659652000246574 ], [ -97.137308999969278, 32.657113999924221 ], [ -97.13489300047442, 32.651284999606062 ], [ -97.134252000168189, 32.648570000352343 ], [ -97.141336999927688, 32.648470999842971 ], [ -97.146362000204903, 32.648850000432837 ], [ -97.146585999596624, 32.65550100041375 ], [ -97.150185000240683, 32.659661000317989 ], [ -97.149712999682691, 32.662734000084285 ], [ -97.147439999723744, 32.661871999669096 ], [ -97.141412999743793, 32.661796999696875 ], [ -97.138465000486647, 32.663042999706192 ], [ -97.134243000529921, 32.663144999882242 ], [ -97.121380000396783, 32.662937000178545 ], [ -97.121806000241492, 32.659516000087514 ] ] ] } },
{ "type": "Feature", "id": 285, "properties": { "pctwhite": 68.249258, "pctrep": 69.966630, "R": 1258, "D": 516, "CNTYVTD": "4392357", "rmapshaperid": 279, "id": 250 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.139752999953018, 32.616014000029054 ], [ -97.142367999696603, 32.611062999585243 ], [ -97.144462000250144, 32.602555999817689 ], [ -97.147245000536728, 32.597647999861948 ], [ -97.149298999873764, 32.594995999592705 ], [ -97.150533000006249, 32.591786000377439 ], [ -97.158680999665961, 32.591682999976371 ], [ -97.162137999793927, 32.590713000213505 ], [ -97.166941000103137, 32.58841399974326 ], [ -97.178385999548397, 32.605427000371719 ], [ -97.180983999984733, 32.608526999880944 ], [ -97.170549000150999, 32.613705000421447 ], [ -97.160828000516744, 32.614014999912833 ], [ -97.154714000149397, 32.61399500003219 ], [ -97.154672000500952, 32.616149000385654 ], [ -97.139752999953018, 32.616014000029054 ] ] ] } },
{ "type": "Feature", "id": 286, "properties": { "pctwhite": 74.743025, "pctrep": 69.253911, "R": 1151, "D": 486, "CNTYVTD": "4392358", "rmapshaperid": 280, "id": 251 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.157651000307069, 32.6486109997848 ], [ -97.150714999686215, 32.648693999689854 ], [ -97.152221000517144, 32.642501000424282 ], [ -97.153469999619233, 32.641723999829829 ], [ -97.158125000064004, 32.641550000130799 ], [ -97.166847999674019, 32.641584999942815 ], [ -97.169498000032775, 32.64302899962729 ], [ -97.175843000014652, 32.642451999580125 ], [ -97.175545999742212, 32.649201999557192 ], [ -97.157651000307069, 32.6486109997848 ] ] ] } },
{ "type": "Feature", "id": 287, "properties": { "pctwhite": 77.780210, "pctrep": 74.691053, "R": 1511, "D": 491, "CNTYVTD": "4392360", "rmapshaperid": 281, "id": 252 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.087417000162844, 32.562139000263016 ], [ -97.093297999635908, 32.570487000234621 ], [ -97.098971999516976, 32.568078000197787 ], [ -97.102974000425164, 32.570042999850614 ], [ -97.1076159995431, 32.571300999953579 ], [ -97.109862000500996, 32.571123000062961 ], [ -97.121461999716516, 32.566185999636978 ], [ -97.130721999470694, 32.565013000356537 ], [ -97.134992000422784, 32.563690000022945 ], [ -97.135604000267762, 32.565545000416542 ], [ -97.134249999996911, 32.568980000210679 ], [ -97.131004999566059, 32.569392000051153 ], [ -97.129210999664522, 32.572710000232661 ], [ -97.124674999841773, 32.573948000204453 ], [ -97.120149999563054, 32.576327000071821 ], [ -97.117776999835542, 32.57990399967921 ], [ -97.11424699994717, 32.57893800033991 ], [ -97.106469000180638, 32.579307000348415 ], [ -97.105663999766108, 32.580784000112814 ], [ -97.102155999526886, 32.58087900009059 ], [ -97.100669000131404, 32.582482999771834 ], [ -97.102233999654601, 32.584756999730139 ], [ -97.1012379995054, 32.587096000336622 ], [ -97.096284999799181, 32.586640999622361 ], [ -97.093464999956268, 32.588271000293133 ], [ -97.091337999599503, 32.586356999938864 ], [ -97.088740000120396, 32.586260999792913 ], [ -97.084351999947657, 32.583744000424304 ], [ -97.083097999836752, 32.586564999983842 ], [ -97.08310200004972, 32.588365000404956 ], [ -97.078516000212318, 32.590186999576325 ], [ -97.078752000183684, 32.586740000417166 ], [ -97.080616000513871, 32.583100999594279 ], [ -97.080183000281238, 32.58082299977162 ], [ -97.084678999537886, 32.56493300032929 ], [ -97.087417000162844, 32.562139000263016 ] ] ] } },
{ "type": "Feature", "id": 288, "properties": { "pctwhite": 24.584046, "pctrep": 33.985224, "R": 782, "D": 1488, "CNTYVTD": "4392379", "rmapshaperid": 282, "id": 253 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.03706299988302, 32.645872999940103 ], [ -97.037490999702328, 32.618455999629191 ], [ -97.040664000115044, 32.61831300031853 ], [ -97.043995999896026, 32.617111000101836 ], [ -97.045560000204148, 32.611988999626853 ], [ -97.050494000453185, 32.610847000135301 ], [ -97.05438600048916, 32.606090999645723 ], [ -97.057272999862121, 32.608082999956487 ], [ -97.061325000221032, 32.612174999906635 ], [ -97.066940999793573, 32.620761999946417 ], [ -97.070200000257884, 32.626789000153664 ], [ -97.070340000353355, 32.62701800021734 ], [ -97.066951000421938, 32.631238999790867 ], [ -97.066066999541476, 32.635505999672183 ], [ -97.064503999888373, 32.638300000437241 ], [ -97.05132699971999, 32.644637000145664 ], [ -97.051254000316376, 32.64736799980497 ], [ -97.043864000460161, 32.647861000253627 ], [ -97.04050500040816, 32.647613000253621 ], [ -97.03706299988302, 32.645872999940103 ] ] ] } },
{ "type": "Feature", "id": 289, "properties": { "pctwhite": 21.368089, "pctrep": 30.885246, "R": 471, "D": 1044, "CNTYVTD": "4392381", "rmapshaperid": 283, "id": 254 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.043968000508499, 32.693478000356947 ], [ -97.044282000372633, 32.689368999605165 ], [ -97.044454000217556, 32.676275999686446 ], [ -97.054312000427629, 32.676968999990294 ], [ -97.06276199954128, 32.677201999701253 ], [ -97.062764000404101, 32.677491999658713 ], [ -97.062753000151687, 32.691465000000591 ], [ -97.062448000053223, 32.691661999871783 ], [ -97.062575999540812, 32.706044000132458 ], [ -97.04739799946941, 32.706034000138565 ], [ -97.044134999798302, 32.70601599958993 ], [ -97.043968000508499, 32.693478000356947 ] ] ] } },
{ "type": "Feature", "id": 290, "properties": { "pctwhite": 41.465166, "pctrep": 41.140684, "R": 541, "D": 755, "CNTYVTD": "4392383", "rmapshaperid": 284, "id": 255 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.102259999962314, 32.64479900041529 ], [ -97.102234000500601, 32.638271000190898 ], [ -97.107480000258661, 32.638168000352493 ], [ -97.112308000102601, 32.639958000156945 ], [ -97.115206999842286, 32.639960000248799 ], [ -97.115545000214723, 32.644714000289447 ], [ -97.115794000445845, 32.648497000255162 ], [ -97.11520899980377, 32.653384999917655 ], [ -97.107780000287903, 32.653345000446521 ], [ -97.102218999820309, 32.653311000128127 ], [ -97.102232000454777, 32.649377999891122 ], [ -97.102259999962314, 32.64479900041529 ] ] ] } },
{ "type": "Feature", "id": 291, "properties": { "pctwhite": 27.737973, "pctrep": 47.435897, "R": 111, "D": 119, "CNTYVTD": "4392393", "rmapshaperid": 285, "id": 256 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.090346000132499, 32.696699999851909 ], [ -97.093934999736391, 32.695934999646255 ], [ -97.097015999718934, 32.694326999786163 ], [ -97.096998000280905, 32.698616000237756 ], [ -97.093639999735302, 32.698593999927397 ], [ -97.093619999494209, 32.700905000181272 ], [ -97.090317000109906, 32.700857000168348 ], [ -97.090346000132499, 32.696699999851909 ] ] ] } },
{ "type": "Feature", "id": 292, "properties": { "pctwhite": 57.692308, "pctrep": 60.648148, "R": 131, "D": 84, "CNTYVTD": "4392401", "rmapshaperid": 286, "id": 257 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.114710999972132, 32.70816800036404 ], [ -97.114647999910275, 32.706186999991232 ], [ -97.132721999555727, 32.706559000301311 ], [ -97.131945999894299, 32.709026000433177 ], [ -97.123336000076307, 32.708916000179137 ], [ -97.114710999972132, 32.70816800036404 ] ] ] } },
{ "type": "Feature", "id": 293, "properties": { "pctwhite": 55.421687, "pctrep": 100.000000, "R": 10, "D": 0, "CNTYVTD": "4392402A", "rmapshaperid": 287, "id": 258 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.037086000484294, 32.759652000165218 ], [ -97.037073000373866, 32.759436999666178 ], [ -97.037081000309911, 32.75862799967792 ], [ -97.037080999503729, 32.757097999887186 ], [ -97.037012999586864, 32.754189999788601 ], [ -97.040036999649232, 32.753698999733288 ], [ -97.040406999928038, 32.744789999620835 ], [ -97.045735000177856, 32.744678000408683 ], [ -97.045869999621829, 32.739562000324177 ], [ -97.046023999983277, 32.73783700012887 ], [ -97.049320999560024, 32.737426000165243 ], [ -97.062319000441562, 32.735717999882226 ], [ -97.062600999677528, 32.735698000038539 ], [ -97.062723000471038, 32.743617000260926 ], [ -97.068075000239872, 32.743064999631727 ], [ -97.073573999737292, 32.743073000405502 ], [ -97.083578999924882, 32.741602000316568 ], [ -97.083777999566124, 32.744393000038713 ], [ -97.079764000532734, 32.749744000040174 ], [ -97.076016999994692, 32.74801300003012 ], [ -97.068528000477457, 32.747991000135521 ], [ -97.06277700037036, 32.748956000026332 ], [ -97.063447000256303, 32.759523000271116 ], [ -97.063443999755535, 32.759762999639861 ], [ -97.037113999603676, 32.759649999869495 ], [ -97.037086000484294, 32.759652000165218 ] ] ] } },
{ "type": "Feature", "id": 295, "properties": { "pctwhite": 8.641975, "pctrep": 22.727273, "R": 5, "D": 17, "CNTYVTD": "4392403", "rmapshaperid": 288, "id": 259 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.112670000053669, 32.708062000354332 ], [ -97.113427000451466, 32.706025999656816 ], [ -97.114546999912136, 32.708153999588724 ], [ -97.112670000053669, 32.708062000354332 ] ] ] } },
{ "type": "Feature", "id": 296, "properties": { "pctwhite": 34.020470, "pctrep": 34.471134, "R": 818, "D": 1539, "CNTYVTD": "4392405", "rmapshaperid": 289, "id": 260 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.100647000342917, 32.626499999637808 ], [ -97.09837100013749, 32.623116999642512 ], [ -97.098612000042777, 32.619337000017424 ], [ -97.099743000334271, 32.616429000365592 ], [ -97.1063339995588, 32.61310999973594 ], [ -97.116415999777857, 32.608227000161897 ], [ -97.117533000530898, 32.610246999667801 ], [ -97.117426000055801, 32.613019000395774 ], [ -97.115593999510466, 32.617841999774996 ], [ -97.115374000240791, 32.626668999614076 ], [ -97.106544000469128, 32.626508999757917 ], [ -97.100647000342917, 32.626499999637808 ] ] ] } },
{ "type": "Feature", "id": 297, "properties": { "pctwhite": 16.222480, "pctrep": 20.895522, "R": 42, "D": 156, "CNTYVTD": "4392411", "rmapshaperid": 290, "id": 261 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.035190999724577, 32.757097999904595 ], [ -97.035596999873277, 32.739701000292996 ], [ -97.041329000056322, 32.739181000314581 ], [ -97.045869999621829, 32.739562000324177 ], [ -97.045735000177856, 32.744678000408683 ], [ -97.040406999928038, 32.744789999620835 ], [ -97.040036999649232, 32.753698999733288 ], [ -97.037012999586864, 32.754189999788601 ], [ -97.037080999503729, 32.757097999887186 ], [ -97.035190999724577, 32.757097999904595 ] ] ] } },
{ "type": "Feature", "id": 298, "properties": { "pctwhite": 19.650485, "pctrep": 33.520599, "R": 179, "D": 349, "CNTYVTD": "4392413", "rmapshaperid": 291, "id": 262 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.036096000124417, 32.720596000285489 ], [ -97.036416999613508, 32.693188000146016 ], [ -97.037716000293059, 32.693944999683538 ], [ -97.041328999981076, 32.692493000073341 ], [ -97.043968000508499, 32.693478000356947 ], [ -97.044134999798302, 32.70601599958993 ], [ -97.04739799946941, 32.706034000138565 ], [ -97.047482000244983, 32.720632999714844 ], [ -97.045794000436857, 32.720621000392498 ], [ -97.036096000124417, 32.720596000285489 ] ] ] } },
{ "type": "Feature", "id": 300, "properties": { "pctwhite": 54.655493, "pctrep": 52.521246, "R": 927, "D": 823, "CNTYVTD": "4392425", "rmapshaperid": 292, "id": 263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.196820999635619, 32.660436000195297 ], [ -97.201014999898604, 32.66519999968331 ], [ -97.204866000373642, 32.667124000073308 ], [ -97.208227999567313, 32.666951999928898 ], [ -97.208989999496026, 32.65971300001975 ], [ -97.211617999926304, 32.65995899994217 ], [ -97.211692999731767, 32.656216000191854 ], [ -97.216327999600878, 32.655875999655883 ], [ -97.216338000133391, 32.660412999868285 ], [ -97.224257999807634, 32.660259999791805 ], [ -97.223424999786872, 32.660899000092094 ], [ -97.223359000351877, 32.667956999942803 ], [ -97.219515999675451, 32.66817000009322 ], [ -97.211842000258429, 32.669651999959122 ], [ -97.20023799964433, 32.673070999932897 ], [ -97.193198000112417, 32.675082000402512 ], [ -97.193173000032104, 32.674575999666999 ], [ -97.196180999633825, 32.673740999871711 ], [ -97.196189999625886, 32.665193000026683 ], [ -97.197135999714348, 32.663781000290037 ], [ -97.196820999635619, 32.660436000195297 ] ] ] } },
{ "type": "Feature", "id": 301, "properties": { "pctwhite": 76.407355, "pctrep": 69.693175, "R": 1113, "D": 466, "CNTYVTD": "4392426", "rmapshaperid": 293, "id": 264 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.131927000119305, 32.583333000009816 ], [ -97.131467000324676, 32.586424000285959 ], [ -97.128197999879617, 32.586738999874093 ], [ -97.126959000496527, 32.588014000363863 ], [ -97.12635799974511, 32.591164000414011 ], [ -97.123886999994781, 32.59165100042118 ], [ -97.12238499962271, 32.596442999618091 ], [ -97.120083999802404, 32.597687000194021 ], [ -97.119540999724393, 32.601197000182417 ], [ -97.121330000181516, 32.603772000157818 ], [ -97.115626999967887, 32.60663599972343 ], [ -97.107593999542118, 32.594461000135581 ], [ -97.108969999769883, 32.593687999822144 ], [ -97.130584000361466, 32.583393000366456 ], [ -97.131927000119305, 32.583333000009816 ] ] ] } },
{ "type": "Feature", "id": 302, "properties": { "pctwhite": 14.489710, "pctrep": 40.329218, "R": 98, "D": 144, "CNTYVTD": "4392428", "rmapshaperid": 294, "id": 265 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.047482000244983, 32.720632999714844 ], [ -97.04739799946941, 32.706034000138565 ], [ -97.062575999540812, 32.706044000132458 ], [ -97.062961000108018, 32.706029999891086 ], [ -97.063021999566658, 32.712203000087825 ], [ -97.062700999818361, 32.720756999872599 ], [ -97.061945999553046, 32.720770999861578 ], [ -97.047482000244983, 32.720632999714844 ] ] ] } },
{ "type": "Feature", "id": 303, "properties": { "pctwhite": 59.119300, "pctrep": 62.639110, "R": 788, "D": 456, "CNTYVTD": "4392435", "rmapshaperid": 295, "id": 266 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.095625999681431, 32.599116000351408 ], [ -97.100104000064661, 32.598101000195761 ], [ -97.107593999542118, 32.594461000135581 ], [ -97.115626999967887, 32.60663599972343 ], [ -97.116415999777857, 32.608227000161897 ], [ -97.1063339995588, 32.61310999973594 ], [ -97.100492999805411, 32.604538000234392 ], [ -97.099624999836621, 32.604927999732368 ], [ -97.095625999681431, 32.599116000351408 ] ] ] } },
{ "type": "Feature", "id": 304, "properties": { "pctwhite": 32.537688, "pctrep": 35.950413, "R": 522, "D": 908, "CNTYVTD": "4392438", "rmapshaperid": 296, "id": 267 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.044454000217556, 32.676275999686446 ], [ -97.044427000015688, 32.670028999618502 ], [ -97.042946999780739, 32.66581000043449 ], [ -97.050210000368466, 32.665368000085643 ], [ -97.059790999616865, 32.668818999939276 ], [ -97.062868999736509, 32.668383999910553 ], [ -97.06276199954128, 32.677201999701253 ], [ -97.054312000427629, 32.676968999990294 ], [ -97.044454000217556, 32.676275999686446 ] ] ] } },
{ "type": "Feature", "id": 305, "properties": { "pctwhite": 33.473363, "pctrep": 35.448196, "R": 609, "D": 1088, "CNTYVTD": "4392448", "rmapshaperid": 297, "id": 268 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.092911000291167, 32.677565000009473 ], [ -97.092982000286142, 32.675071000353782 ], [ -97.09150899963592, 32.672146999643644 ], [ -97.090605999969412, 32.669801000173919 ], [ -97.090639000141081, 32.662688000016203 ], [ -97.088132999981752, 32.657856999735202 ], [ -97.088207999967537, 32.652813000297428 ], [ -97.088227000144158, 32.649669000066048 ], [ -97.090859000393735, 32.650909999761076 ], [ -97.094131000117031, 32.648840000253728 ], [ -97.099011999468047, 32.649699000035902 ], [ -97.102232000454777, 32.649377999891122 ], [ -97.102218999820309, 32.653311000128127 ], [ -97.107780000287903, 32.653345000446521 ], [ -97.107568000096975, 32.656898999791224 ], [ -97.104311000313103, 32.66357199990734 ], [ -97.112862999809224, 32.664698000158133 ], [ -97.115086000335339, 32.665490000155629 ], [ -97.115085000189453, 32.678251999918743 ], [ -97.104016999506086, 32.677712000300325 ], [ -97.092911000291167, 32.677565000009473 ] ] ] } },
{ "type": "Feature", "id": 306, "properties": { "pctwhite": 31.243330, "pctrep": 38.942308, "R": 486, "D": 743, "CNTYVTD": "4392449", "rmapshaperid": 298, "id": 269 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.063799000054033, 32.648411000161985 ], [ -97.07511299992953, 32.648361999930856 ], [ -97.088254000154691, 32.648593000448891 ], [ -97.088227000144158, 32.649669000066048 ], [ -97.088207999967537, 32.652813000297428 ], [ -97.084091999653566, 32.653207999591302 ], [ -97.083772999494542, 32.655459000159247 ], [ -97.077629999919921, 32.657279999778787 ], [ -97.077113000473148, 32.658846999907638 ], [ -97.077119000063917, 32.652485999968611 ], [ -97.074090000013101, 32.654220999682835 ], [ -97.071306000334758, 32.656899999749271 ], [ -97.068199000344734, 32.656418999796308 ], [ -97.067584000015458, 32.65854400037329 ], [ -97.06527099982992, 32.658644000124767 ], [ -97.063215999503171, 32.660752999669796 ], [ -97.06227099980039, 32.652231000242281 ], [ -97.063799000054033, 32.648411000161985 ] ] ] } },
{ "type": "Feature", "id": 307, "properties": { "pctwhite": 29.154334, "pctrep": 34.000000, "R": 459, "D": 883, "CNTYVTD": "4392450", "rmapshaperid": 299, "id": 270 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.088227000144158, 32.649669000066048 ], [ -97.088254000154691, 32.648593000448891 ], [ -97.07511299992953, 32.648361999930856 ], [ -97.075135000239811, 32.64118999996105 ], [ -97.094499999772495, 32.641280000103826 ], [ -97.096077000039202, 32.641509000096633 ], [ -97.102259999962314, 32.64479900041529 ], [ -97.102232000454777, 32.649377999891122 ], [ -97.099011999468047, 32.649699000035902 ], [ -97.094131000117031, 32.648840000253728 ], [ -97.090859000393735, 32.650909999761076 ], [ -97.088227000144158, 32.649669000066048 ] ] ] } },
{ "type": "Feature", "id": 308, "properties": { "pctwhite": 31.416838, "pctrep": 19.387755, "R": 19, "D": 76, "CNTYVTD": "4392451", "rmapshaperid": 300, "id": 271 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.131945999894299, 32.709026000433177 ], [ -97.132721999555727, 32.706559000301311 ], [ -97.136875000287063, 32.706608999736453 ], [ -97.138030999991486, 32.706660000133482 ], [ -97.138034999545539, 32.709093999787207 ], [ -97.131945999894299, 32.709026000433177 ] ] ] } },
{ "type": "Feature", "id": 309, "properties": { "pctwhite": 29.214660, "pctrep": 38.331160, "R": 294, "D": 465, "CNTYVTD": "4392453", "rmapshaperid": 301, "id": 272 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.061572000462078, 32.585284999642042 ], [ -97.063467000372924, 32.588255000446644 ], [ -97.066623999916146, 32.592476999737862 ], [ -97.071604000469989, 32.595075000141549 ], [ -97.074965000041729, 32.590438999946208 ], [ -97.078516000212318, 32.590186999576325 ], [ -97.077375999560147, 32.611339999976792 ], [ -97.076875999724649, 32.616265999791622 ], [ -97.075797999818121, 32.619192000204997 ], [ -97.070200000257884, 32.626789000153664 ], [ -97.066940999793573, 32.620761999946417 ], [ -97.061325000221032, 32.612174999906635 ], [ -97.057272999862121, 32.608082999956487 ], [ -97.05438600048916, 32.606090999645723 ], [ -97.045086999823624, 32.592438000377946 ], [ -97.052623999810564, 32.590607999893876 ], [ -97.057996999636671, 32.587747000006736 ], [ -97.061572000462078, 32.585284999642042 ] ] ] } },
{ "type": "Feature", "id": 310, "properties": { "pctwhite": 17.095421, "pctrep": 20.910624, "R": 248, "D": 928, "CNTYVTD": "4392461", "rmapshaperid": 302, "id": 273 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.062753000151687, 32.691465000000591 ], [ -97.065961000123281, 32.691431000284339 ], [ -97.072148000229916, 32.691608000103301 ], [ -97.071833999976619, 32.706040999908133 ], [ -97.062961000108018, 32.706029999891086 ], [ -97.062575999540812, 32.706044000132458 ], [ -97.062448000053223, 32.691661999871783 ], [ -97.062753000151687, 32.691465000000591 ] ] ] } },
{ "type": "Feature", "id": 311, "properties": { "pctwhite": 39.777778, "pctrep": 36.694387, "R": 353, "D": 593, "CNTYVTD": "4392462", "rmapshaperid": 303, "id": 274 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.115545000214723, 32.644714000289447 ], [ -97.115206999842286, 32.639960000248799 ], [ -97.11532400012085, 32.629060999859085 ], [ -97.115374000240791, 32.626668999614076 ], [ -97.136035000026538, 32.626899999601093 ], [ -97.135607999845362, 32.634419000431421 ], [ -97.121705999491752, 32.634114999787187 ], [ -97.122734000052603, 32.637948999621599 ], [ -97.122351000274875, 32.644813000221674 ], [ -97.115545000214723, 32.644714000289447 ] ] ] } },
{ "type": "Feature", "id": 312, "properties": { "pctwhite": 75.482625, "pctrep": 65.666667, "R": 197, "D": 101, "CNTYVTD": "4392464", "rmapshaperid": 304, "id": 275 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.196244999669517, 32.708371000006743 ], [ -97.199059999845616, 32.706090000266521 ], [ -97.19911399951549, 32.697368999671859 ], [ -97.201432999543329, 32.697284000002185 ], [ -97.200536999825587, 32.702913000233991 ], [ -97.203437000078566, 32.707898000250751 ], [ -97.203572000501694, 32.711938000444079 ], [ -97.202263000316066, 32.712483999989644 ], [ -97.196244999669517, 32.708371000006743 ] ] ] } },
{ "type": "Feature", "id": 313, "properties": { "pctwhite": 33.881897, "pctrep": 33.946252, "R": 240, "D": 460, "CNTYVTD": "4392466", "rmapshaperid": 305, "id": 276 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.042946999780739, 32.66581000043449 ], [ -97.042173000438183, 32.663789999747351 ], [ -97.042110999510143, 32.659149000312546 ], [ -97.047767000239347, 32.657689999610817 ], [ -97.047350000433553, 32.659291000056413 ], [ -97.050364999873679, 32.660544999853293 ], [ -97.051770000016575, 32.663415000089557 ], [ -97.056175000142829, 32.665176999941252 ], [ -97.059311999896508, 32.665073000322877 ], [ -97.062531000061369, 32.661435999664306 ], [ -97.063276999644131, 32.661372000279464 ], [ -97.062868999736509, 32.668383999910553 ], [ -97.059790999616865, 32.668818999939276 ], [ -97.050210000368466, 32.665368000085643 ], [ -97.042946999780739, 32.66581000043449 ] ] ] } },
{ "type": "Feature", "id": 314, "properties": { "pctwhite": 42.577098, "pctrep": 41.016949, "R": 605, "D": 853, "CNTYVTD": "4392467", "rmapshaperid": 306, "id": 277 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.097018000165122, 32.759834999792112 ], [ -97.097026999797478, 32.765737000026256 ], [ -97.097072999669678, 32.77533499963571 ], [ -97.091756000065814, 32.775305000282884 ], [ -97.085342000249184, 32.773022999921707 ], [ -97.085350000368948, 32.764504999974278 ], [ -97.085337000328764, 32.759773999785651 ], [ -97.097018000165122, 32.759834999792112 ] ] ] } },
{ "type": "Feature", "id": 315, "properties": { "pctwhite": 65.580569, "pctrep": 62.298257, "R": 965, "D": 565, "CNTYVTD": "4392468", "rmapshaperid": 307, "id": 278 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.149586000224886, 32.677764000106244 ], [ -97.149495000109297, 32.674394000394017 ], [ -97.157563999915496, 32.674541999945333 ], [ -97.166689000198431, 32.674998999990926 ], [ -97.177414000159942, 32.675893999855631 ], [ -97.177455000318389, 32.682897999829635 ], [ -97.174685000077716, 32.685464999811629 ], [ -97.17347300042681, 32.687662000377998 ], [ -97.173992999495724, 32.689833000361951 ], [ -97.169347999718966, 32.689757000404285 ], [ -97.165965000266382, 32.691650999874881 ], [ -97.164313000017444, 32.690455000161272 ], [ -97.164370999980079, 32.680176999854133 ], [ -97.159927000036859, 32.680162999883692 ], [ -97.155715000378919, 32.678017999628551 ], [ -97.149586000224886, 32.677764000106244 ] ] ] } },
{ "type": "Feature", "id": 316, "properties": { "pctwhite": 80.181200, "pctrep": 73.568282, "R": 167, "D": 53, "CNTYVTD": "4392474", "rmapshaperid": 308, "id": 279 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.231591999655592, 32.66812299970367 ], [ -97.231465999949336, 32.668113000068637 ], [ -97.223359000351877, 32.667956999942803 ], [ -97.223424999786872, 32.660899000092094 ], [ -97.224257999807634, 32.660259999791805 ], [ -97.226046000135966, 32.659338999769496 ], [ -97.22611499954543, 32.651139000385477 ], [ -97.224751000217381, 32.649867000448168 ], [ -97.224815999740912, 32.647104000004937 ], [ -97.228890999538933, 32.647072000386558 ], [ -97.227659999923304, 32.644892999640483 ], [ -97.230070999505713, 32.64341900008224 ], [ -97.232993999748544, 32.643190999680193 ], [ -97.234131000256497, 32.646424999578734 ], [ -97.234180000287239, 32.633075999565072 ], [ -97.234283999747262, 32.610192999567666 ], [ -97.236594999751546, 32.610388000391353 ], [ -97.252221000027518, 32.610360000042355 ], [ -97.252740000475384, 32.611023999761926 ], [ -97.252711999686483, 32.623676000404949 ], [ -97.253989000211504, 32.623792999982221 ], [ -97.24901400044989, 32.626362000030852 ], [ -97.248203999638037, 32.628382999630915 ], [ -97.244617999830652, 32.631393000199296 ], [ -97.242844000140323, 32.631802000013899 ], [ -97.24329599957602, 32.635815999628171 ], [ -97.242188999849276, 32.638360999660982 ], [ -97.242510999822926, 32.641792000185404 ], [ -97.247986999702121, 32.645804999942747 ], [ -97.246960000361383, 32.649771999864093 ], [ -97.244100000307014, 32.650733000207858 ], [ -97.243490000218287, 32.653489000434284 ], [ -97.241501999830291, 32.654972000078175 ], [ -97.237247000080174, 32.657587000298726 ], [ -97.235517000087768, 32.659990000413345 ], [ -97.238661999599771, 32.662964000134188 ], [ -97.24129999952676, 32.665301000137866 ], [ -97.237438999540302, 32.667790999609096 ], [ -97.231591999655592, 32.66812299970367 ] ] ] } },
{ "type": "Feature", "id": 317, "properties": { "pctwhite": 19.148187, "pctrep": 28.741866, "R": 265, "D": 648, "CNTYVTD": "4392484", "rmapshaperid": 309, "id": 280 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.036416999613508, 32.693188000146016 ], [ -97.036686000375283, 32.675912999903055 ], [ -97.044454000217556, 32.676275999686446 ], [ -97.044282000372633, 32.689368999605165 ], [ -97.043968000508499, 32.693478000356947 ], [ -97.041328999981076, 32.692493000073341 ], [ -97.037716000293059, 32.693944999683538 ], [ -97.036416999613508, 32.693188000146016 ] ] ] } },
{ "type": "Feature", "id": 318, "properties": { "pctwhite": 26.829980, "pctrep": 37.861046, "R": 485, "D": 790, "CNTYVTD": "4392488", "rmapshaperid": 310, "id": 281 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.064503999888373, 32.638300000437241 ], [ -97.063413999616216, 32.646141000317613 ], [ -97.063799000054033, 32.648411000161985 ], [ -97.06227099980039, 32.652231000242281 ], [ -97.063215999503171, 32.660752999669796 ], [ -97.063276999644131, 32.661372000279464 ], [ -97.062531000061369, 32.661435999664306 ], [ -97.058662000464878, 32.661671000318854 ], [ -97.054395999910966, 32.659387999824993 ], [ -97.052754999594342, 32.655640000034595 ], [ -97.051254000316376, 32.64736799980497 ], [ -97.05132699971999, 32.644637000145664 ], [ -97.064503999888373, 32.638300000437241 ] ] ] } },
{ "type": "Feature", "id": 319, "properties": { "pctwhite": 68.429178, "pctrep": 70.019157, "R": 731, "D": 301, "CNTYVTD": "4392505", "rmapshaperid": 311, "id": 282 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.146362000204903, 32.648850000432837 ], [ -97.150714999686215, 32.648693999689854 ], [ -97.157651000307069, 32.6486109997848 ], [ -97.158464000430413, 32.650007999648167 ], [ -97.166882999878027, 32.656051999668058 ], [ -97.166802999874875, 32.658329999737148 ], [ -97.163053999985138, 32.658418999803175 ], [ -97.157709000469822, 32.659679999659652 ], [ -97.150185000240683, 32.659661000317989 ], [ -97.146585999596624, 32.65550100041375 ], [ -97.146362000204903, 32.648850000432837 ] ] ] } },
{ "type": "Feature", "id": 320, "properties": { "pctwhite": 73.364276, "pctrep": 63.655610, "R": 1804, "D": 976, "CNTYVTD": "4392506", "rmapshaperid": 312, "id": 283 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.184998999914725, 32.646254000444834 ], [ -97.187502000223802, 32.649895999994044 ], [ -97.196820999635619, 32.660436000195297 ], [ -97.197135999714348, 32.663781000290037 ], [ -97.196189999625886, 32.665193000026683 ], [ -97.196180999633825, 32.673740999871711 ], [ -97.193173000032104, 32.674575999666999 ], [ -97.192940000379153, 32.672192000419379 ], [ -97.188485999831883, 32.667446000288315 ], [ -97.183204000221096, 32.665356999717709 ], [ -97.180441999553096, 32.663652000428208 ], [ -97.175516999729311, 32.658937999895493 ], [ -97.175545999742212, 32.649201999557192 ], [ -97.183204000274074, 32.649261999890562 ], [ -97.183227999837456, 32.64672000022172 ], [ -97.184998999914725, 32.646254000444834 ] ] ] } },
{ "type": "Feature", "id": 322, "properties": { "pctwhite": 37.941788, "pctrep": 44.204019, "R": 286, "D": 353, "CNTYVTD": "4392519", "rmapshaperid": 314, "id": 284 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.115199999659765, 32.65523699985345 ], [ -97.134696000513358, 32.65540999969506 ], [ -97.13489300047442, 32.651284999606062 ], [ -97.137308999969278, 32.657113999924221 ], [ -97.136920999961788, 32.659652000246574 ], [ -97.121806000241492, 32.659516000087514 ], [ -97.115135000227056, 32.659798999839509 ], [ -97.115199999659765, 32.65523699985345 ] ] ] } },
{ "type": "Feature", "id": 323, "properties": { "pctwhite": 62.970498, "pctrep": 58.032787, "R": 708, "D": 493, "CNTYVTD": "4392520", "rmapshaperid": 315, "id": 285 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.198764999971544, 32.67491399996549 ], [ -97.20023799964433, 32.673070999932897 ], [ -97.211842000258429, 32.669651999959122 ], [ -97.219515999675451, 32.66817000009322 ], [ -97.217172999765893, 32.669449000009401 ], [ -97.218282000244258, 32.678964000036977 ], [ -97.218288999818384, 32.683217000050405 ], [ -97.215554000002399, 32.683362999656467 ], [ -97.209700000451704, 32.680677000118983 ], [ -97.201713999488106, 32.674463000109277 ], [ -97.198764999971544, 32.67491399996549 ] ] ] } },
{ "type": "Feature", "id": 324, "properties": { "pctwhite": 69.270036, "pctrep": 63.235294, "R": 516, "D": 279, "CNTYVTD": "4392521", "rmapshaperid": 316, "id": 286 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.175516999729311, 32.658937999895493 ], [ -97.175587000291756, 32.672102999956195 ], [ -97.177318999907044, 32.673965000323378 ], [ -97.177414000159942, 32.675893999855631 ], [ -97.166689000198431, 32.674998999990926 ], [ -97.166802999874875, 32.658329999737148 ], [ -97.173684999788833, 32.658405999659095 ], [ -97.175516999729311, 32.658937999895493 ] ] ] } },
{ "type": "Feature", "id": 325, "properties": { "pctwhite": 66.585090, "pctrep": 64.851024, "R": 1393, "D": 722, "CNTYVTD": "4392522", "rmapshaperid": 317, "id": 287 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.175545999742212, 32.649201999557192 ], [ -97.175843000014652, 32.642451999580125 ], [ -97.169498000032775, 32.64302899962729 ], [ -97.166847999674019, 32.641584999942815 ], [ -97.158125000064004, 32.641550000130799 ], [ -97.158293999503712, 32.634253999625443 ], [ -97.170577999865074, 32.634557999691651 ], [ -97.171159000258754, 32.633897999645214 ], [ -97.171216999738448, 32.626598000062572 ], [ -97.160828000516744, 32.614014999912833 ], [ -97.170549000150999, 32.613705000421447 ], [ -97.180983999984733, 32.608526999880944 ], [ -97.184588000409619, 32.611877000012164 ], [ -97.194747999958125, 32.621509999711471 ], [ -97.194557999638164, 32.63321400016585 ], [ -97.192813999945201, 32.634668999761985 ], [ -97.188889000373692, 32.63481699991118 ], [ -97.188848999856603, 32.64092100008228 ], [ -97.189003999834753, 32.646212000174806 ], [ -97.184998999914725, 32.646254000444834 ], [ -97.183227999837456, 32.64672000022172 ], [ -97.183204000274074, 32.649261999890562 ], [ -97.175545999742212, 32.649201999557192 ] ] ] } },
{ "type": "Feature", "id": 326, "properties": { "pctwhite": 28.877588, "pctrep": 33.296089, "R": 298, "D": 580, "CNTYVTD": "4392523", "rmapshaperid": 318, "id": 288 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.06276199954128, 32.677201999701253 ], [ -97.062868999736509, 32.668383999910553 ], [ -97.063276999644131, 32.661372000279464 ], [ -97.063215999503171, 32.660752999669796 ], [ -97.06527099982992, 32.658644000124767 ], [ -97.067584000015458, 32.65854400037329 ], [ -97.068199000344734, 32.656418999796308 ], [ -97.071306000334758, 32.656899999749271 ], [ -97.074090000013101, 32.654220999682835 ], [ -97.077119000063917, 32.652485999968611 ], [ -97.077113000473148, 32.658846999907638 ], [ -97.0771100000144, 32.662239000298456 ], [ -97.079601000060876, 32.664723000348665 ], [ -97.082317999906863, 32.666086000146109 ], [ -97.086128999730434, 32.670250999989904 ], [ -97.088984000318135, 32.672252000090801 ], [ -97.09150899963592, 32.672146999643644 ], [ -97.092982000286142, 32.675071000353782 ], [ -97.092911000291167, 32.677565000009473 ], [ -97.06276199954128, 32.677201999701253 ] ] ] } },
{ "type": "Feature", "id": 327, "properties": { "pctwhite": 89.230769, "pctrep": 83.060748, "R": 1422, "D": 269, "CNTYVTD": "4392524", "rmapshaperid": 319, "id": 289 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.102155999526886, 32.58087900009059 ], [ -97.105663999766108, 32.580784000112814 ], [ -97.106469000180638, 32.579307000348415 ], [ -97.11424699994717, 32.57893800033991 ], [ -97.117776999835542, 32.57990399967921 ], [ -97.120149999563054, 32.576327000071821 ], [ -97.124674999841773, 32.573948000204453 ], [ -97.129210999664522, 32.572710000232661 ], [ -97.131004999566059, 32.569392000051153 ], [ -97.134249999996911, 32.568980000210679 ], [ -97.133151000111184, 32.574944999746222 ], [ -97.131927000119305, 32.583333000009816 ], [ -97.130584000361466, 32.583393000366456 ], [ -97.108969999769883, 32.593687999822144 ], [ -97.103236999644594, 32.585258999853032 ], [ -97.102155999526886, 32.58087900009059 ] ] ] } },
{ "type": "Feature", "id": 328, "properties": { "pctwhite": 28.308691, "pctrep": 31.949972, "R": 562, "D": 1177, "CNTYVTD": "4392525", "rmapshaperid": 320, "id": 290 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.115374000240791, 32.626668999614076 ], [ -97.115593999510466, 32.617841999774996 ], [ -97.117426000055801, 32.613019000395774 ], [ -97.117533000530898, 32.610246999667801 ], [ -97.119781999594579, 32.613540000342645 ], [ -97.125846000157182, 32.610936999716557 ], [ -97.142367999696603, 32.611062999585243 ], [ -97.139752999953018, 32.616014000029054 ], [ -97.137905999654322, 32.619221000382346 ], [ -97.136035000026538, 32.626899999601093 ], [ -97.115374000240791, 32.626668999614076 ] ] ] } },
{ "type": "Feature", "id": 329, "properties": { "pctwhite": 78.033378, "pctrep": 69.982993, "R": 823, "D": 334, "CNTYVTD": "4392535", "rmapshaperid": 321, "id": 291 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.158293999503712, 32.634253999625443 ], [ -97.15389400009839, 32.632660000135836 ], [ -97.153976999972528, 32.626911000292651 ], [ -97.136035000026538, 32.626899999601093 ], [ -97.137905999654322, 32.619221000382346 ], [ -97.139752999953018, 32.616014000029054 ], [ -97.154672000500952, 32.616149000385654 ], [ -97.154714000149397, 32.61399500003219 ], [ -97.160828000516744, 32.614014999912833 ], [ -97.171216999738448, 32.626598000062572 ], [ -97.171159000258754, 32.633897999645214 ], [ -97.170577999865074, 32.634557999691651 ], [ -97.158293999503712, 32.634253999625443 ] ] ] } },
{ "type": "Feature", "id": 330, "properties": { "pctwhite": 54.432689, "pctrep": 51.766639, "R": 630, "D": 566, "CNTYVTD": "4392536", "rmapshaperid": 322, "id": 292 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.073623999973194, 32.774538000372786 ], [ -97.073651000119739, 32.765754000411732 ], [ -97.075368000027908, 32.764451000031315 ], [ -97.085350000368948, 32.764504999974278 ], [ -97.085342000249184, 32.773022999921707 ], [ -97.083079999683662, 32.773192000313237 ], [ -97.080805999697859, 32.774003000355357 ], [ -97.073623999973194, 32.774538000372786 ] ] ] } },
{ "type": "Feature", "id": 331, "properties": { "pctwhite": 33.829268, "pctrep": 31.098266, "R": 269, "D": 583, "CNTYVTD": "4392537", "rmapshaperid": 323, "id": 293 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.062665999908617, 32.77367699999516 ], [ -97.062323000245271, 32.773592000160001 ], [ -97.06343000010358, 32.764335999751076 ], [ -97.063443999755535, 32.759762999639861 ], [ -97.085337000328764, 32.759773999785651 ], [ -97.085350000368948, 32.764504999974278 ], [ -97.075368000027908, 32.764451000031315 ], [ -97.073651000119739, 32.765754000411732 ], [ -97.073623999973194, 32.774538000372786 ], [ -97.064989999943947, 32.774303000122515 ], [ -97.062665999908617, 32.77367699999516 ] ] ] } },
{ "type": "Feature", "id": 332, "properties": { "pctwhite": 33.368504, "pctrep": 36.646884, "R": 494, "D": 833, "CNTYVTD": "4392541", "rmapshaperid": 324, "id": 294 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.102234000500601, 32.638271000190898 ], [ -97.102657000494389, 32.629714000432095 ], [ -97.100647000342917, 32.626499999637808 ], [ -97.106544000469128, 32.626508999757917 ], [ -97.107170000071989, 32.629056999789874 ], [ -97.11532400012085, 32.629060999859085 ], [ -97.115206999842286, 32.639960000248799 ], [ -97.112308000102601, 32.639958000156945 ], [ -97.107480000258661, 32.638168000352493 ], [ -97.102234000500601, 32.638271000190898 ] ] ] } },
{ "type": "Feature", "id": 333, "properties": { "pctwhite": 28.136201, "pctrep": 0.000000, "R": 0, "D": 6, "CNTYVTD": "4392546A", "rmapshaperid": 325, "id": 295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.035190999724577, 32.757097999904595 ], [ -97.037080999503729, 32.757097999887186 ], [ -97.037081000309911, 32.75862799967792 ], [ -97.037073000373866, 32.759436999666178 ], [ -97.035167000226679, 32.759430000213662 ], [ -97.035190999724577, 32.757097999904595 ] ] ] } },
{ "type": "Feature", "id": 335, "properties": { "pctwhite": 79.517524, "pctrep": 76.015109, "R": 805, "D": 246, "CNTYVTD": "4392548", "rmapshaperid": 327, "id": 296 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.131467000324676, 32.586424000285959 ], [ -97.130723999837514, 32.591284999962511 ], [ -97.131407999545303, 32.598931000149506 ], [ -97.121330000181516, 32.603772000157818 ], [ -97.119540999724393, 32.601197000182417 ], [ -97.120083999802404, 32.597687000194021 ], [ -97.12238499962271, 32.596442999618091 ], [ -97.123886999994781, 32.59165100042118 ], [ -97.12635799974511, 32.591164000414011 ], [ -97.126959000496527, 32.588014000363863 ], [ -97.128197999879617, 32.586738999874093 ], [ -97.131467000324676, 32.586424000285959 ] ] ] } },
{ "type": "Feature", "id": 336, "properties": { "pctwhite": 38.033728, "pctrep": 40.811153, "R": 322, "D": 456, "CNTYVTD": "4392553", "rmapshaperid": 328, "id": 297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.115085000189453, 32.678251999918743 ], [ -97.115086000335339, 32.665490000155629 ], [ -97.115135000227056, 32.659798999839509 ], [ -97.121806000241492, 32.659516000087514 ], [ -97.121380000396783, 32.662937000178545 ], [ -97.134243000529921, 32.663144999882242 ], [ -97.134046000171438, 32.666959000385624 ], [ -97.134725000333589, 32.675312999779429 ], [ -97.134539000341206, 32.675333999773365 ], [ -97.11888699974881, 32.678007999707098 ], [ -97.115085000189453, 32.678251999918743 ] ] ] } },
{ "type": "Feature", "id": 337, "properties": { "pctwhite": 80.085073, "pctrep": 66.719619, "R": 840, "D": 404, "CNTYVTD": "4392556", "rmapshaperid": 329, "id": 298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.200155999660865, 32.689672999947327 ], [ -97.200327000221264, 32.681470999734074 ], [ -97.193334999884087, 32.681531000419731 ], [ -97.198764999971544, 32.67491399996549 ], [ -97.201713999488106, 32.674463000109277 ], [ -97.209700000451704, 32.680677000118983 ], [ -97.215554000002399, 32.683362999656467 ], [ -97.218288999818384, 32.683217000050405 ], [ -97.216837999532828, 32.686451999628311 ], [ -97.209891999969159, 32.689695000324029 ], [ -97.200155999660865, 32.689672999947327 ] ] ] } },
{ "type": "Feature", "id": 338, "properties": { "pctwhite": 31.335953, "pctrep": 32.436261, "R": 229, "D": 470, "CNTYVTD": "4392557", "rmapshaperid": 330, "id": 299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.090483000080127, 32.598087000154003 ], [ -97.09278100038911, 32.600746999674001 ], [ -97.095625999681431, 32.599116000351408 ], [ -97.099624999836621, 32.604927999732368 ], [ -97.100492999805411, 32.604538000234392 ], [ -97.1063339995588, 32.61310999973594 ], [ -97.099743000334271, 32.616429000365592 ], [ -97.097520000117726, 32.613313999912442 ], [ -97.097031999741617, 32.610935000142057 ], [ -97.093248999569283, 32.604013999725098 ], [ -97.091159000395109, 32.602109000122823 ], [ -97.08914599963073, 32.598720000167866 ], [ -97.090483000080127, 32.598087000154003 ] ] ] } },
{ "type": "Feature", "id": 340, "properties": { "pctwhite": 4.530387, "pctrep": 13.793103, "R": 4, "D": 25, "CNTYVTD": "4392569", "rmapshaperid": 331, "id": 300 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.080459000032931, 32.70613899961706 ], [ -97.097668999866926, 32.706234999649773 ], [ -97.097653000023755, 32.707971000196906 ], [ -97.090917000049103, 32.707901000443265 ], [ -97.087218000528338, 32.708333999933437 ], [ -97.080374000234997, 32.710010999905116 ], [ -97.080459000032931, 32.70613899961706 ] ] ] } },
{ "type": "Feature", "id": 342, "properties": { "pctwhite": 44.696239, "pctrep": 43.768546, "R": 590, "D": 734, "CNTYVTD": "4392581", "rmapshaperid": 333, "id": 301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.122351000274875, 32.644813000221674 ], [ -97.122734000052603, 32.637948999621599 ], [ -97.121705999491752, 32.634114999787187 ], [ -97.135607999845362, 32.634419000431421 ], [ -97.133468000193972, 32.644936999914073 ], [ -97.122351000274875, 32.644813000221674 ] ] ] } },
{ "type": "Feature", "id": 345, "properties": { "pctwhite": 54.545455, "pctrep": 33.333333, "R": 4, "D": 7, "CNTYVTD": "4392606", "rmapshaperid": 335, "id": 302 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.163089999960746, 32.756131000250598 ], [ -97.161086000116754, 32.757558999834103 ], [ -97.159641999533946, 32.757556000259406 ], [ -97.163089999960746, 32.756131000250598 ] ] ] } },
{ "type": "Feature", "id": 348, "properties": { "pctwhite": 24.977211, "pctrep": 25.626741, "R": 92, "D": 263, "CNTYVTD": "4392613", "rmapshaperid": 337, "id": 303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.070340000353355, 32.62701800021734 ], [ -97.074083000467354, 32.63283799967521 ], [ -97.066066999541476, 32.635505999672183 ], [ -97.066951000421938, 32.631238999790867 ], [ -97.070340000353355, 32.62701800021734 ] ] ] } },
{ "type": "Feature", "id": 349, "properties": { "pctwhite": 54.545455, "pctrep": 50.000000, "R": 59, "D": 57, "CNTYVTD": "4392614", "rmapshaperid": 338, "id": 304 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.052620000301189, 32.548907000168214 ], [ -97.058758999766226, 32.548966000350312 ], [ -97.058247999678116, 32.55938599991395 ], [ -97.053371999784986, 32.560532999698836 ], [ -97.053385000528252, 32.563656999839857 ], [ -97.049021000451859, 32.563045999721759 ], [ -97.046882000257085, 32.560253999642633 ], [ -97.047768000035461, 32.558528000096601 ], [ -97.053895000377679, 32.555460999872409 ], [ -97.055247999844752, 32.55235400015092 ], [ -97.054948999852897, 32.550632000084086 ], [ -97.052620000301189, 32.548907000168214 ] ] ] } },
{ "type": "Feature", "id": 351, "properties": { "pctwhite": 100.000000, "pctrep": 50.000000, "R": 2, "D": 2, "CNTYVTD": "4392618", "rmapshaperid": 339, "id": 305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.063467000372924, 32.588255000446644 ], [ -97.061572000462078, 32.585284999642042 ], [ -97.06133900043811, 32.584980999844568 ], [ -97.062413999563219, 32.584506000304586 ], [ -97.06452300053202, 32.587757999671474 ], [ -97.063467000372924, 32.588255000446644 ] ] ] } },
{ "type": "Feature", "id": 352, "properties": { "pctwhite": 28.862310, "pctrep": 36.355556, "R": 818, "D": 1407, "CNTYVTD": "4392635", "rmapshaperid": 340, "id": 306 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.063799000054033, 32.648411000161985 ], [ -97.063413999616216, 32.646141000317613 ], [ -97.064503999888373, 32.638300000437241 ], [ -97.066066999541476, 32.635505999672183 ], [ -97.074083000467354, 32.63283799967521 ], [ -97.075142000236468, 32.634392000249882 ], [ -97.09837100013749, 32.623116999642512 ], [ -97.100647000342917, 32.626499999637808 ], [ -97.102657000494389, 32.629714000432095 ], [ -97.102234000500601, 32.638271000190898 ], [ -97.102259999962314, 32.64479900041529 ], [ -97.096077000039202, 32.641509000096633 ], [ -97.094499999772495, 32.641280000103826 ], [ -97.075135000239811, 32.64118999996105 ], [ -97.07511299992953, 32.648361999930856 ], [ -97.063799000054033, 32.648411000161985 ] ] ] } },
{ "type": "Feature", "id": 353, "properties": { "pctwhite": 64.112903, "pctrep": 67.101828, "R": 1028, "D": 481, "CNTYVTD": "4392636", "rmapshaperid": 341, "id": 307 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.131467000324676, 32.586424000285959 ], [ -97.131927000119305, 32.583333000009816 ], [ -97.133151000111184, 32.574944999746222 ], [ -97.138299000393459, 32.576698000141413 ], [ -97.144023999632864, 32.573645000136011 ], [ -97.162137999793927, 32.590713000213505 ], [ -97.158680999665961, 32.591682999976371 ], [ -97.150533000006249, 32.591786000377439 ], [ -97.149298999873764, 32.594995999592705 ], [ -97.147245000536728, 32.597647999861948 ], [ -97.143578000494841, 32.593125000335725 ], [ -97.131407999545303, 32.598931000149506 ], [ -97.130723999837514, 32.591284999962511 ], [ -97.131467000324676, 32.586424000285959 ] ] ] } },
{ "type": "Feature", "id": 354, "properties": { "pctwhite": 52.958690, "pctrep": 51.150660, "R": 1667, "D": 1556, "CNTYVTD": "4392643", "rmapshaperid": 342, "id": 308 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.066623999916146, 32.592476999737862 ], [ -97.063467000372924, 32.588255000446644 ], [ -97.06452300053202, 32.587757999671474 ], [ -97.062413999563219, 32.584506000304586 ], [ -97.06133900043811, 32.584980999844568 ], [ -97.055406000046446, 32.575364000366363 ], [ -97.053429000426348, 32.57327600027196 ], [ -97.053385000528252, 32.563656999839857 ], [ -97.053371999784986, 32.560532999698836 ], [ -97.058247999678116, 32.55938599991395 ], [ -97.058758999766226, 32.548966000350312 ], [ -97.078009000270598, 32.549267000387225 ], [ -97.080015999676718, 32.55233099972579 ], [ -97.079339000322378, 32.554495000087172 ], [ -97.082454000386917, 32.558981999639904 ], [ -97.087417000162844, 32.562139000263016 ], [ -97.084678999537886, 32.56493300032929 ], [ -97.080183000281238, 32.58082299977162 ], [ -97.080616000513871, 32.583100999594279 ], [ -97.078752000183684, 32.586740000417166 ], [ -97.078516000212318, 32.590186999576325 ], [ -97.074965000041729, 32.590438999946208 ], [ -97.074035999651372, 32.588967999613089 ], [ -97.066623999916146, 32.592476999737862 ] ] ] } },
{ "type": "Feature", "id": 355, "properties": { "pctwhite": 42.891725, "pctrep": 44.251902, "R": 1047, "D": 1299, "CNTYVTD": "4392644", "rmapshaperid": 343, "id": 309 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.037490999702328, 32.618455999629191 ], [ -97.037501999621099, 32.605508000227076 ], [ -97.038385000485036, 32.548662000139942 ], [ -97.052620000301189, 32.548907000168214 ], [ -97.054948999852897, 32.550632000084086 ], [ -97.055247999844752, 32.55235400015092 ], [ -97.053895000377679, 32.555460999872409 ], [ -97.047768000035461, 32.558528000096601 ], [ -97.046882000257085, 32.560253999642633 ], [ -97.049021000451859, 32.563045999721759 ], [ -97.053385000528252, 32.563656999839857 ], [ -97.053429000426348, 32.57327600027196 ], [ -97.055406000046446, 32.575364000366363 ], [ -97.06133900043811, 32.584980999844568 ], [ -97.061572000462078, 32.585284999642042 ], [ -97.057996999636671, 32.587747000006736 ], [ -97.052623999810564, 32.590607999893876 ], [ -97.045086999823624, 32.592438000377946 ], [ -97.05438600048916, 32.606090999645723 ], [ -97.050494000453185, 32.610847000135301 ], [ -97.045560000204148, 32.611988999626853 ], [ -97.043995999896026, 32.617111000101836 ], [ -97.040664000115044, 32.61831300031853 ], [ -97.037490999702328, 32.618455999629191 ] ] ] } },
{ "type": "Feature", "id": 356, "properties": { "pctwhite": 72.748117, "pctrep": 71.906841, "R": 988, "D": 376, "CNTYVTD": "4392645", "rmapshaperid": 344, "id": 310 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.083097999836752, 32.586564999983842 ], [ -97.084351999947657, 32.583744000424304 ], [ -97.088740000120396, 32.586260999792913 ], [ -97.091337999599503, 32.586356999938864 ], [ -97.093464999956268, 32.588271000293133 ], [ -97.096284999799181, 32.586640999622361 ], [ -97.1012379995054, 32.587096000336622 ], [ -97.102233999654601, 32.584756999730139 ], [ -97.100669000131404, 32.582482999771834 ], [ -97.102155999526886, 32.58087900009059 ], [ -97.103236999644594, 32.585258999853032 ], [ -97.108969999769883, 32.593687999822144 ], [ -97.107593999542118, 32.594461000135581 ], [ -97.100104000064661, 32.598101000195761 ], [ -97.095625999681431, 32.599116000351408 ], [ -97.09278100038911, 32.600746999674001 ], [ -97.090483000080127, 32.598087000154003 ], [ -97.083097999836752, 32.586564999983842 ] ] ] } },
{ "type": "Feature", "id": 357, "properties": { "pctwhite": 44.787823, "pctrep": 43.133803, "R": 245, "D": 305, "CNTYVTD": "4392655", "rmapshaperid": 345, "id": 311 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.063443999755535, 32.759762999639861 ], [ -97.063447000256303, 32.759523000271116 ], [ -97.086220999761608, 32.759579000149913 ], [ -97.088555999856993, 32.759104000101075 ], [ -97.088447000277597, 32.752664999930573 ], [ -97.089584999652857, 32.750546000074856 ], [ -97.09736700047155, 32.750003000115001 ], [ -97.097305999678483, 32.754087000213659 ], [ -97.099584000155232, 32.754119999796281 ], [ -97.099147000508879, 32.745972999603659 ], [ -97.102816999690162, 32.745994999650939 ], [ -97.102797999748063, 32.748030000204622 ], [ -97.10684600010191, 32.748073999919249 ], [ -97.106829999747134, 32.750004999919184 ], [ -97.102906000366048, 32.754334000083269 ], [ -97.102319999981219, 32.757072000088783 ], [ -97.104858000167496, 32.757505999863831 ], [ -97.105013999609071, 32.759617999661963 ], [ -97.114402000200755, 32.759886000188679 ], [ -97.097018000165122, 32.759834999792112 ], [ -97.085337000328764, 32.759773999785651 ], [ -97.063443999755535, 32.759762999639861 ] ] ] } },
{ "type": "Feature", "id": 358, "properties": { "pctwhite": 48.639456, "pctrep": 42.553191, "R": 20, "D": 26, "CNTYVTD": "4392656", "rmapshaperid": 346, "id": 312 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.097388000278627, 32.73894799988107 ], [ -97.111306999946791, 32.739159999612937 ], [ -97.110620000135938, 32.740957999658264 ], [ -97.108145000062891, 32.742802999936885 ], [ -97.103128999797818, 32.742867999955195 ], [ -97.103238999831561, 32.740239999851198 ], [ -97.09740100035296, 32.740087999690189 ], [ -97.097388000278627, 32.73894799988107 ] ] ] } },
{ "type": "Feature", "id": 359, "properties": { "pctwhite": 55.263158, "pctrep": 33.333333, "R": 4, "D": 8, "CNTYVTD": "4392657", "rmapshaperid": 347, "id": 313 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.114543999909941, 32.739074000018505 ], [ -97.114480999461975, 32.742803000116481 ], [ -97.112895999930757, 32.742837999758414 ], [ -97.112931999889042, 32.739155999750714 ], [ -97.114543999909941, 32.739074000018505 ] ] ] } },
{ "type": "Feature", "id": 360, "properties": { "pctwhite": 23.756019, "pctrep": 28.750000, "R": 69, "D": 170, "CNTYVTD": "4392658", "rmapshaperid": 348, "id": 314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.108396000379898, 32.703711000129566 ], [ -97.10675800002241, 32.70106199977684 ], [ -97.111557000508782, 32.701136000259538 ], [ -97.112702000081967, 32.702012999578628 ], [ -97.113427000451466, 32.706025999656816 ], [ -97.112670000053669, 32.708062000354332 ], [ -97.107623999912306, 32.708006999933531 ], [ -97.109021999568597, 32.705733000174739 ], [ -97.108396000379898, 32.703711000129566 ] ] ] } },
{ "type": "Feature", "id": 361, "properties": { "pctwhite": 27.659574, "pctrep": 28.571429, "R": 2, "D": 5, "CNTYVTD": "4392659", "rmapshaperid": 349, "id": 315 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.09158100050071, 32.691661999896702 ], [ -97.091547999687961, 32.692253999648123 ], [ -97.088344000346694, 32.691635999729328 ], [ -97.09158100050071, 32.691661999896702 ] ] ] } },
{ "type": "Feature", "id": 362, "properties": { "pctwhite": 40.756303, "pctrep": 57.031250, "R": 73, "D": 48, "CNTYVTD": "4392660", "rmapshaperid": 350, "id": 316 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.062600999677528, 32.735698000038539 ], [ -97.063099999947838, 32.735642000403246 ], [ -97.066940999766203, 32.735334000392562 ], [ -97.0841709998585, 32.73544199986749 ], [ -97.083578999924882, 32.741602000316568 ], [ -97.073573999737292, 32.743073000405502 ], [ -97.068075000239872, 32.743064999631727 ], [ -97.062723000471038, 32.743617000260926 ], [ -97.062600999677528, 32.735698000038539 ] ] ] } },
{ "type": "Feature", "id": 363, "properties": { "pctwhite": 35.652174, "pctrep": 38.666667, "R": 29, "D": 45, "CNTYVTD": "4392670", "rmapshaperid": 351, "id": 317 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.114480999461975, 32.742803000116481 ], [ -97.114543999909941, 32.739074000018505 ], [ -97.119719000243009, 32.739076999617332 ], [ -97.119671999997195, 32.742924000428452 ], [ -97.116920999982511, 32.742866000289148 ], [ -97.115879000464801, 32.742859000379362 ], [ -97.114480999461975, 32.742803000116481 ] ] ] } },
{ "type": "Feature", "id": 366, "properties": { "pctwhite": 72.262422, "pctrep": 68.171296, "R": 589, "D": 258, "CNTYVTD": "4393032", "rmapshaperid": 354, "id": 318 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.186446000401872, 32.823649999731956 ], [ -97.20746900003968, 32.82357900019484 ], [ -97.206203999592844, 32.823879000148018 ], [ -97.205917999469349, 32.829870000126306 ], [ -97.209264000089519, 32.831696999682123 ], [ -97.209260999983854, 32.833038000447587 ], [ -97.205053999614748, 32.832849999571586 ], [ -97.200906999991531, 32.833775999758352 ], [ -97.198996000268949, 32.833381999976005 ], [ -97.192755999856303, 32.833342000028992 ], [ -97.186323999686465, 32.833897000135899 ], [ -97.186446000401872, 32.823649999731956 ] ] ] } },
{ "type": "Feature", "id": 367, "properties": { "pctwhite": 84.244100, "pctrep": 71.405878, "R": 1798, "D": 680, "CNTYVTD": "4393035", "rmapshaperid": 355, "id": 319 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.089093000516982, 32.969605999920077 ], [ -97.090782000037663, 32.970809999712323 ], [ -97.092444000457562, 32.968358999952187 ], [ -97.102435000417699, 32.962913000267349 ], [ -97.104275000171981, 32.961435000254532 ], [ -97.105367999837384, 32.958870999546996 ], [ -97.107806999468281, 32.957374000113774 ], [ -97.106146999559456, 32.955666000058464 ], [ -97.104979999905595, 32.954693999973372 ], [ -97.116676999717768, 32.954907999899099 ], [ -97.116643000031459, 32.969595000264192 ], [ -97.116325999501569, 32.970868000121875 ], [ -97.127032999717571, 32.970872000092022 ], [ -97.126976999725471, 32.978582000109611 ], [ -97.124336000110389, 32.978681999696157 ], [ -97.124154000276917, 32.98983500036541 ], [ -97.109228999892267, 32.989873000063028 ], [ -97.108932999509562, 32.985487000290981 ], [ -97.101736999828887, 32.985339999702504 ], [ -97.095034000409711, 32.984755000375806 ], [ -97.09159400001964, 32.972726999960393 ], [ -97.089093000516982, 32.969605999920077 ] ] ] } },
{ "type": "Feature", "id": 368, "properties": { "pctwhite": 49.129944, "pctrep": 57.080035, "R": 649, "D": 468, "CNTYVTD": "4393036", "rmapshaperid": 356, "id": 320 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.082622000489948, 32.838685999845204 ], [ -97.091065000215664, 32.837530999861968 ], [ -97.099828999792038, 32.837577000402192 ], [ -97.099948000393823, 32.851843000442628 ], [ -97.090659999565545, 32.851740000214527 ], [ -97.082529999758762, 32.851849999588332 ], [ -97.082622000489948, 32.838685999845204 ] ] ] } },
{ "type": "Feature", "id": 369, "properties": { "pctwhite": 80.809471, "pctrep": 71.770833, "R": 1378, "D": 518, "CNTYVTD": "4393037", "rmapshaperid": 357, "id": 321 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.143325000011032, 32.859381000178402 ], [ -97.143388999483534, 32.851991000058824 ], [ -97.146462999795162, 32.852074999756951 ], [ -97.150888000500032, 32.853467999791427 ], [ -97.151006999726008, 32.84920899954448 ], [ -97.154809000485656, 32.848511999854409 ], [ -97.159266999839048, 32.848709000318735 ], [ -97.159822999981387, 32.849101999721356 ], [ -97.159865000490498, 32.858482999839708 ], [ -97.165933000399306, 32.85859200023944 ], [ -97.165805000343539, 32.860535000011097 ], [ -97.163400999930971, 32.86056999969567 ], [ -97.159883000408783, 32.861074999776122 ], [ -97.159885000379049, 32.861232000060134 ], [ -97.155232999715011, 32.86061899982186 ], [ -97.151118000010555, 32.862229000219941 ], [ -97.143325000011032, 32.859381000178402 ] ] ] } },
{ "type": "Feature", "id": 370, "properties": { "pctwhite": 46.536965, "pctrep": 64.148878, "R": 1172, "D": 615, "CNTYVTD": "4393038", "rmapshaperid": 358, "id": 322 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.098149999826589, 32.936378999654501 ], [ -97.091001000321427, 32.927131000126536 ], [ -97.088833999642972, 32.925426999945174 ], [ -97.085574000124168, 32.924311999786667 ], [ -97.078531999627515, 32.923394000353468 ], [ -97.083853000308608, 32.92315800019626 ], [ -97.090317999455408, 32.92082200043513 ], [ -97.091428000149222, 32.9218130001655 ], [ -97.098864000131286, 32.913166999968119 ], [ -97.100308000321306, 32.909121999649876 ], [ -97.112655999796175, 32.909774000085903 ], [ -97.11651299967194, 32.911939999973612 ], [ -97.117530999855717, 32.913535000144336 ], [ -97.117475000064815, 32.918900999797252 ], [ -97.119377000100371, 32.919323999894914 ], [ -97.109508000120059, 32.925227000129588 ], [ -97.105616000360953, 32.927902999851312 ], [ -97.110028999552583, 32.927863999657092 ], [ -97.109951000410845, 32.930923000030461 ], [ -97.102965999526148, 32.930933000220605 ], [ -97.102120000471672, 32.936278999790304 ], [ -97.098149999826589, 32.936378999654501 ] ] ] } },
{ "type": "Feature", "id": 371, "properties": { "pctwhite": 82.002903, "pctrep": 78.676471, "R": 1712, "D": 431, "CNTYVTD": "4393039", "rmapshaperid": 359, "id": 323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.104979999905595, 32.954693999973372 ], [ -97.104881999905089, 32.947599999681657 ], [ -97.108026999887755, 32.947648999691033 ], [ -97.10730799987094, 32.943274999563648 ], [ -97.113580999888271, 32.944038000229241 ], [ -97.116665000214041, 32.943705000165252 ], [ -97.124369000370663, 32.94506699995614 ], [ -97.128156999513237, 32.947183000072684 ], [ -97.134086999829861, 32.951934000037731 ], [ -97.140848000259538, 32.956804999642358 ], [ -97.146049000159039, 32.959507999735415 ], [ -97.150963000363333, 32.961260000359196 ], [ -97.150934999695792, 32.976087000035143 ], [ -97.15685499963746, 32.983119999974548 ], [ -97.15684999964914, 32.989861000146142 ], [ -97.126526999518688, 32.990029000286981 ], [ -97.124154000276917, 32.98983500036541 ], [ -97.124336000110389, 32.978681999696157 ], [ -97.126976999725471, 32.978582000109611 ], [ -97.127032999717571, 32.970872000092022 ], [ -97.116325999501569, 32.970868000121875 ], [ -97.116643000031459, 32.969595000264192 ], [ -97.116676999717768, 32.954907999899099 ], [ -97.104979999905595, 32.954693999973372 ] ] ] } },
{ "type": "Feature", "id": 372, "properties": { "pctwhite": 85.714286, "pctrep": 75.759938, "R": 972, "D": 295, "CNTYVTD": "4393040", "rmapshaperid": 360, "id": 324 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.219719000011168, 32.928680000281219 ], [ -97.22192199981869, 32.927116999936693 ], [ -97.225199000116859, 32.927849999707242 ], [ -97.232115999885337, 32.926580000270391 ], [ -97.239439000149403, 32.926546999904041 ], [ -97.242974000078959, 32.927196000094 ], [ -97.244541999810536, 32.925292000325982 ], [ -97.247881999702955, 32.923849999898906 ], [ -97.249655000201244, 32.927388000187314 ], [ -97.253907000362361, 32.928992999682158 ], [ -97.25365600016184, 32.934573000145853 ], [ -97.240652999983126, 32.934351000352443 ], [ -97.218498000001773, 32.934512999835142 ], [ -97.219719000011168, 32.928680000281219 ] ] ] } },
{ "type": "Feature", "id": 373, "properties": { "pctwhite": 53.988459, "pctrep": 63.568465, "R": 766, "D": 419, "CNTYVTD": "4393041", "rmapshaperid": 361, "id": 325 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.214311000220007, 32.843462000214103 ], [ -97.214308000315427, 32.842579000005713 ], [ -97.195669999771098, 32.842405000297823 ], [ -97.192986999686596, 32.842955999808474 ], [ -97.192363999594946, 32.838517999725092 ], [ -97.191882000032592, 32.838319000087644 ], [ -97.192755999856303, 32.833342000028992 ], [ -97.198996000268949, 32.833381999976005 ], [ -97.19913699991902, 32.834779999740157 ], [ -97.205420000062944, 32.83303299990358 ], [ -97.209260999983854, 32.833038000447587 ], [ -97.217005000185054, 32.833507999731324 ], [ -97.221759000410387, 32.835423999767144 ], [ -97.22481200026597, 32.838978999617247 ], [ -97.223789999887458, 32.842357000358113 ], [ -97.221991999801119, 32.843365000054824 ], [ -97.214311000220007, 32.843462000214103 ] ] ] } },
{ "type": "Feature", "id": 374, "properties": { "pctwhite": 76.531924, "pctrep": 74.621352, "R": 2020, "D": 655, "CNTYVTD": "4393043", "rmapshaperid": 362, "id": 326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.356048000395887, 32.990196999731403 ], [ -97.354692000042078, 32.986268999617579 ], [ -97.361824999558493, 32.986246999893183 ], [ -97.36190400043489, 32.970075999798041 ], [ -97.365529999963144, 32.970063999988426 ], [ -97.367360999934675, 32.969036000428559 ], [ -97.41280700019044, 32.968930000211316 ], [ -97.417087000501724, 32.967951000299884 ], [ -97.420071999722836, 32.972953999872828 ], [ -97.417243000109508, 32.981945999996704 ], [ -97.415462000090955, 32.992047999879091 ], [ -97.396871999482443, 32.990722000320574 ], [ -97.379940000225588, 32.990143999975565 ], [ -97.356048000395887, 32.990196999731403 ] ] ] } },
{ "type": "Feature", "id": 375, "properties": { "pctwhite": 86.776860, "pctrep": 78.238607, "R": 1528, "D": 403, "CNTYVTD": "4393049", "rmapshaperid": 363, "id": 327 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.185959999714882, 32.887483999773735 ], [ -97.185993999626419, 32.879847999565321 ], [ -97.194633999782155, 32.874792000111164 ], [ -97.19468599981839, 32.883945999658941 ], [ -97.205464000194596, 32.883881999849528 ], [ -97.208506000328057, 32.88215399993878 ], [ -97.211911000314359, 32.882153000321935 ], [ -97.211384999922728, 32.888739000381641 ], [ -97.211927000467227, 32.893539999635962 ], [ -97.213970999744831, 32.895956000047363 ], [ -97.213936999823133, 32.898728000440698 ], [ -97.210693000002593, 32.899394000350043 ], [ -97.207334000421895, 32.89746299997848 ], [ -97.201924999680926, 32.895534999893037 ], [ -97.199847000380402, 32.893807999751246 ], [ -97.196438999921867, 32.89297699954863 ], [ -97.193985000018699, 32.890088999816491 ], [ -97.190375999691739, 32.887433999872918 ], [ -97.185959999714882, 32.887483999773735 ] ] ] } },
{ "type": "Feature", "id": 376, "properties": { "pctwhite": 80.214724, "pctrep": 72.711111, "R": 1636, "D": 570, "CNTYVTD": "4393054", "rmapshaperid": 364, "id": 328 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.232254999920855, 32.911980000004462 ], [ -97.232284999713755, 32.909662999727232 ], [ -97.232764000039339, 32.908414000030085 ], [ -97.238218000049528, 32.901595000162459 ], [ -97.238560000119904, 32.8925179999138 ], [ -97.247068000428158, 32.892557999937679 ], [ -97.254441999922904, 32.892809000089194 ], [ -97.254392000184339, 32.894541999828746 ], [ -97.258630999831652, 32.894910999890023 ], [ -97.255961000393199, 32.91141300010937 ], [ -97.252243000298904, 32.912052000136143 ], [ -97.232254999920855, 32.911980000004462 ] ] ] } },
{ "type": "Feature", "id": 377, "properties": { "pctwhite": 79.751434, "pctrep": 74.708675, "R": 1731, "D": 544, "CNTYVTD": "4393063", "rmapshaperid": 365, "id": 329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.212041999789179, 32.868163000146261 ], [ -97.21594299994014, 32.867610000420107 ], [ -97.237940999630581, 32.867646000394188 ], [ -97.237832000310902, 32.881368000380959 ], [ -97.231823000492184, 32.882146000407076 ], [ -97.224952999617756, 32.882185000138733 ], [ -97.211911000314359, 32.882153000321935 ], [ -97.212041999789179, 32.868163000146261 ] ] ] } },
{ "type": "Feature", "id": 378, "properties": { "pctwhite": 84.218289, "pctrep": 76.631925, "R": 1397, "D": 388, "CNTYVTD": "4393072", "rmapshaperid": 366, "id": 330 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.232115999885337, 32.926580000270391 ], [ -97.232254999920855, 32.911980000004462 ], [ -97.252243000298904, 32.912052000136143 ], [ -97.255961000393199, 32.91141300010937 ], [ -97.255152000412139, 32.916712999868992 ], [ -97.254289000516849, 32.921870999610945 ], [ -97.253907000362361, 32.928992999682158 ], [ -97.249655000201244, 32.927388000187314 ], [ -97.247881999702955, 32.923849999898906 ], [ -97.244541999810536, 32.925292000325982 ], [ -97.242974000078959, 32.927196000094 ], [ -97.239439000149403, 32.926546999904041 ], [ -97.232115999885337, 32.926580000270391 ] ] ] } },
{ "type": "Feature", "id": 379, "properties": { "pctwhite": 67.320261, "pctrep": 68.856947, "R": 1006, "D": 436, "CNTYVTD": "4393114", "rmapshaperid": 367, "id": 331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.032591000178911, 32.930606999694767 ], [ -97.037580000024406, 32.932222999748646 ], [ -97.042386999910946, 32.932306999825855 ], [ -97.046922000302615, 32.930879999989571 ], [ -97.059959000483261, 32.923737999822102 ], [ -97.065794000306951, 32.922706999834894 ], [ -97.078531999627515, 32.923394000353468 ], [ -97.085574000124168, 32.924311999786667 ], [ -97.088833999642972, 32.925426999945174 ], [ -97.091001000321427, 32.927131000126536 ], [ -97.098149999826589, 32.936378999654501 ], [ -97.100472000098407, 32.939880999881431 ], [ -97.099373999922321, 32.941141999730569 ], [ -97.095290999519179, 32.941111000333578 ], [ -97.095709000071381, 32.938873999734923 ], [ -97.093805999990181, 32.937983999824489 ], [ -97.08953099992938, 32.939057000196101 ], [ -97.090667999815864, 32.941093999946865 ], [ -97.078168999581948, 32.941029000111506 ], [ -97.066314000155202, 32.941038999689113 ], [ -97.064632999768747, 32.941374000433321 ], [ -97.061879999573435, 32.942779999540306 ], [ -97.032499999877473, 32.969242999733346 ], [ -97.032591000178911, 32.930606999694767 ] ] ] } },
{ "type": "Feature", "id": 380, "properties": { "pctwhite": 75.027996, "pctrep": 68.595825, "R": 723, "D": 311, "CNTYVTD": "4393131", "rmapshaperid": 368, "id": 332 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.20746900003968, 32.82357900019484 ], [ -97.207635999624372, 32.819375999888848 ], [ -97.212244000162471, 32.819166000288945 ], [ -97.212352999534318, 32.808948999571413 ], [ -97.224672999726465, 32.809054999988767 ], [ -97.224766000385756, 32.818758999920163 ], [ -97.229262999504513, 32.822760999759247 ], [ -97.227831000328322, 32.823837999637469 ], [ -97.227478999656952, 32.82410600028097 ], [ -97.223678999969522, 32.826923000351961 ], [ -97.223594999519094, 32.823819000208083 ], [ -97.20746900003968, 32.82357900019484 ] ] ] } },
{ "type": "Feature", "id": 381, "properties": { "pctwhite": 68.598055, "pctrep": 65.374332, "R": 489, "D": 238, "CNTYVTD": "4393139", "rmapshaperid": 369, "id": 333 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.169366999937324, 32.805564999591255 ], [ -97.179534999996648, 32.806304999834964 ], [ -97.179399000192348, 32.808970999827793 ], [ -97.175344999937977, 32.808934000238132 ], [ -97.175339000326133, 32.816241999945731 ], [ -97.174332999871552, 32.81894199970904 ], [ -97.174704000305411, 32.821151000248264 ], [ -97.173038999548396, 32.823607000042074 ], [ -97.16448500027883, 32.823562999773095 ], [ -97.164566999580529, 32.815648000157118 ], [ -97.165584000161743, 32.81297899994459 ], [ -97.168572999983226, 32.811501000434667 ], [ -97.169176000471097, 32.808870999975014 ], [ -97.169175000386815, 32.808784000202927 ], [ -97.169366999937324, 32.805564999591255 ] ] ] } },
{ "type": "Feature", "id": 382, "properties": { "pctwhite": 80.285494, "pctrep": 72.945522, "R": 790, "D": 281, "CNTYVTD": "4393140", "rmapshaperid": 370, "id": 334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.221759000410387, 32.835423999767144 ], [ -97.219840000340227, 32.833731000127322 ], [ -97.229302000147669, 32.83373899971032 ], [ -97.228787999745578, 32.826538000205794 ], [ -97.227478999656952, 32.82410600028097 ], [ -97.227831000328322, 32.823837999637469 ], [ -97.239075000258879, 32.8239559996018 ], [ -97.238728999602046, 32.84039000011591 ], [ -97.233533999801324, 32.840220000279992 ], [ -97.227797999513641, 32.838760000204175 ], [ -97.221759000410387, 32.835423999767144 ] ] ] } },
{ "type": "Feature", "id": 383, "properties": { "pctwhite": 81.481481, "pctrep": 81.818182, "R": 18, "D": 4, "CNTYVTD": "4393152", "rmapshaperid": 371, "id": 335 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.343208999759952, 32.978468000269288 ], [ -97.347766000417195, 32.974208999902437 ], [ -97.350825000166736, 32.970021999657689 ], [ -97.352152999794626, 32.969968000361177 ], [ -97.36190400043489, 32.970075999798041 ], [ -97.361824999558493, 32.986246999893183 ], [ -97.354692000042078, 32.986268999617579 ], [ -97.356048000395887, 32.990196999731403 ], [ -97.328832999586055, 32.99011599964512 ], [ -97.343208999759952, 32.978468000269288 ] ] ] } },
{ "type": "Feature", "id": 384, "properties": { "pctwhite": 86.544773, "pctrep": 75.680132, "R": 918, "D": 286, "CNTYVTD": "4393156", "rmapshaperid": 372, "id": 336 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.167636999719974, 32.850796000114471 ], [ -97.166920000463733, 32.84910900019181 ], [ -97.159822999981387, 32.849101999721356 ], [ -97.159266999839048, 32.848709000318735 ], [ -97.159452999508389, 32.840031000216356 ], [ -97.166185999731454, 32.839555000016425 ], [ -97.166123000277977, 32.835705999744931 ], [ -97.167869999663367, 32.833941999584745 ], [ -97.173890999983072, 32.833951000179042 ], [ -97.173790000477709, 32.840487999989413 ], [ -97.174296999947643, 32.848672000365049 ], [ -97.167636999719974, 32.850796000114471 ] ] ] } },
{ "type": "Feature", "id": 385, "properties": { "pctwhite": 65.029694, "pctrep": 59.523810, "R": 800, "D": 517, "CNTYVTD": "4393157", "rmapshaperid": 373, "id": 337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.154540999841473, 32.823177000028899 ], [ -97.155763000256101, 32.823438999942816 ], [ -97.16448500027883, 32.823562999773095 ], [ -97.16433500024641, 32.827293000258763 ], [ -97.166432000137547, 32.827215000236457 ], [ -97.166443999663286, 32.833963000250989 ], [ -97.167869999663367, 32.833941999584745 ], [ -97.166123000277977, 32.835705999744931 ], [ -97.166185999731454, 32.839555000016425 ], [ -97.159452999508389, 32.840031000216356 ], [ -97.153568000352706, 32.840039999556282 ], [ -97.150366999725108, 32.839072999863596 ], [ -97.154659000311895, 32.836866000260606 ], [ -97.154133999696086, 32.830236000438362 ], [ -97.154540999841473, 32.823177000028899 ] ] ] } },
{ "type": "Feature", "id": 386, "properties": { "pctwhite": 46.990932, "pctrep": 54.518072, "R": 724, "D": 572, "CNTYVTD": "4393160", "rmapshaperid": 374, "id": 338 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.082602000226444, 32.837150999642922 ], [ -97.082239999630545, 32.82881800009045 ], [ -97.082326000430797, 32.822381000304894 ], [ -97.099642999670948, 32.822417999704747 ], [ -97.099828999792038, 32.837577000402192 ], [ -97.091065000215664, 32.837530999861968 ], [ -97.082622000489948, 32.838685999845204 ], [ -97.082602000226444, 32.837150999642922 ] ] ] } },
{ "type": "Feature", "id": 387, "properties": { "pctwhite": 71.655329, "pctrep": 61.326443, "R": 712, "D": 422, "CNTYVTD": "4393164", "rmapshaperid": 375, "id": 339 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.212352999534318, 32.808948999571413 ], [ -97.212370999586511, 32.804219000385984 ], [ -97.221198999765193, 32.800451999745789 ], [ -97.235919000172728, 32.794217999627804 ], [ -97.237398000485967, 32.795009000156668 ], [ -97.242022000363662, 32.800699000251669 ], [ -97.247072000449961, 32.802799000455288 ], [ -97.248658999667597, 32.804068999821546 ], [ -97.248682999574683, 32.807595000257479 ], [ -97.246732000484471, 32.803983000024708 ], [ -97.244386999863892, 32.803958999882887 ], [ -97.244386999623316, 32.809099000326434 ], [ -97.224672999726465, 32.809054999988767 ], [ -97.212352999534318, 32.808948999571413 ] ] ] } },
{ "type": "Feature", "id": 388, "properties": { "pctwhite": 39.708752, "pctrep": 54.488681, "R": 698, "D": 554, "CNTYVTD": "4393166", "rmapshaperid": 376, "id": 340 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.139119000458678, 32.814743000371323 ], [ -97.142198000220588, 32.813675999970428 ], [ -97.144090999742119, 32.812999999943543 ], [ -97.15596800021271, 32.8089670001131 ], [ -97.169176000471097, 32.808870999975014 ], [ -97.168572999983226, 32.811501000434667 ], [ -97.165584000161743, 32.81297899994459 ], [ -97.164566999580529, 32.815648000157118 ], [ -97.16448500027883, 32.823562999773095 ], [ -97.155763000256101, 32.823438999942816 ], [ -97.155809999946982, 32.815320000250949 ], [ -97.151627999554364, 32.814770999716089 ], [ -97.144713999678757, 32.814820999542697 ], [ -97.144720999848687, 32.818059999876759 ], [ -97.138188000266396, 32.817388999727477 ], [ -97.139119000458678, 32.814743000371323 ] ] ] } },
{ "type": "Feature", "id": 389, "properties": { "pctwhite": 70.356836, "pctrep": 65.471698, "R": 1041, "D": 523, "CNTYVTD": "4393172", "rmapshaperid": 377, "id": 341 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.16448500027883, 32.823562999773095 ], [ -97.173038999548396, 32.823607000042074 ], [ -97.186446000401872, 32.823649999731956 ], [ -97.186323999686465, 32.833897000135899 ], [ -97.173890999983072, 32.833951000179042 ], [ -97.167869999663367, 32.833941999584745 ], [ -97.166443999663286, 32.833963000250989 ], [ -97.166432000137547, 32.827215000236457 ], [ -97.16433500024641, 32.827293000258763 ], [ -97.16448500027883, 32.823562999773095 ] ] ] } },
{ "type": "Feature", "id": 390, "properties": { "pctwhite": 64.590105, "pctrep": 64.563617, "R": 1228, "D": 649, "CNTYVTD": "4393176", "rmapshaperid": 378, "id": 342 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.186446000401872, 32.823649999731956 ], [ -97.186529999740614, 32.806758999786268 ], [ -97.198802999960463, 32.807644000425327 ], [ -97.205537999570538, 32.806904000388435 ], [ -97.212165999644725, 32.8043050000311 ], [ -97.212370999586511, 32.804219000385984 ], [ -97.212352999534318, 32.808948999571413 ], [ -97.212244000162471, 32.819166000288945 ], [ -97.207635999624372, 32.819375999888848 ], [ -97.20746900003968, 32.82357900019484 ], [ -97.186446000401872, 32.823649999731956 ] ] ] } },
{ "type": "Feature", "id": 391, "properties": { "pctwhite": 86.217009, "pctrep": 80.579483, "R": 1029, "D": 235, "CNTYVTD": "4393177", "rmapshaperid": 379, "id": 343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.186101000193773, 32.86040800004367 ], [ -97.186104000093991, 32.860292000411569 ], [ -97.186422999691317, 32.855499999942658 ], [ -97.189562000151355, 32.852907999653482 ], [ -97.192624000519018, 32.855656000286352 ], [ -97.194819999596376, 32.856466999777787 ], [ -97.194736999549491, 32.860398999575899 ], [ -97.198867000452196, 32.860505000125052 ], [ -97.199592999482093, 32.86309799977564 ], [ -97.208748999701328, 32.863298000173316 ], [ -97.211920000251709, 32.857427000416415 ], [ -97.212058999795289, 32.861593000081562 ], [ -97.212042999948608, 32.867147999695362 ], [ -97.207656000531188, 32.867164999672625 ], [ -97.194633999782155, 32.874792000111164 ], [ -97.185993999626419, 32.879847999565321 ], [ -97.186112999532256, 32.866001999774923 ], [ -97.186101000193773, 32.86040800004367 ] ] ] } },
{ "type": "Feature", "id": 392, "properties": { "pctwhite": 56.166951, "pctrep": 61.419173, "R": 1307, "D": 788, "CNTYVTD": "4393183", "rmapshaperid": 380, "id": 344 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.099642999670948, 32.822417999704747 ], [ -97.10519900009146, 32.822431999910684 ], [ -97.108251000056512, 32.821077999898471 ], [ -97.111482999966285, 32.820723999589092 ], [ -97.117317000094658, 32.814799000199571 ], [ -97.118357999771092, 32.814612999676811 ], [ -97.134694999854233, 32.814721000128699 ], [ -97.134646000155399, 32.822113000408116 ], [ -97.133557999783193, 32.82210500019729 ], [ -97.124590999823667, 32.822110999700897 ], [ -97.124586999999863, 32.825836999750088 ], [ -97.125504999828138, 32.829627999621628 ], [ -97.121211000098114, 32.829653000260357 ], [ -97.120982000007842, 32.833947999572892 ], [ -97.122879999941077, 32.837339000418794 ], [ -97.119687999556206, 32.83765899980191 ], [ -97.099828999792038, 32.837577000402192 ], [ -97.099642999670948, 32.822417999704747 ] ] ] } },
{ "type": "Feature", "id": 394, "properties": { "pctwhite": 70.812667, "pctrep": 65.610860, "R": 580, "D": 292, "CNTYVTD": "4393187", "rmapshaperid": 382, "id": 345 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.24684900014357, 32.875400000415567 ], [ -97.247224000188254, 32.867706000143976 ], [ -97.263441000134691, 32.867820000043139 ], [ -97.26338200035164, 32.868187999669082 ], [ -97.262378000189969, 32.874264999909784 ], [ -97.255003999873836, 32.874120999649939 ], [ -97.255019999966422, 32.876260999728864 ], [ -97.249814999989141, 32.876172999687157 ], [ -97.24684900014357, 32.875400000415567 ] ] ] } },
{ "type": "Feature", "id": 395, "properties": { "pctwhite": 84.353741, "pctrep": 82.617188, "R": 423, "D": 86, "CNTYVTD": "4393192", "rmapshaperid": 383, "id": 346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.308482999834936, 32.975109000354664 ], [ -97.310190999635893, 32.965779999810401 ], [ -97.310266999887844, 32.951839000353829 ], [ -97.310848000397925, 32.947254999738583 ], [ -97.312530000181823, 32.942030999982883 ], [ -97.322696999857627, 32.94186800010737 ], [ -97.322738999818725, 32.931527999834891 ], [ -97.330984999593298, 32.931320000111498 ], [ -97.331485999637636, 32.93085500028247 ], [ -97.331526999533551, 32.924113000371619 ], [ -97.348817999643728, 32.924293000250486 ], [ -97.348712000024278, 32.93769599968077 ], [ -97.348570999948834, 32.953367000051863 ], [ -97.349363999782881, 32.959443000051579 ], [ -97.349396000162955, 32.971308000065179 ], [ -97.347766000417195, 32.974208999902437 ], [ -97.343208999759952, 32.978468000269288 ], [ -97.340199000386832, 32.976406999925025 ], [ -97.336483000425247, 32.977498999718996 ], [ -97.331910000399816, 32.974913999744871 ], [ -97.328753999726274, 32.977029000257424 ], [ -97.323062000052033, 32.976519000191118 ], [ -97.31606899971257, 32.972682999864631 ], [ -97.308482999834936, 32.975109000354664 ] ] ] } },
{ "type": "Feature", "id": 396, "properties": { "pctwhite": 84.251265, "pctrep": 78.159704, "R": 1478, "D": 397, "CNTYVTD": "4393193", "rmapshaperid": 384, "id": 347 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.162297999754117, 32.897528000251917 ], [ -97.161459000519883, 32.895366000175493 ], [ -97.161433999666897, 32.882100999588815 ], [ -97.160573000163822, 32.876727999933713 ], [ -97.162965000478863, 32.874778000406629 ], [ -97.164229000461503, 32.873715999965391 ], [ -97.164269999657364, 32.874900999660795 ], [ -97.173668000229412, 32.874822000294365 ], [ -97.173636999846366, 32.880401000367371 ], [ -97.177381999618135, 32.880410999682098 ], [ -97.173663000360122, 32.881409000221709 ], [ -97.173775000325932, 32.88522100005644 ], [ -97.173772999515847, 32.88619800028696 ], [ -97.173770000003358, 32.88917000016918 ], [ -97.185959999988384, 32.889242999696151 ], [ -97.185957000323199, 32.901234999963819 ], [ -97.186255999736801, 32.903848000172857 ], [ -97.176837999575952, 32.90385999969736 ], [ -97.174982999996999, 32.90455500007134 ], [ -97.166864999763817, 32.904533000440551 ], [ -97.167009999571818, 32.899959000360703 ], [ -97.163948000056962, 32.899942999742386 ], [ -97.162297999754117, 32.897528000251917 ] ] ] } },
{ "type": "Feature", "id": 397, "properties": { "pctwhite": 64.244604, "pctrep": 65.342350, "R": 773, "D": 389, "CNTYVTD": "4393194", "rmapshaperid": 385, "id": 348 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.238594999471076, 32.853117999816 ], [ -97.249413999887096, 32.853124000118726 ], [ -97.264029999693506, 32.853039999755872 ], [ -97.263976000504343, 32.86058499980723 ], [ -97.237996000464506, 32.860413999711575 ], [ -97.238594999471076, 32.853117999816 ] ] ] } },
{ "type": "Feature", "id": 398, "properties": { "pctwhite": 84.765178, "pctrep": 72.647849, "R": 1081, "D": 385, "CNTYVTD": "4393196", "rmapshaperid": 386, "id": 349 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.17306699954311, 32.86011500013047 ], [ -97.169517000349586, 32.860139999706227 ], [ -97.168683000171924, 32.860621000069258 ], [ -97.16779199990475, 32.860531999745199 ], [ -97.167636999719974, 32.850796000114471 ], [ -97.174296999947643, 32.848672000365049 ], [ -97.19228099950594, 32.84316200005383 ], [ -97.192387999998189, 32.850051000238381 ], [ -97.186422999691317, 32.855499999942658 ], [ -97.186104000093991, 32.860292000411569 ], [ -97.186101000193773, 32.86040800004367 ], [ -97.185683000342792, 32.861808999897789 ], [ -97.183954000182467, 32.862367000198546 ], [ -97.181982000198872, 32.859203999569566 ], [ -97.177897000174411, 32.862513000142528 ], [ -97.17306699954311, 32.86011500013047 ] ] ] } },
{ "type": "Feature", "id": 399, "properties": { "pctwhite": 72.345195, "pctrep": 64.188752, "R": 993, "D": 529, "CNTYVTD": "4393200", "rmapshaperid": 387, "id": 350 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.143388999483534, 32.851991000058824 ], [ -97.143206999669246, 32.844242999823081 ], [ -97.150366999725108, 32.839072999863596 ], [ -97.153568000352706, 32.840039999556282 ], [ -97.159452999508389, 32.840031000216356 ], [ -97.159266999839048, 32.848709000318735 ], [ -97.154809000485656, 32.848511999854409 ], [ -97.151006999726008, 32.84920899954448 ], [ -97.150888000500032, 32.853467999791427 ], [ -97.146462999795162, 32.852074999756951 ], [ -97.143388999483534, 32.851991000058824 ] ] ] } },
{ "type": "Feature", "id": 400, "properties": { "pctwhite": 85.707855, "pctrep": 79.778507, "R": 1945, "D": 471, "CNTYVTD": "4393209", "rmapshaperid": 388, "id": 351 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.186255999736801, 32.903848000172857 ], [ -97.185957000323199, 32.901234999963819 ], [ -97.185959999988384, 32.889242999696151 ], [ -97.185958999552938, 32.888885999824062 ], [ -97.185959999714882, 32.887483999773735 ], [ -97.190375999691739, 32.887433999872918 ], [ -97.193985000018699, 32.890088999816491 ], [ -97.196438999921867, 32.89297699954863 ], [ -97.199847000380402, 32.893807999751246 ], [ -97.201924999680926, 32.895534999893037 ], [ -97.207334000421895, 32.89746299997848 ], [ -97.210693000002593, 32.899394000350043 ], [ -97.213936999823133, 32.898728000440698 ], [ -97.214217000143719, 32.900289999746597 ], [ -97.214444999660145, 32.907564000222699 ], [ -97.19774499987534, 32.907552999779213 ], [ -97.197713000134655, 32.911660999869561 ], [ -97.187985999760087, 32.911661000379077 ], [ -97.186742999851035, 32.91145100028681 ], [ -97.186255999736801, 32.903848000172857 ] ] ] } },
{ "type": "Feature", "id": 401, "properties": { "pctwhite": 70.945542, "pctrep": 60.084034, "R": 715, "D": 462, "CNTYVTD": "4393212", "rmapshaperid": 389, "id": 352 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.119687999556206, 32.83765899980191 ], [ -97.122879999941077, 32.837339000418794 ], [ -97.120982000007842, 32.833947999572892 ], [ -97.121211000098114, 32.829653000260357 ], [ -97.125504999828138, 32.829627999621628 ], [ -97.124586999999863, 32.825836999750088 ], [ -97.124590999823667, 32.822110999700897 ], [ -97.133557999783193, 32.82210500019729 ], [ -97.13333899972082, 32.836841000340158 ], [ -97.128762999837733, 32.83686599964971 ], [ -97.123956000343242, 32.837666000290525 ], [ -97.119687999556206, 32.83765899980191 ] ] ] } },
{ "type": "Feature", "id": 402, "properties": { "pctwhite": 73.748309, "pctrep": 66.284623, "R": 694, "D": 328, "CNTYVTD": "4393213", "rmapshaperid": 390, "id": 353 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.179534999996648, 32.806304999834964 ], [ -97.186529999740614, 32.806758999786268 ], [ -97.186446000401872, 32.823649999731956 ], [ -97.173038999548396, 32.823607000042074 ], [ -97.174704000305411, 32.821151000248264 ], [ -97.174332999871552, 32.81894199970904 ], [ -97.175339000326133, 32.816241999945731 ], [ -97.175344999937977, 32.808934000238132 ], [ -97.179399000192348, 32.808970999827793 ], [ -97.179534999996648, 32.806304999834964 ] ] ] } },
{ "type": "Feature", "id": 403, "properties": { "pctwhite": 67.678369, "pctrep": 69.125326, "R": 1059, "D": 452, "CNTYVTD": "4393214", "rmapshaperid": 391, "id": 354 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.226113999718649, 32.860214000383777 ], [ -97.227141999695021, 32.854764999561446 ], [ -97.225697000328864, 32.851788000238095 ], [ -97.225421999795742, 32.845601000319789 ], [ -97.223789999887458, 32.842357000358113 ], [ -97.22481200026597, 32.838978999617247 ], [ -97.221759000410387, 32.835423999767144 ], [ -97.227797999513641, 32.838760000204175 ], [ -97.233533999801324, 32.840220000279992 ], [ -97.238728999602046, 32.84039000011591 ], [ -97.238594999471076, 32.853117999816 ], [ -97.237996000464506, 32.860413999711575 ], [ -97.226113999718649, 32.860214000383777 ] ] ] } },
{ "type": "Feature", "id": 404, "properties": { "pctwhite": 78.735076, "pctrep": 75.930521, "R": 1224, "D": 376, "CNTYVTD": "4393215", "rmapshaperid": 392, "id": 355 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.239075000258879, 32.8239559996018 ], [ -97.246272999609545, 32.824015000352439 ], [ -97.248322999556009, 32.825265000409878 ], [ -97.250828000302263, 32.829003000202903 ], [ -97.246961999497302, 32.828793999944423 ], [ -97.246983999529817, 32.831428999656225 ], [ -97.254705999901333, 32.831694000193011 ], [ -97.25561999954769, 32.833485999974393 ], [ -97.25834000027325, 32.835123999584113 ], [ -97.255260999821985, 32.837089999645251 ], [ -97.252810999529089, 32.840361999908424 ], [ -97.238728999602046, 32.84039000011591 ], [ -97.239075000258879, 32.8239559996018 ] ] ] } },
{ "type": "Feature", "id": 405, "properties": { "pctwhite": 67.556428, "pctrep": 62.394436, "R": 1256, "D": 716, "CNTYVTD": "4393216", "rmapshaperid": 393, "id": 356 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.082324999457981, 32.881101000251427 ], [ -97.083017000342551, 32.874060000225754 ], [ -97.083060000407528, 32.868051000147766 ], [ -97.082468999898282, 32.865645999674541 ], [ -97.084362000433046, 32.868048000447345 ], [ -97.089227999579478, 32.867779000175716 ], [ -97.092459000259822, 32.86573999983959 ], [ -97.099868000375821, 32.866690999796809 ], [ -97.101994999626669, 32.86700899958749 ], [ -97.101677999609635, 32.87037200013107 ], [ -97.100096999850919, 32.874833999973774 ], [ -97.099803000076932, 32.881352000241407 ], [ -97.090848999676268, 32.881117999911751 ], [ -97.082324999457981, 32.881101000251427 ] ] ] } },
{ "type": "Feature", "id": 406, "properties": { "pctwhite": 61.653794, "pctrep": 67.025365, "R": 872, "D": 415, "CNTYVTD": "4393240", "rmapshaperid": 394, "id": 357 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.261270999533409, 32.916766000406795 ], [ -97.272470999731084, 32.916679999806789 ], [ -97.272474999643109, 32.923996999905796 ], [ -97.278461000245386, 32.924276000047342 ], [ -97.27843599946749, 32.926087000182839 ], [ -97.281572000184397, 32.926021999640433 ], [ -97.281425999853255, 32.938891000153227 ], [ -97.272514999637878, 32.938830999882164 ], [ -97.255025000332921, 32.93873700029927 ], [ -97.254913000416479, 32.934418999687146 ], [ -97.264213999597516, 32.934609000059915 ], [ -97.265543000273951, 32.934023000020545 ], [ -97.265551000497254, 32.92919800002889 ], [ -97.261462999458743, 32.929219000378374 ], [ -97.261270999533409, 32.916766000406795 ] ] ] } },
{ "type": "Feature", "id": 407, "properties": { "pctwhite": 51.029881, "pctrep": 54.685891, "R": 531, "D": 417, "CNTYVTD": "4393247", "rmapshaperid": 395, "id": 358 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.147437999871087, 32.822156000276003 ], [ -97.134646000155399, 32.822113000408116 ], [ -97.134694999854233, 32.814721000128699 ], [ -97.138613999734474, 32.814720999954183 ], [ -97.139119000458678, 32.814743000371323 ], [ -97.138188000266396, 32.817388999727477 ], [ -97.144720999848687, 32.818059999876759 ], [ -97.144713999678757, 32.814820999542697 ], [ -97.151627999554364, 32.814770999716089 ], [ -97.155809999946982, 32.815320000250949 ], [ -97.155763000256101, 32.823438999942816 ], [ -97.154540999841473, 32.823177000028899 ], [ -97.151245999485695, 32.822093999560423 ], [ -97.147437999871087, 32.822156000276003 ] ] ] } },
{ "type": "Feature", "id": 408, "properties": { "pctwhite": 85.074917, "pctrep": 74.650350, "R": 2135, "D": 686, "CNTYVTD": "4393248", "rmapshaperid": 396, "id": 359 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.164229000461503, 32.873715999965391 ], [ -97.172713999477182, 32.866734000370194 ], [ -97.173085000061022, 32.866429999706888 ], [ -97.175118999568895, 32.868639999759182 ], [ -97.183932000527264, 32.867847999922169 ], [ -97.18559099974695, 32.866002999701095 ], [ -97.185497999597885, 32.879899999728437 ], [ -97.185958999552938, 32.888885999824062 ], [ -97.185959999988384, 32.889242999696151 ], [ -97.173770000003358, 32.88917000016918 ], [ -97.173772999515847, 32.88619800028696 ], [ -97.173775000325932, 32.88522100005644 ], [ -97.173663000360122, 32.881409000221709 ], [ -97.177381999618135, 32.880410999682098 ], [ -97.173636999846366, 32.880401000367371 ], [ -97.173668000229412, 32.874822000294365 ], [ -97.164269999657364, 32.874900999660795 ], [ -97.164229000461503, 32.873715999965391 ] ] ] } },
{ "type": "Feature", "id": 409, "properties": { "pctwhite": 62.320484, "pctrep": 60.478749, "R": 1238, "D": 774, "CNTYVTD": "4393249", "rmapshaperid": 397, "id": 360 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.099948000393823, 32.851843000442628 ], [ -97.099828999792038, 32.837577000402192 ], [ -97.119687999556206, 32.83765899980191 ], [ -97.120081999693483, 32.839255000309031 ], [ -97.124533000492065, 32.844734000083342 ], [ -97.124455999653662, 32.851938999976397 ], [ -97.110240000268192, 32.851654999728019 ], [ -97.099948000393823, 32.851843000442628 ] ] ] } },
{ "type": "Feature", "id": 410, "properties": { "pctwhite": 66.552217, "pctrep": 60.943257, "R": 827, "D": 495, "CNTYVTD": "4393254", "rmapshaperid": 398, "id": 361 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.147437999871087, 32.822156000276003 ], [ -97.147302999731494, 32.826090000320328 ], [ -97.14307999979917, 32.829289999569269 ], [ -97.14184599964257, 32.836856999611143 ], [ -97.13333899972082, 32.836841000340158 ], [ -97.133557999783193, 32.82210500019729 ], [ -97.134646000155399, 32.822113000408116 ], [ -97.147437999871087, 32.822156000276003 ] ] ] } },
{ "type": "Feature", "id": 411, "properties": { "pctwhite": 88.568432, "pctrep": 72.848948, "R": 762, "D": 271, "CNTYVTD": "4393260", "rmapshaperid": 399, "id": 362 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.144537000049098, 32.86675399981214 ], [ -97.144570999502434, 32.862887000103427 ], [ -97.143325000011032, 32.859381000178402 ], [ -97.151118000010555, 32.862229000219941 ], [ -97.155232999715011, 32.86061899982186 ], [ -97.159885000379049, 32.861232000060134 ], [ -97.159924999903808, 32.867772999966171 ], [ -97.155581999719928, 32.867779999997296 ], [ -97.155572999476959, 32.864371999886252 ], [ -97.151064999761289, 32.864410000272336 ], [ -97.151079999864763, 32.86674299975909 ], [ -97.144537000049098, 32.86675399981214 ] ] ] } },
{ "type": "Feature", "id": 412, "properties": { "pctwhite": 84.375000, "pctrep": 72.841727, "R": 810, "D": 286, "CNTYVTD": "4393282", "rmapshaperid": 400, "id": 363 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.173890999983072, 32.833951000179042 ], [ -97.186323999686465, 32.833897000135899 ], [ -97.192755999856303, 32.833342000028992 ], [ -97.191882000032592, 32.838319000087644 ], [ -97.192363999594946, 32.838517999725092 ], [ -97.19228099950594, 32.84316200005383 ], [ -97.174296999947643, 32.848672000365049 ], [ -97.173790000477709, 32.840487999989413 ], [ -97.173890999983072, 32.833951000179042 ] ] ] } },
{ "type": "Feature", "id": 413, "properties": { "pctwhite": 81.016644, "pctrep": 69.847973, "R": 827, "D": 333, "CNTYVTD": "4393283", "rmapshaperid": 401, "id": 364 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.124470999719222, 32.85939199963947 ], [ -97.123995999852497, 32.856056999660026 ], [ -97.124455999653662, 32.851938999976397 ], [ -97.143388999483534, 32.851991000058824 ], [ -97.143325000011032, 32.859381000178402 ], [ -97.124470999719222, 32.85939199963947 ] ] ] } },
{ "type": "Feature", "id": 414, "properties": { "pctwhite": 83.513839, "pctrep": 90.845070, "R": 387, "D": 38, "CNTYVTD": "4393286", "rmapshaperid": 402, "id": 365 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.168191999600936, 32.982915000325988 ], [ -97.161103999901513, 32.975806000183098 ], [ -97.168095000333579, 32.975872999644295 ], [ -97.16950600050086, 32.97342900045269 ], [ -97.169740000322392, 32.970667000369552 ], [ -97.17809800047857, 32.970688999799933 ], [ -97.178884000240046, 32.966481999660459 ], [ -97.185433000486697, 32.966435999968496 ], [ -97.185630999514245, 32.961320000163568 ], [ -97.197824999952701, 32.961415999666762 ], [ -97.197848999474289, 32.96868400012147 ], [ -97.202856999919305, 32.968136000123955 ], [ -97.202821999885501, 32.978375000196721 ], [ -97.210495000471838, 32.97833499968521 ], [ -97.211400000384927, 32.97943600010683 ], [ -97.210897999965056, 32.989913000192402 ], [ -97.180907000006471, 32.989813000094827 ], [ -97.170862000504883, 32.986530999624705 ], [ -97.168191999600936, 32.982915000325988 ] ] ] } },
{ "type": "Feature", "id": 415, "properties": { "pctwhite": 71.918951, "pctrep": 66.924701, "R": 951, "D": 440, "CNTYVTD": "4393287", "rmapshaperid": 403, "id": 366 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.258630999831652, 32.894910999890023 ], [ -97.254392000184339, 32.894541999828746 ], [ -97.254441999922904, 32.892809000089194 ], [ -97.247068000428158, 32.892557999937679 ], [ -97.24874100027472, 32.892516000087149 ], [ -97.248714999975263, 32.8822350000586 ], [ -97.245154999923031, 32.881993999813176 ], [ -97.245200999777722, 32.875411000141931 ], [ -97.24684900014357, 32.875400000415567 ], [ -97.249814999989141, 32.876172999687157 ], [ -97.255019999966422, 32.876260999728864 ], [ -97.255003999873836, 32.874120999649939 ], [ -97.262378000189969, 32.874264999909784 ], [ -97.258987000085611, 32.894913999941615 ], [ -97.258630999831652, 32.894910999890023 ] ] ] } },
{ "type": "Feature", "id": 416, "properties": { "pctwhite": 64.003103, "pctrep": 65.941536, "R": 970, "D": 468, "CNTYVTD": "4393289", "rmapshaperid": 404, "id": 367 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.239075000258879, 32.8239559996018 ], [ -97.227831000328322, 32.823837999637469 ], [ -97.229262999504513, 32.822760999759247 ], [ -97.244586999988954, 32.81122200007686 ], [ -97.247082999561343, 32.809356000092407 ], [ -97.256796000226885, 32.809344999638178 ], [ -97.256768000350007, 32.813128000373609 ], [ -97.263011000504775, 32.813161999833696 ], [ -97.262890999791935, 32.815230000023107 ], [ -97.26450399988552, 32.817281000400179 ], [ -97.264482999595913, 32.820228000148795 ], [ -97.255156000382598, 32.820122999735403 ], [ -97.253278999738143, 32.818828999979516 ], [ -97.250486999596049, 32.818858000113288 ], [ -97.250397000330636, 32.821793000369638 ], [ -97.252721000188032, 32.828983000305598 ], [ -97.250828000302263, 32.829003000202903 ], [ -97.248322999556009, 32.825265000409878 ], [ -97.246272999609545, 32.824015000352439 ], [ -97.239075000258879, 32.8239559996018 ] ] ] } },
{ "type": "Feature", "id": 417, "properties": { "pctwhite": 73.087739, "pctrep": 67.346154, "R": 1751, "D": 792, "CNTYVTD": "4393321", "rmapshaperid": 405, "id": 368 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.032499999877473, 32.969242999733346 ], [ -97.061879999573435, 32.942779999540306 ], [ -97.064632999768747, 32.941374000433321 ], [ -97.064517000469181, 32.951270999752531 ], [ -97.066095999860352, 32.953614999637281 ], [ -97.065753999852916, 32.957501000134229 ], [ -97.066803000202881, 32.960492000061741 ], [ -97.069872000355701, 32.961618999836148 ], [ -97.073046999534796, 32.961038000404088 ], [ -97.074548000183754, 32.958025000320767 ], [ -97.076337999597058, 32.958782000273004 ], [ -97.078426999544305, 32.956099000137478 ], [ -97.080251999621922, 32.955318000021641 ], [ -97.080209000288875, 32.948047000377514 ], [ -97.077851999576922, 32.947755000188749 ], [ -97.078168999581948, 32.941029000111506 ], [ -97.090667999815864, 32.941093999946865 ], [ -97.08953099992938, 32.939057000196101 ], [ -97.093805999990181, 32.937983999824489 ], [ -97.095709000071381, 32.938873999734923 ], [ -97.095290999519179, 32.941111000333578 ], [ -97.099373999922321, 32.941141999730569 ], [ -97.099375999618076, 32.94147399973324 ], [ -97.09912299963689, 32.947786000316434 ], [ -97.096429999896742, 32.947806000299401 ], [ -97.096454000053257, 32.950209999740892 ], [ -97.094828000440387, 32.952134000276594 ], [ -97.091126000340239, 32.953047999761182 ], [ -97.09074099990184, 32.954821999561965 ], [ -97.090466000165733, 32.969794000020464 ], [ -97.089093000516982, 32.969605999920077 ], [ -97.09159400001964, 32.972726999960393 ], [ -97.095034000409711, 32.984755000375806 ], [ -97.101736999828887, 32.985339999702504 ], [ -97.108932999509562, 32.985487000290981 ], [ -97.109228999892267, 32.989873000063028 ], [ -97.058018000149787, 32.989610000398521 ], [ -97.032286999658467, 32.989323999548375 ], [ -97.032499999877473, 32.969242999733346 ] ] ] } },
{ "type": "Feature", "id": 418, "properties": { "pctwhite": 83.621988, "pctrep": 68.960864, "R": 1022, "D": 440, "CNTYVTD": "4393322", "rmapshaperid": 406, "id": 369 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.099868000375821, 32.866690999796809 ], [ -97.099860000351001, 32.859217999883967 ], [ -97.106503999842133, 32.859218999762028 ], [ -97.107240000127476, 32.862657000079679 ], [ -97.110877000060583, 32.859896000014501 ], [ -97.118080999492761, 32.859287000259293 ], [ -97.121051999605982, 32.858489999997602 ], [ -97.124470999719222, 32.85939199963947 ], [ -97.12473900025546, 32.86661400016223 ], [ -97.109050999932805, 32.866570999693813 ], [ -97.104423000529522, 32.865501999985412 ], [ -97.101994999626669, 32.86700899958749 ], [ -97.099868000375821, 32.866690999796809 ] ] ] } },
{ "type": "Feature", "id": 419, "properties": { "pctwhite": 84.389759, "pctrep": 78.260870, "R": 1908, "D": 499, "CNTYVTD": "4393323", "rmapshaperid": 407, "id": 370 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.125047000083683, 32.908104999734832 ], [ -97.125062999655725, 32.89262000024911 ], [ -97.134841999925754, 32.892656999804245 ], [ -97.134888999651849, 32.881860999642463 ], [ -97.144420999988213, 32.881421999631144 ], [ -97.155143000455539, 32.881516999563175 ], [ -97.142544000074693, 32.900329000255482 ], [ -97.136159999698577, 32.909793000378492 ], [ -97.133149000496289, 32.91225799978546 ], [ -97.129382000006942, 32.913671000398267 ], [ -97.128865999625958, 32.910974999751431 ], [ -97.126710999772001, 32.910217999562882 ], [ -97.125047000083683, 32.908104999734832 ] ] ] } },
{ "type": "Feature", "id": 420, "properties": { "pctwhite": 76.001033, "pctrep": 71.470588, "R": 972, "D": 375, "CNTYVTD": "4393324", "rmapshaperid": 408, "id": 371 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.211920000251709, 32.857427000416415 ], [ -97.214143000023199, 32.85054699965707 ], [ -97.214311000220007, 32.843462000214103 ], [ -97.221991999801119, 32.843365000054824 ], [ -97.223789999887458, 32.842357000358113 ], [ -97.225421999795742, 32.845601000319789 ], [ -97.225697000328864, 32.851788000238095 ], [ -97.227141999695021, 32.854764999561446 ], [ -97.226113999718649, 32.860214000383777 ], [ -97.217000000068566, 32.860038000259806 ], [ -97.212058999795289, 32.861593000081562 ], [ -97.211920000251709, 32.857427000416415 ] ] ] } },
{ "type": "Feature", "id": 421, "properties": { "pctwhite": 77.854454, "pctrep": 70.778267, "R": 482, "D": 185, "CNTYVTD": "4393325", "rmapshaperid": 409, "id": 372 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.224672999726465, 32.809054999988767 ], [ -97.244386999623316, 32.809099000326434 ], [ -97.244586999988954, 32.81122200007686 ], [ -97.229262999504513, 32.822760999759247 ], [ -97.224766000385756, 32.818758999920163 ], [ -97.224672999726465, 32.809054999988767 ] ] ] } },
{ "type": "Feature", "id": 422, "properties": { "pctwhite": 73.194030, "pctrep": 58.563536, "R": 318, "D": 211, "CNTYVTD": "4393326", "rmapshaperid": 410, "id": 373 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.209260999983854, 32.833038000447587 ], [ -97.209264000089519, 32.831696999682123 ], [ -97.206814999631177, 32.829268000126234 ], [ -97.206203999592844, 32.823879000148018 ], [ -97.20746900003968, 32.82357900019484 ], [ -97.223594999519094, 32.823819000208083 ], [ -97.223678999969522, 32.826923000351961 ], [ -97.227478999656952, 32.82410600028097 ], [ -97.228787999745578, 32.826538000205794 ], [ -97.229302000147669, 32.83373899971032 ], [ -97.219840000340227, 32.833731000127322 ], [ -97.221759000410387, 32.835423999767144 ], [ -97.217005000185054, 32.833507999731324 ], [ -97.209260999983854, 32.833038000447587 ] ] ] } },
{ "type": "Feature", "id": 423, "properties": { "pctwhite": 82.831181, "pctrep": 68.558952, "R": 785, "D": 332, "CNTYVTD": "4393327", "rmapshaperid": 411, "id": 374 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.14184599964257, 32.836856999611143 ], [ -97.14307999979917, 32.829289999569269 ], [ -97.147302999731494, 32.826090000320328 ], [ -97.147437999871087, 32.822156000276003 ], [ -97.151245999485695, 32.822093999560423 ], [ -97.154540999841473, 32.823177000028899 ], [ -97.154133999696086, 32.830236000438362 ], [ -97.154659000311895, 32.836866000260606 ], [ -97.150366999725108, 32.839072999863596 ], [ -97.146746999493672, 32.837480000387885 ], [ -97.14184599964257, 32.836856999611143 ] ] ] } },
{ "type": "Feature", "id": 424, "properties": { "pctwhite": 51.983395, "pctrep": 53.823088, "R": 718, "D": 594, "CNTYVTD": "4393329", "rmapshaperid": 412, "id": 375 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.069640999487618, 32.837026999706886 ], [ -97.069641999573903, 32.836773999787425 ], [ -97.069450000322803, 32.828889999859562 ], [ -97.070909000042477, 32.823289000227511 ], [ -97.07415000024163, 32.822364000254147 ], [ -97.082326000430797, 32.822381000304894 ], [ -97.082239999630545, 32.82881800009045 ], [ -97.082602000226444, 32.837150999642922 ], [ -97.069640999487618, 32.837026999706886 ] ] ] } },
{ "type": "Feature", "id": 425, "properties": { "pctwhite": 83.626626, "pctrep": 77.511416, "R": 679, "D": 185, "CNTYVTD": "4393330", "rmapshaperid": 413, "id": 376 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.159885000379049, 32.861232000060134 ], [ -97.159883000408783, 32.861074999776122 ], [ -97.163400999930971, 32.86056999969567 ], [ -97.165805000343539, 32.860535000011097 ], [ -97.16580199991256, 32.862050000087365 ], [ -97.169938999697465, 32.862035999770448 ], [ -97.17116599956826, 32.863160000000846 ], [ -97.171249000045364, 32.866154999724685 ], [ -97.172713999477182, 32.866734000370194 ], [ -97.164229000461503, 32.873715999965391 ], [ -97.162965000478863, 32.874778000406629 ], [ -97.159189000328922, 32.871067999970435 ], [ -97.159924999903808, 32.867772999966171 ], [ -97.159885000379049, 32.861232000060134 ] ] ] } },
{ "type": "Feature", "id": 426, "properties": { "pctwhite": 84.591474, "pctrep": 82.735776, "R": 2123, "D": 420, "CNTYVTD": "4393331", "rmapshaperid": 414, "id": 377 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.157727999752481, 32.919856999976723 ], [ -97.154571000122687, 32.916983000259684 ], [ -97.150103999978683, 32.917849999590217 ], [ -97.148889999800403, 32.916840000051501 ], [ -97.144865000132768, 32.918638999725033 ], [ -97.143107999502988, 32.918532000166685 ], [ -97.139069000293063, 32.916354999581237 ], [ -97.132544000485922, 32.916357999837466 ], [ -97.129551999745033, 32.913918000198358 ], [ -97.129382000006942, 32.913671000398267 ], [ -97.133149000496289, 32.91225799978546 ], [ -97.136159999698577, 32.909793000378492 ], [ -97.142544000074693, 32.900329000255482 ], [ -97.154438000367264, 32.900342000074687 ], [ -97.156757999923016, 32.901757000288555 ], [ -97.162297999754117, 32.897528000251917 ], [ -97.163948000056962, 32.899942999742386 ], [ -97.167009999571818, 32.899959000360703 ], [ -97.166864999763817, 32.904533000440551 ], [ -97.174982999996999, 32.90455500007134 ], [ -97.176837999575952, 32.90385999969736 ], [ -97.186255999736801, 32.903848000172857 ], [ -97.186742999851035, 32.91145100028681 ], [ -97.186729000122284, 32.911661999667977 ], [ -97.176637000245549, 32.911813999569361 ], [ -97.176724000300879, 32.922512999813016 ], [ -97.170078999876836, 32.92270799990402 ], [ -97.167947999734011, 32.923695999561332 ], [ -97.164958000189429, 32.922866000229249 ], [ -97.161161999948135, 32.920155999793288 ], [ -97.158984999495175, 32.921763000136856 ], [ -97.157727999752481, 32.919856999976723 ] ] ] } },
{ "type": "Feature", "id": 427, "properties": { "pctwhite": 54.576715, "pctrep": 61.970941, "R": 981, "D": 579, "CNTYVTD": "4393332", "rmapshaperid": 415, "id": 378 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.26338200035164, 32.868187999669082 ], [ -97.263441000134691, 32.867820000043139 ], [ -97.247224000188254, 32.867706000143976 ], [ -97.237940999630581, 32.867646000394188 ], [ -97.237996000464506, 32.860413999711575 ], [ -97.263976000504343, 32.86058499980723 ], [ -97.272378000024503, 32.860805000401001 ], [ -97.27239300025883, 32.862523999561724 ], [ -97.272388999911485, 32.866235000038436 ], [ -97.272516000364675, 32.868854999798423 ], [ -97.266790999756267, 32.869188999560443 ], [ -97.26338200035164, 32.868187999669082 ] ] ] } },
{ "type": "Feature", "id": 428, "properties": { "pctwhite": 73.013318, "pctrep": 66.431489, "R": 1789, "D": 853, "CNTYVTD": "4393333", "rmapshaperid": 416, "id": 379 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.189562000151355, 32.852907999653482 ], [ -97.193030999565295, 32.850029000250878 ], [ -97.192986999686596, 32.842955999808474 ], [ -97.195669999771098, 32.842405000297823 ], [ -97.214308000315427, 32.842579000005713 ], [ -97.214311000220007, 32.843462000214103 ], [ -97.214143000023199, 32.85054699965707 ], [ -97.211920000251709, 32.857427000416415 ], [ -97.208748999701328, 32.863298000173316 ], [ -97.199592999482093, 32.86309799977564 ], [ -97.198867000452196, 32.860505000125052 ], [ -97.194736999549491, 32.860398999575899 ], [ -97.194819999596376, 32.856466999777787 ], [ -97.192624000519018, 32.855656000286352 ], [ -97.189562000151355, 32.852907999653482 ] ] ] } },
{ "type": "Feature", "id": 429, "properties": { "pctwhite": 67.313177, "pctrep": 59.527559, "R": 756, "D": 489, "CNTYVTD": "4393334", "rmapshaperid": 417, "id": 380 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.143206999669246, 32.844242999823081 ], [ -97.143388999483534, 32.851991000058824 ], [ -97.124455999653662, 32.851938999976397 ], [ -97.124533000492065, 32.844734000083342 ], [ -97.142059999656638, 32.84474900028637 ], [ -97.143206999669246, 32.844242999823081 ] ] ] } },
{ "type": "Feature", "id": 430, "properties": { "pctwhite": 72.075472, "pctrep": 68.389662, "R": 1032, "D": 452, "CNTYVTD": "4393335", "rmapshaperid": 418, "id": 381 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.082468999898282, 32.865645999674541 ], [ -97.082458000437711, 32.859026000317144 ], [ -97.08247199974231, 32.857551999854337 ], [ -97.090281000509464, 32.857072000137038 ], [ -97.090659999565545, 32.851740000214527 ], [ -97.099948000393823, 32.851843000442628 ], [ -97.099860000351001, 32.859217999883967 ], [ -97.099868000375821, 32.866690999796809 ], [ -97.092459000259822, 32.86573999983959 ], [ -97.089227999579478, 32.867779000175716 ], [ -97.084362000433046, 32.868048000447345 ], [ -97.082468999898282, 32.865645999674541 ] ] ] } },
{ "type": "Feature", "id": 431, "properties": { "pctwhite": 45.439509, "pctrep": 53.004622, "R": 688, "D": 594, "CNTYVTD": "4393336", "rmapshaperid": 419, "id": 382 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.065147999929167, 32.851443999880544 ], [ -97.065266999963924, 32.837822000383902 ], [ -97.069640999487618, 32.837026999706886 ], [ -97.082602000226444, 32.837150999642922 ], [ -97.082622000489948, 32.838685999845204 ], [ -97.082529999758762, 32.851849999588332 ], [ -97.069238000129729, 32.851688000360141 ], [ -97.065147999929167, 32.851443999880544 ] ] ] } },
{ "type": "Feature", "id": 432, "properties": { "pctwhite": 88.545953, "pctrep": 78.092784, "R": 1212, "D": 329, "CNTYVTD": "4393359", "rmapshaperid": 420, "id": 383 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.177032000338841, 32.94142899958311 ], [ -97.171351000352303, 32.941428999979031 ], [ -97.162723000043115, 32.941237000075596 ], [ -97.162702000267345, 32.939556000381813 ], [ -97.160098999579816, 32.939126000121668 ], [ -97.160384000375387, 32.935304000437192 ], [ -97.16170499956668, 32.93251600041836 ], [ -97.160152000153218, 32.929059999973276 ], [ -97.162870000342764, 32.926411999856541 ], [ -97.176652999510793, 32.926509999786276 ], [ -97.177135999947595, 32.926878000042194 ], [ -97.177032000338841, 32.94142899958311 ] ] ] } },
{ "type": "Feature", "id": 433, "properties": { "pctwhite": 79.576556, "pctrep": 67.183018, "R": 1171, "D": 533, "CNTYVTD": "4393361", "rmapshaperid": 421, "id": 384 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.064632999768747, 32.941374000433321 ], [ -97.066314000155202, 32.941038999689113 ], [ -97.078168999581948, 32.941029000111506 ], [ -97.077851999576922, 32.947755000188749 ], [ -97.080209000288875, 32.948047000377514 ], [ -97.080251999621922, 32.955318000021641 ], [ -97.078426999544305, 32.956099000137478 ], [ -97.076337999597058, 32.958782000273004 ], [ -97.074548000183754, 32.958025000320767 ], [ -97.073046999534796, 32.961038000404088 ], [ -97.069872000355701, 32.961618999836148 ], [ -97.066803000202881, 32.960492000061741 ], [ -97.065753999852916, 32.957501000134229 ], [ -97.066095999860352, 32.953614999637281 ], [ -97.064517000469181, 32.951270999752531 ], [ -97.064632999768747, 32.941374000433321 ] ] ] } },
{ "type": "Feature", "id": 434, "properties": { "pctwhite": 84.602076, "pctrep": 81.045752, "R": 248, "D": 57, "CNTYVTD": "4393363", "rmapshaperid": 422, "id": 385 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.348712000024278, 32.93769599968077 ], [ -97.360711999682991, 32.937694999780106 ], [ -97.359950000090194, 32.944189000227865 ], [ -97.355582999864467, 32.956403000084364 ], [ -97.354203000092483, 32.956402999890827 ], [ -97.353676000127876, 32.965315000250577 ], [ -97.352152999794626, 32.969968000361177 ], [ -97.350825000166736, 32.970021999657689 ], [ -97.347766000417195, 32.974208999902437 ], [ -97.349396000162955, 32.971308000065179 ], [ -97.349363999782881, 32.959443000051579 ], [ -97.348570999948834, 32.953367000051863 ], [ -97.348712000024278, 32.93769599968077 ] ] ] } },
{ "type": "Feature", "id": 435, "properties": { "pctwhite": 66.276042, "pctrep": 62.217659, "R": 303, "D": 174, "CNTYVTD": "4393364", "rmapshaperid": 423, "id": 386 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.238728999602046, 32.84039000011591 ], [ -97.252810999529089, 32.840361999908424 ], [ -97.255156000266638, 32.840260999658277 ], [ -97.255194000241318, 32.848684999594596 ], [ -97.249389000243085, 32.848699000350933 ], [ -97.249413999887096, 32.853124000118726 ], [ -97.238594999471076, 32.853117999816 ], [ -97.238728999602046, 32.84039000011591 ] ] ] } },
{ "type": "Feature", "id": 436, "properties": { "pctwhite": 85.512299, "pctrep": 78.893684, "R": 2011, "D": 512, "CNTYVTD": "4393365", "rmapshaperid": 424, "id": 387 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.196248000110472, 32.921191000012435 ], [ -97.193454000194762, 32.921564999904462 ], [ -97.189442000445268, 32.920547000431981 ], [ -97.186670999831719, 32.918722999691468 ], [ -97.186569999705455, 32.915317999811414 ], [ -97.187985999760087, 32.911661000379077 ], [ -97.197713000134655, 32.911660999869561 ], [ -97.19774499987534, 32.907552999779213 ], [ -97.214444999660145, 32.907564000222699 ], [ -97.216638000479378, 32.907549999576943 ], [ -97.216622000225343, 32.911300999778838 ], [ -97.220459999634443, 32.912177000255959 ], [ -97.220457000157822, 32.92649899995704 ], [ -97.219719000011168, 32.928680000281219 ], [ -97.214464999993737, 32.924497000251598 ], [ -97.209616999729107, 32.924767000055937 ], [ -97.20616200000488, 32.925938000269511 ], [ -97.201856000154777, 32.923526999579053 ], [ -97.199730999810058, 32.923629999634713 ], [ -97.196248000110472, 32.921191000012435 ] ] ] } },
{ "type": "Feature", "id": 437, "properties": { "pctwhite": 84.310418, "pctrep": 71.312217, "R": 788, "D": 297, "CNTYVTD": "4393367", "rmapshaperid": 425, "id": 388 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.224952999617756, 32.882185000138733 ], [ -97.231823000492184, 32.882146000407076 ], [ -97.237832000310902, 32.881368000380959 ], [ -97.237723999899288, 32.888337000416634 ], [ -97.238530999892163, 32.892413999619741 ], [ -97.22903399995279, 32.892382999595711 ], [ -97.229127000383272, 32.885869000315431 ], [ -97.225323999649234, 32.885806999982833 ], [ -97.224952999617756, 32.882185000138733 ] ] ] } },
{ "type": "Feature", "id": 438, "properties": { "pctwhite": 87.554113, "pctrep": 76.732673, "R": 465, "D": 129, "CNTYVTD": "4393368", "rmapshaperid": 426, "id": 389 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.159822999981387, 32.849101999721356 ], [ -97.166920000463733, 32.84910900019181 ], [ -97.167636999719974, 32.850796000114471 ], [ -97.16779199990475, 32.860531999745199 ], [ -97.165805000343539, 32.860535000011097 ], [ -97.165933000399306, 32.85859200023944 ], [ -97.159865000490498, 32.858482999839708 ], [ -97.159822999981387, 32.849101999721356 ] ] ] } },
{ "type": "Feature", "id": 439, "properties": { "pctwhite": 68.397291, "pctrep": 70.621808, "R": 2351, "D": 929, "CNTYVTD": "4393372", "rmapshaperid": 427, "id": 390 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.242711000416648, 32.977000999960545 ], [ -97.250239000311609, 32.963513999732506 ], [ -97.264556999916138, 32.96370599980618 ], [ -97.281095000102084, 32.963939000072926 ], [ -97.281425999853255, 32.938891000153227 ], [ -97.297929000424091, 32.939024000115367 ], [ -97.297787999916892, 32.954752000305412 ], [ -97.298923000420515, 32.956664999981314 ], [ -97.29890700019925, 32.96176199963795 ], [ -97.29830500047342, 32.964783999711592 ], [ -97.292225999706105, 32.967854999888672 ], [ -97.278573000264174, 32.972583000256535 ], [ -97.270441000398819, 32.976192999860537 ], [ -97.257317999689747, 32.98244199971306 ], [ -97.252139999779331, 32.98517900037109 ], [ -97.248024999787546, 32.986098999951757 ], [ -97.237953000497782, 32.986108999916596 ], [ -97.242711000416648, 32.977000999960545 ] ] ] } },
{ "type": "Feature", "id": 440, "properties": { "pctwhite": 67.866230, "pctrep": 63.983903, "R": 636, "D": 335, "CNTYVTD": "4393384", "rmapshaperid": 428, "id": 391 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.089093000516982, 32.969605999920077 ], [ -97.090466000165733, 32.969794000020464 ], [ -97.09074099990184, 32.954821999561965 ], [ -97.102387999750604, 32.954748000035515 ], [ -97.106146999559456, 32.955666000058464 ], [ -97.107806999468281, 32.957374000113774 ], [ -97.105367999837384, 32.958870999546996 ], [ -97.104275000171981, 32.961435000254532 ], [ -97.102435000417699, 32.962913000267349 ], [ -97.092444000457562, 32.968358999952187 ], [ -97.090782000037663, 32.970809999712323 ], [ -97.089093000516982, 32.969605999920077 ] ] ] } },
{ "type": "Feature", "id": 441, "properties": { "pctwhite": 84.057570, "pctrep": 73.746452, "R": 1559, "D": 512, "CNTYVTD": "4393385", "rmapshaperid": 429, "id": 392 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.099730999848006, 32.902070000161302 ], [ -97.099777999557517, 32.893433999629984 ], [ -97.115009999737978, 32.893284000352473 ], [ -97.125062999655725, 32.89262000024911 ], [ -97.125047000083683, 32.908104999734832 ], [ -97.121179004565917, 32.907113000089424 ], [ -97.116634999705724, 32.907930000328271 ], [ -97.111626000053207, 32.905622999724528 ], [ -97.110402000278313, 32.906502999653128 ], [ -97.103117999486074, 32.902385000239647 ], [ -97.099730999848006, 32.902070000161302 ] ] ] } },
{ "type": "Feature", "id": 442, "properties": { "pctwhite": 82.532617, "pctrep": 77.091768, "R": 2285, "D": 637, "CNTYVTD": "4393386", "rmapshaperid": 430, "id": 393 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.20303999960295, 32.948920999669831 ], [ -97.20321500044021, 32.934286000414978 ], [ -97.218498000001773, 32.934512999835142 ], [ -97.240652999983126, 32.934351000352443 ], [ -97.25365600016184, 32.934573000145853 ], [ -97.25338100038671, 32.938767999983732 ], [ -97.254060000193491, 32.943004999612931 ], [ -97.253955000009725, 32.948044999816318 ], [ -97.254500999974084, 32.953304999699654 ], [ -97.254063000257389, 32.956460000192159 ], [ -97.225670999984814, 32.956215000091447 ], [ -97.22463999987454, 32.95233999966382 ], [ -97.224760000258769, 32.948935999767841 ], [ -97.217056999922079, 32.949324999692728 ], [ -97.216984999634207, 32.950856999941102 ], [ -97.211091999873631, 32.950876999576437 ], [ -97.210814000509927, 32.949301999724007 ], [ -97.20303999960295, 32.948920999669831 ] ] ] } },
{ "type": "Feature", "id": 443, "properties": { "pctwhite": 85.595668, "pctrep": 77.556623, "R": 1130, "D": 306, "CNTYVTD": "4393387", "rmapshaperid": 431, "id": 394 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.211911000314359, 32.882153000321935 ], [ -97.224952999617756, 32.882185000138733 ], [ -97.225323999649234, 32.885806999982833 ], [ -97.229127000383272, 32.885869000315431 ], [ -97.22903399995279, 32.892382999595711 ], [ -97.225816999545842, 32.89236300013529 ], [ -97.225849000020631, 32.900445000350246 ], [ -97.214217000143719, 32.900289999746597 ], [ -97.213936999823133, 32.898728000440698 ], [ -97.213970999744831, 32.895956000047363 ], [ -97.211927000467227, 32.893539999635962 ], [ -97.211384999922728, 32.888739000381641 ], [ -97.211911000314359, 32.882153000321935 ] ] ] } },
{ "type": "Feature", "id": 444, "properties": { "pctwhite": 61.094527, "pctrep": 57.608190, "R": 1238, "D": 858, "CNTYVTD": "4393389", "rmapshaperid": 432, "id": 395 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.033087999975137, 32.878493000074059 ], [ -97.033714999618411, 32.838153000049282 ], [ -97.037233999910001, 32.839236000423895 ], [ -97.03922799975966, 32.841306000136015 ], [ -97.041667999942476, 32.84155199994845 ], [ -97.043268999689928, 32.839596000402864 ], [ -97.048584000258018, 32.838603000403666 ], [ -97.05478399996916, 32.840650999732816 ], [ -97.058149000020109, 32.841147000013457 ], [ -97.060745999990473, 32.843494000107313 ], [ -97.063152999774317, 32.838890999678426 ], [ -97.065266999963924, 32.837822000383902 ], [ -97.065147999929167, 32.851443999880544 ], [ -97.064888000443361, 32.855373000292523 ], [ -97.062581999543724, 32.856407999800751 ], [ -97.060761999971902, 32.85963000009265 ], [ -97.065781999897098, 32.861019999751456 ], [ -97.069609999676885, 32.864202000181194 ], [ -97.0754430004814, 32.864538999842438 ], [ -97.076954999737239, 32.866567000364469 ], [ -97.079632999961532, 32.866779000435152 ], [ -97.082468999898282, 32.865645999674541 ], [ -97.083060000407528, 32.868051000147766 ], [ -97.083017000342551, 32.874060000225754 ], [ -97.082324999457981, 32.881101000251427 ], [ -97.066144999939382, 32.881058999805454 ], [ -97.064389999631857, 32.881299000023347 ], [ -97.03987300044102, 32.880755000455522 ], [ -97.038487999492489, 32.8795420003689 ], [ -97.035979000344213, 32.878621999605727 ], [ -97.033087999975137, 32.878493000074059 ] ] ] } },
{ "type": "Feature", "id": 445, "properties": { "pctwhite": 85.917132, "pctrep": 78.193033, "R": 2155, "D": 554, "CNTYVTD": "4393390", "rmapshaperid": 433, "id": 396 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.125062999655725, 32.89262000024911 ], [ -97.125011999689463, 32.88967400018106 ], [ -97.120393999941754, 32.889650000392926 ], [ -97.120352999519241, 32.885733999797829 ], [ -97.117497000252726, 32.885761000122436 ], [ -97.116865000144216, 32.887997999570089 ], [ -97.11272799973149, 32.88771000040483 ], [ -97.105482999555932, 32.88799100004799 ], [ -97.099819000097639, 32.888724000062453 ], [ -97.099803000076932, 32.881352000241407 ], [ -97.105595999807335, 32.881659000079793 ], [ -97.106695000307212, 32.876495999631125 ], [ -97.109200999705578, 32.871136000182467 ], [ -97.109050999932805, 32.866570999693813 ], [ -97.12473900025546, 32.86661400016223 ], [ -97.131345999657853, 32.866698000260307 ], [ -97.126195000282607, 32.872284000083688 ], [ -97.123844999829473, 32.876875000146548 ], [ -97.125094000310739, 32.881817999569471 ], [ -97.134888999651849, 32.881860999642463 ], [ -97.134841999925754, 32.892656999804245 ], [ -97.125062999655725, 32.89262000024911 ] ] ] } },
{ "type": "Feature", "id": 446, "properties": { "pctwhite": 53.367367, "pctrep": 52.300406, "R": 773, "D": 676, "CNTYVTD": "4393391", "rmapshaperid": 434, "id": 397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.069238000129729, 32.851688000360141 ], [ -97.082529999758762, 32.851849999588332 ], [ -97.090659999565545, 32.851740000214527 ], [ -97.090281000509464, 32.857072000137038 ], [ -97.08247199974231, 32.857551999854337 ], [ -97.082458000437711, 32.859026000317144 ], [ -97.072706999919689, 32.858868999546608 ], [ -97.068476000055824, 32.859351999766332 ], [ -97.068654999868116, 32.857203999619763 ], [ -97.070500000507579, 32.856054000243439 ], [ -97.07131700001851, 32.853656999569303 ], [ -97.069238000129729, 32.851688000360141 ] ] ] } },
{ "type": "Feature", "id": 447, "properties": { "pctwhite": 84.159691, "pctrep": 76.436031, "R": 1171, "D": 344, "CNTYVTD": "4393392", "rmapshaperid": 435, "id": 398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.20321500044021, 32.934286000414978 ], [ -97.202999999690192, 32.927017000039669 ], [ -97.192491000475172, 32.926915000402801 ], [ -97.189780999972584, 32.926341999609306 ], [ -97.191435000184427, 32.923069999836841 ], [ -97.196248000110472, 32.921191000012435 ], [ -97.199730999810058, 32.923629999634713 ], [ -97.201856000154777, 32.923526999579053 ], [ -97.20616200000488, 32.925938000269511 ], [ -97.209616999729107, 32.924767000055937 ], [ -97.214464999993737, 32.924497000251598 ], [ -97.219719000011168, 32.928680000281219 ], [ -97.218498000001773, 32.934512999835142 ], [ -97.20321500044021, 32.934286000414978 ] ] ] } },
{ "type": "Feature", "id": 448, "properties": { "pctwhite": 80.067218, "pctrep": 70.125313, "R": 1399, "D": 561, "CNTYVTD": "4393396", "rmapshaperid": 436, "id": 399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.032591000178911, 32.930606999694767 ], [ -97.032886999649051, 32.910625999888914 ], [ -97.033087999975137, 32.878493000074059 ], [ -97.035979000344213, 32.878621999605727 ], [ -97.038487999492489, 32.8795420003689 ], [ -97.03987300044102, 32.880755000455522 ], [ -97.064389999631857, 32.881299000023347 ], [ -97.066144999939382, 32.881058999805454 ], [ -97.082324999457981, 32.881101000251427 ], [ -97.090848999676268, 32.881117999911751 ], [ -97.091016999784259, 32.88888599988055 ], [ -97.098621999708996, 32.888883000070543 ], [ -97.098526999558459, 32.893433999900253 ], [ -97.099777999557517, 32.893433999629984 ], [ -97.099730999848006, 32.902070000161302 ], [ -97.100685999497458, 32.907203999878249 ], [ -97.100308000321306, 32.909121999649876 ], [ -97.098864000131286, 32.913166999968119 ], [ -97.091428000149222, 32.9218130001655 ], [ -97.090317999455408, 32.92082200043513 ], [ -97.083853000308608, 32.92315800019626 ], [ -97.078531999627515, 32.923394000353468 ], [ -97.065794000306951, 32.922706999834894 ], [ -97.059959000483261, 32.923737999822102 ], [ -97.046922000302615, 32.930879999989571 ], [ -97.042386999910946, 32.932306999825855 ], [ -97.037580000024406, 32.932222999748646 ], [ -97.032591000178911, 32.930606999694767 ] ] ] } },
{ "type": "Feature", "id": 449, "properties": { "pctwhite": 72.683290, "pctrep": 67.369589, "R": 607, "D": 281, "CNTYVTD": "4393398", "rmapshaperid": 437, "id": 400 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.237832000310902, 32.881368000380959 ], [ -97.237940999630581, 32.867646000394188 ], [ -97.247224000188254, 32.867706000143976 ], [ -97.24684900014357, 32.875400000415567 ], [ -97.245200999777722, 32.875411000141931 ], [ -97.245154999923031, 32.881993999813176 ], [ -97.237832000310902, 32.881368000380959 ] ] ] } },
{ "type": "Feature", "id": 451, "properties": { "pctwhite": 44.632768, "pctrep": 82.758621, "R": 24, "D": 5, "CNTYVTD": "4393409", "rmapshaperid": 439, "id": 401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.155970000280249, 32.808844000087369 ], [ -97.156258999726262, 32.804685000010458 ], [ -97.169366999937324, 32.805564999591255 ], [ -97.169175000386815, 32.808784000202927 ], [ -97.155970000280249, 32.808844000087369 ] ] ] } },
{ "type": "Feature", "id": 452, "properties": { "pctwhite": 66.750757, "pctrep": 68.030973, "R": 615, "D": 270, "CNTYVTD": "4393417", "rmapshaperid": 440, "id": 402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.29830500047342, 32.964783999711592 ], [ -97.29890700019925, 32.96176199963795 ], [ -97.298923000420515, 32.956664999981314 ], [ -97.297787999916892, 32.954752000305412 ], [ -97.297929000424091, 32.939024000115367 ], [ -97.306668000334639, 32.939079000344591 ], [ -97.309984000042064, 32.939722999981164 ], [ -97.310138000203423, 32.941853999994734 ], [ -97.312530000181823, 32.942030999982883 ], [ -97.310848000397925, 32.947254999738583 ], [ -97.310266999887844, 32.951839000353829 ], [ -97.310190999635893, 32.965779999810401 ], [ -97.308482999834936, 32.975109000354664 ], [ -97.306207000332023, 32.981633000092842 ], [ -97.300346999919114, 32.990254999822987 ], [ -97.294230000493584, 32.990260000122902 ], [ -97.29262099965942, 32.986752999686793 ], [ -97.297602000276839, 32.986354000006443 ], [ -97.29776700041684, 32.971819000264112 ], [ -97.29830500047342, 32.964783999711592 ] ] ] } },
{ "type": "Feature", "id": 453, "properties": { "pctwhite": 83.838384, "pctrep": 78.431373, "R": 760, "D": 195, "CNTYVTD": "4393421", "rmapshaperid": 441, "id": 403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.142544000074693, 32.900329000255482 ], [ -97.155143000455539, 32.881516999563175 ], [ -97.160573000163822, 32.876727999933713 ], [ -97.161433999666897, 32.882100999588815 ], [ -97.161459000519883, 32.895366000175493 ], [ -97.162297999754117, 32.897528000251917 ], [ -97.156757999923016, 32.901757000288555 ], [ -97.154438000367264, 32.900342000074687 ], [ -97.142544000074693, 32.900329000255482 ] ] ] } },
{ "type": "Feature", "id": 454, "properties": { "pctwhite": 86.692855, "pctrep": 79.509559, "R": 1913, "D": 470, "CNTYVTD": "4393422", "rmapshaperid": 442, "id": 404 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.202856999919305, 32.968136000123955 ], [ -97.20303999960295, 32.948920999669831 ], [ -97.210814000509927, 32.949301999724007 ], [ -97.211091999873631, 32.950876999576437 ], [ -97.216984999634207, 32.950856999941102 ], [ -97.217056999922079, 32.949324999692728 ], [ -97.224760000258769, 32.948935999767841 ], [ -97.22463999987454, 32.95233999966382 ], [ -97.225670999984814, 32.956215000091447 ], [ -97.254063000257389, 32.956460000192159 ], [ -97.250239000311609, 32.963513999732506 ], [ -97.242711000416648, 32.977000999960545 ], [ -97.241422999804044, 32.979256000260655 ], [ -97.237316000281425, 32.98411900033085 ], [ -97.234794000320463, 32.989864999676186 ], [ -97.210897999965056, 32.989913000192402 ], [ -97.211400000384927, 32.97943600010683 ], [ -97.210495000471838, 32.97833499968521 ], [ -97.202821999885501, 32.978375000196721 ], [ -97.202856999919305, 32.968136000123955 ] ] ] } },
{ "type": "Feature", "id": 455, "properties": { "pctwhite": 83.333333, "pctrep": 72.747748, "R": 323, "D": 116, "CNTYVTD": "4393433", "rmapshaperid": 443, "id": 405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.173085000061022, 32.866429999706888 ], [ -97.17306699954311, 32.86011500013047 ], [ -97.177897000174411, 32.862513000142528 ], [ -97.181982000198872, 32.859203999569566 ], [ -97.183954000182467, 32.862367000198546 ], [ -97.185683000342792, 32.861808999897789 ], [ -97.18559099974695, 32.866002999701095 ], [ -97.183932000527264, 32.867847999922169 ], [ -97.175118999568895, 32.868639999759182 ], [ -97.173085000061022, 32.866429999706888 ] ] ] } },
{ "type": "Feature", "id": 456, "properties": { "pctwhite": 79.337539, "pctrep": 67.069294, "R": 1055, "D": 500, "CNTYVTD": "4393443", "rmapshaperid": 444, "id": 406 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.099860000351001, 32.859217999883967 ], [ -97.099948000393823, 32.851843000442628 ], [ -97.110240000268192, 32.851654999728019 ], [ -97.124455999653662, 32.851938999976397 ], [ -97.123995999852497, 32.856056999660026 ], [ -97.124470999719222, 32.85939199963947 ], [ -97.121051999605982, 32.858489999997602 ], [ -97.118080999492761, 32.859287000259293 ], [ -97.110877000060583, 32.859896000014501 ], [ -97.107240000127476, 32.862657000079679 ], [ -97.106503999842133, 32.859218999762028 ], [ -97.099860000351001, 32.859217999883967 ] ] ] } },
{ "type": "Feature", "id": 459, "properties": { "pctwhite": 70.431359, "pctrep": 67.896254, "R": 1178, "D": 527, "CNTYVTD": "4393465", "rmapshaperid": 446, "id": 407 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.297929000424091, 32.939024000115367 ], [ -97.281425999853255, 32.938891000153227 ], [ -97.281572000184397, 32.926021999640433 ], [ -97.282015000513454, 32.924210000055631 ], [ -97.284757000330188, 32.924173999690538 ], [ -97.285365000406884, 32.918153999651807 ], [ -97.289451999889494, 32.918190000166085 ], [ -97.289691000505314, 32.914956999781687 ], [ -97.296565999947092, 32.915385000236682 ], [ -97.297293000480281, 32.918493999815475 ], [ -97.294691999674384, 32.918543000098005 ], [ -97.294611999807458, 32.92317300016974 ], [ -97.295251999613228, 32.924967000163605 ], [ -97.294391000206744, 32.931607000348308 ], [ -97.300523000006692, 32.932374000098619 ], [ -97.306621999604829, 32.932429000059372 ], [ -97.309383999537985, 32.933281000337615 ], [ -97.315333999984816, 32.93338300009556 ], [ -97.312530000181823, 32.942030999982883 ], [ -97.310138000203423, 32.941853999994734 ], [ -97.309984000042064, 32.939722999981164 ], [ -97.306668000334639, 32.939079000344591 ], [ -97.297929000424091, 32.939024000115367 ] ] ] } },
{ "type": "Feature", "id": 460, "properties": { "pctwhite": 88.873995, "pctrep": 70.588235, "R": 612, "D": 237, "CNTYVTD": "4393469", "rmapshaperid": 447, "id": 408 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.100308000321306, 32.909121999649876 ], [ -97.100685999497458, 32.907203999878249 ], [ -97.099730999848006, 32.902070000161302 ], [ -97.103117999486074, 32.902385000239647 ], [ -97.110402000278313, 32.906502999653128 ], [ -97.111626000053207, 32.905622999724528 ], [ -97.116634999705724, 32.907930000328271 ], [ -97.121179004565917, 32.907113000089424 ], [ -97.125047000083683, 32.908104999734832 ], [ -97.126710999772001, 32.910217999562882 ], [ -97.128865999625958, 32.910974999751431 ], [ -97.129382000006942, 32.913671000398267 ], [ -97.129551999745033, 32.913918000198358 ], [ -97.12624700050668, 32.91522499983251 ], [ -97.119377000100371, 32.919323999894914 ], [ -97.117475000064815, 32.918900999797252 ], [ -97.117530999855717, 32.913535000144336 ], [ -97.11651299967194, 32.911939999973612 ], [ -97.112655999796175, 32.909774000085903 ], [ -97.100308000321306, 32.909121999649876 ] ] ] } },
{ "type": "Feature", "id": 461, "properties": { "pctwhite": 56.621005, "pctrep": 66.666667, "R": 44, "D": 22, "CNTYVTD": "4393470", "rmapshaperid": 448, "id": 409 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.099375999618076, 32.94147399973324 ], [ -97.099373999922321, 32.941141999730569 ], [ -97.100472000098407, 32.939880999881431 ], [ -97.098149999826589, 32.936378999654501 ], [ -97.102120000471672, 32.936278999790304 ], [ -97.102965999526148, 32.930933000220605 ], [ -97.109951000410845, 32.930923000030461 ], [ -97.110028999552583, 32.927863999657092 ], [ -97.105616000360953, 32.927902999851312 ], [ -97.109508000120059, 32.925227000129588 ], [ -97.119377000100371, 32.919323999894914 ], [ -97.12624700050668, 32.91522499983251 ], [ -97.127584999750894, 32.926251000090417 ], [ -97.117848999862318, 32.92625299971921 ], [ -97.117413999932438, 32.93173399977298 ], [ -97.116035999830544, 32.931983999959421 ], [ -97.116082000221596, 32.940813999969421 ], [ -97.116665000214041, 32.943705000165252 ], [ -97.113580999888271, 32.944038000229241 ], [ -97.10730799987094, 32.943274999563648 ], [ -97.099375999618076, 32.94147399973324 ] ] ] } },
{ "type": "Feature", "id": 462, "properties": { "pctwhite": 87.585868, "pctrep": 79.298546, "R": 927, "D": 226, "CNTYVTD": "4393471", "rmapshaperid": 449, "id": 410 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.219719000011168, 32.928680000281219 ], [ -97.220457000157822, 32.92649899995704 ], [ -97.220459999634443, 32.912177000255959 ], [ -97.216622000225343, 32.911300999778838 ], [ -97.216638000479378, 32.907549999576943 ], [ -97.227746999748547, 32.907577000098193 ], [ -97.232284999713755, 32.909662999727232 ], [ -97.232254999920855, 32.911980000004462 ], [ -97.232115999885337, 32.926580000270391 ], [ -97.225199000116859, 32.927849999707242 ], [ -97.22192199981869, 32.927116999936693 ], [ -97.219719000011168, 32.928680000281219 ] ] ] } },
{ "type": "Feature", "id": 463, "properties": { "pctwhite": 73.017217, "pctrep": 71.933785, "R": 1912, "D": 711, "CNTYVTD": "4393486", "rmapshaperid": 450, "id": 411 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.264556999916138, 32.96370599980618 ], [ -97.264847999508731, 32.951862999882366 ], [ -97.272466999469898, 32.94084500024141 ], [ -97.272514999637878, 32.938830999882164 ], [ -97.281425999853255, 32.938891000153227 ], [ -97.281095000102084, 32.963939000072926 ], [ -97.264556999916138, 32.96370599980618 ] ] ] } },
{ "type": "Feature", "id": 464, "properties": { "pctwhite": 73.743017, "pctrep": 81.376518, "R": 201, "D": 44, "CNTYVTD": "4393500", "rmapshaperid": 451, "id": 412 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.168191999600936, 32.982915000325988 ], [ -97.170862000504883, 32.986530999624705 ], [ -97.180907000006471, 32.989813000094827 ], [ -97.167260999731099, 32.989801999857825 ], [ -97.167256000520879, 32.986507999912817 ], [ -97.168191999600936, 32.982915000325988 ] ] ] } },
{ "type": "Feature", "id": 465, "properties": { "pctwhite": 90.857438, "pctrep": 83.885820, "R": 911, "D": 166, "CNTYVTD": "4393502", "rmapshaperid": 452, "id": 413 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.185630999514245, 32.961320000163568 ], [ -97.185740999995488, 32.948839000022865 ], [ -97.20303999960295, 32.948920999669831 ], [ -97.202856999919305, 32.968136000123955 ], [ -97.197848999474289, 32.96868400012147 ], [ -97.197824999952701, 32.961415999666762 ], [ -97.185630999514245, 32.961320000163568 ] ] ] } },
{ "type": "Feature", "id": 466, "properties": { "pctwhite": 70.187197, "pctrep": 65.406562, "R": 917, "D": 452, "CNTYVTD": "4393507", "rmapshaperid": 453, "id": 414 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.212041999789179, 32.868163000146261 ], [ -97.212042999948608, 32.867147999695362 ], [ -97.212058999795289, 32.861593000081562 ], [ -97.217000000068566, 32.860038000259806 ], [ -97.226113999718649, 32.860214000383777 ], [ -97.237996000464506, 32.860413999711575 ], [ -97.237940999630581, 32.867646000394188 ], [ -97.21594299994014, 32.867610000420107 ], [ -97.212041999789179, 32.868163000146261 ] ] ] } },
{ "type": "Feature", "id": 467, "properties": { "pctwhite": 75.487151, "pctrep": 67.947670, "R": 831, "D": 356, "CNTYVTD": "4393509", "rmapshaperid": 454, "id": 415 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.238560000119904, 32.8925179999138 ], [ -97.238530999892163, 32.892413999619741 ], [ -97.237723999899288, 32.888337000416634 ], [ -97.237832000310902, 32.881368000380959 ], [ -97.245154999923031, 32.881993999813176 ], [ -97.248714999975263, 32.8822350000586 ], [ -97.24874100027472, 32.892516000087149 ], [ -97.247068000428158, 32.892557999937679 ], [ -97.238560000119904, 32.8925179999138 ] ] ] } },
{ "type": "Feature", "id": 468, "properties": { "pctwhite": 86.055204, "pctrep": 78.414299, "R": 1711, "D": 441, "CNTYVTD": "4393510", "rmapshaperid": 455, "id": 416 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.131345999657853, 32.866698000260307 ], [ -97.144537000049098, 32.86675399981214 ], [ -97.151079999864763, 32.86674299975909 ], [ -97.151064999761289, 32.864410000272336 ], [ -97.155572999476959, 32.864371999886252 ], [ -97.155581999719928, 32.867779999997296 ], [ -97.159924999903808, 32.867772999966171 ], [ -97.159189000328922, 32.871067999970435 ], [ -97.162965000478863, 32.874778000406629 ], [ -97.160573000163822, 32.876727999933713 ], [ -97.155143000455539, 32.881516999563175 ], [ -97.144420999988213, 32.881421999631144 ], [ -97.134888999651849, 32.881860999642463 ], [ -97.125094000310739, 32.881817999569471 ], [ -97.123844999829473, 32.876875000146548 ], [ -97.126195000282607, 32.872284000083688 ], [ -97.131345999657853, 32.866698000260307 ] ] ] } },
{ "type": "Feature", "id": 469, "properties": { "pctwhite": 52.661871, "pctrep": 49.113924, "R": 776, "D": 769, "CNTYVTD": "4393511", "rmapshaperid": 456, "id": 417 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.065147999929167, 32.851443999880544 ], [ -97.069238000129729, 32.851688000360141 ], [ -97.07131700001851, 32.853656999569303 ], [ -97.070500000507579, 32.856054000243439 ], [ -97.068654999868116, 32.857203999619763 ], [ -97.068476000055824, 32.859351999766332 ], [ -97.072706999919689, 32.858868999546608 ], [ -97.082458000437711, 32.859026000317144 ], [ -97.082468999898282, 32.865645999674541 ], [ -97.079632999961532, 32.866779000435152 ], [ -97.076954999737239, 32.866567000364469 ], [ -97.0754430004814, 32.864538999842438 ], [ -97.069609999676885, 32.864202000181194 ], [ -97.065781999897098, 32.861019999751456 ], [ -97.060761999971902, 32.85963000009265 ], [ -97.062581999543724, 32.856407999800751 ], [ -97.064888000443361, 32.855373000292523 ], [ -97.065147999929167, 32.851443999880544 ] ] ] } },
{ "type": "Feature", "id": 470, "properties": { "pctwhite": 88.548602, "pctrep": 73.291492, "R": 1051, "D": 365, "CNTYVTD": "4393516", "rmapshaperid": 457, "id": 418 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.12473900025546, 32.86661400016223 ], [ -97.124470999719222, 32.85939199963947 ], [ -97.143325000011032, 32.859381000178402 ], [ -97.144570999502434, 32.862887000103427 ], [ -97.144537000049098, 32.86675399981214 ], [ -97.131345999657853, 32.866698000260307 ], [ -97.12473900025546, 32.86661400016223 ] ] ] } },
{ "type": "Feature", "id": 471, "properties": { "pctwhite": 66.762052, "pctrep": 60.487038, "R": 770, "D": 489, "CNTYVTD": "4393517", "rmapshaperid": 458, "id": 419 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.124533000492065, 32.844734000083342 ], [ -97.120081999693483, 32.839255000309031 ], [ -97.119687999556206, 32.83765899980191 ], [ -97.123956000343242, 32.837666000290525 ], [ -97.128762999837733, 32.83686599964971 ], [ -97.13333899972082, 32.836841000340158 ], [ -97.14184599964257, 32.836856999611143 ], [ -97.146746999493672, 32.837480000387885 ], [ -97.150366999725108, 32.839072999863596 ], [ -97.143206999669246, 32.844242999823081 ], [ -97.142059999656638, 32.84474900028637 ], [ -97.124533000492065, 32.844734000083342 ] ] ] } },
{ "type": "Feature", "id": 472, "properties": { "pctwhite": 85.546875, "pctrep": 76.328502, "R": 632, "D": 192, "CNTYVTD": "4393526", "rmapshaperid": 459, "id": 420 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.116082000221596, 32.940813999969421 ], [ -97.135394000337143, 32.941108000084597 ], [ -97.145592000091867, 32.941064999843299 ], [ -97.151018000071304, 32.941530000057043 ], [ -97.150963000363333, 32.961260000359196 ], [ -97.146049000159039, 32.959507999735415 ], [ -97.140848000259538, 32.956804999642358 ], [ -97.134086999829861, 32.951934000037731 ], [ -97.128156999513237, 32.947183000072684 ], [ -97.124369000370663, 32.94506699995614 ], [ -97.116665000214041, 32.943705000165252 ], [ -97.116082000221596, 32.940813999969421 ] ] ] } },
{ "type": "Feature", "id": 473, "properties": { "pctwhite": 82.178841, "pctrep": 71.896792, "R": 1031, "D": 384, "CNTYVTD": "4393527", "rmapshaperid": 460, "id": 421 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.194633999782155, 32.874792000111164 ], [ -97.207656000531188, 32.867164999672625 ], [ -97.212042999948608, 32.867147999695362 ], [ -97.212041999789179, 32.868163000146261 ], [ -97.211911000314359, 32.882153000321935 ], [ -97.208506000328057, 32.88215399993878 ], [ -97.205464000194596, 32.883881999849528 ], [ -97.19468599981839, 32.883945999658941 ], [ -97.194633999782155, 32.874792000111164 ] ] ] } },
{ "type": "Feature", "id": 474, "properties": { "pctwhite": 84.626594, "pctrep": 79.658793, "R": 1214, "D": 291, "CNTYVTD": "4393529", "rmapshaperid": 461, "id": 422 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.150963000363333, 32.961260000359196 ], [ -97.151018000071304, 32.941530000057043 ], [ -97.156094999989989, 32.941053999635486 ], [ -97.162723000043115, 32.941237000075596 ], [ -97.171351000352303, 32.941428999979031 ], [ -97.171108000342272, 32.944427999953014 ], [ -97.168494999661874, 32.949502000363864 ], [ -97.168197000088867, 32.970589999753209 ], [ -97.169740000322392, 32.970667000369552 ], [ -97.16950600050086, 32.97342900045269 ], [ -97.168095000333579, 32.975872999644295 ], [ -97.161103999901513, 32.975806000183098 ], [ -97.168191999600936, 32.982915000325988 ], [ -97.167256000520879, 32.986507999912817 ], [ -97.167260999731099, 32.989801999857825 ], [ -97.15684999964914, 32.989861000146142 ], [ -97.15685499963746, 32.983119999974548 ], [ -97.150934999695792, 32.976087000035143 ], [ -97.150963000363333, 32.961260000359196 ] ] ] } },
{ "type": "Feature", "id": 475, "properties": { "pctwhite": 78.903964, "pctrep": 71.510716, "R": 1368, "D": 510, "CNTYVTD": "4393530", "rmapshaperid": 462, "id": 423 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.090848999676268, 32.881117999911751 ], [ -97.099803000076932, 32.881352000241407 ], [ -97.099819000097639, 32.888724000062453 ], [ -97.105482999555932, 32.88799100004799 ], [ -97.11272799973149, 32.88771000040483 ], [ -97.116865000144216, 32.887997999570089 ], [ -97.117497000252726, 32.885761000122436 ], [ -97.120352999519241, 32.885733999797829 ], [ -97.120393999941754, 32.889650000392926 ], [ -97.125011999689463, 32.88967400018106 ], [ -97.125062999655725, 32.89262000024911 ], [ -97.115009999737978, 32.893284000352473 ], [ -97.099777999557517, 32.893433999629984 ], [ -97.098526999558459, 32.893433999900253 ], [ -97.098621999708996, 32.888883000070543 ], [ -97.091016999784259, 32.88888599988055 ], [ -97.090848999676268, 32.881117999911751 ] ] ] } },
{ "type": "Feature", "id": 476, "properties": { "pctwhite": 79.134533, "pctrep": 75.832622, "R": 888, "D": 276, "CNTYVTD": "4393538", "rmapshaperid": 463, "id": 424 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.157727999752481, 32.919856999976723 ], [ -97.158984999495175, 32.921763000136856 ], [ -97.161161999948135, 32.920155999793288 ], [ -97.164958000189429, 32.922866000229249 ], [ -97.167947999734011, 32.923695999561332 ], [ -97.170078999876836, 32.92270799990402 ], [ -97.176724000300879, 32.922512999813016 ], [ -97.179140000092104, 32.923017999871604 ], [ -97.181009000020396, 32.921483000339762 ], [ -97.186179000294999, 32.923987999633816 ], [ -97.185791999804962, 32.9334449996663 ], [ -97.185802999976545, 32.937603999947576 ], [ -97.182057999473713, 32.940129999806416 ], [ -97.177032000338841, 32.94142899958311 ], [ -97.177135999947595, 32.926878000042194 ], [ -97.176652999510793, 32.926509999786276 ], [ -97.162870000342764, 32.926411999856541 ], [ -97.160152000153218, 32.929059999973276 ], [ -97.16170499956668, 32.93251600041836 ], [ -97.160384000375387, 32.935304000437192 ], [ -97.160098999579816, 32.939126000121668 ], [ -97.162702000267345, 32.939556000381813 ], [ -97.162723000043115, 32.941237000075596 ], [ -97.156094999989989, 32.941053999635486 ], [ -97.151018000071304, 32.941530000057043 ], [ -97.155213999734869, 32.934714000023959 ], [ -97.155387999471785, 32.927399000312384 ], [ -97.156560000135087, 32.925339999762592 ], [ -97.157727999752481, 32.919856999976723 ] ] ] } },
{ "type": "Feature", "id": 478, "properties": { "pctwhite": 77.133702, "pctrep": 70.426410, "R": 1024, "D": 412, "CNTYVTD": "4393542", "rmapshaperid": 464, "id": 425 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.09074099990184, 32.954821999561965 ], [ -97.091126000340239, 32.953047999761182 ], [ -97.094828000440387, 32.952134000276594 ], [ -97.096454000053257, 32.950209999740892 ], [ -97.096429999896742, 32.947806000299401 ], [ -97.09912299963689, 32.947786000316434 ], [ -97.099375999618076, 32.94147399973324 ], [ -97.10730799987094, 32.943274999563648 ], [ -97.108026999887755, 32.947648999691033 ], [ -97.104881999905089, 32.947599999681657 ], [ -97.104979999905595, 32.954693999973372 ], [ -97.106146999559456, 32.955666000058464 ], [ -97.102387999750604, 32.954748000035515 ], [ -97.09074099990184, 32.954821999561965 ] ] ] } },
{ "type": "Feature", "id": 479, "properties": { "pctwhite": 86.136072, "pctrep": 79.438717, "R": 1387, "D": 336, "CNTYVTD": "4393545", "rmapshaperid": 465, "id": 426 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.185802999976545, 32.937603999947576 ], [ -97.185740999995488, 32.948839000022865 ], [ -97.185630999514245, 32.961320000163568 ], [ -97.185433000486697, 32.966435999968496 ], [ -97.178884000240046, 32.966481999660459 ], [ -97.17809800047857, 32.970688999799933 ], [ -97.169740000322392, 32.970667000369552 ], [ -97.168197000088867, 32.970589999753209 ], [ -97.168494999661874, 32.949502000363864 ], [ -97.171108000342272, 32.944427999953014 ], [ -97.171351000352303, 32.941428999979031 ], [ -97.177032000338841, 32.94142899958311 ], [ -97.182057999473713, 32.940129999806416 ], [ -97.185802999976545, 32.937603999947576 ] ] ] } },
{ "type": "Feature", "id": 480, "properties": { "pctwhite": 64.645669, "pctrep": 66.517106, "R": 2372, "D": 1128, "CNTYVTD": "4393552", "rmapshaperid": 466, "id": 427 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.261270999533409, 32.916766000406795 ], [ -97.255152000412139, 32.916712999868992 ], [ -97.255961000393199, 32.91141300010937 ], [ -97.258630999831652, 32.894910999890023 ], [ -97.258987000085611, 32.894913999941615 ], [ -97.272402999916906, 32.894661000179291 ], [ -97.272556000247121, 32.902018999798251 ], [ -97.289615999560439, 32.902087999704058 ], [ -97.289691000505314, 32.914956999781687 ], [ -97.289451999889494, 32.918190000166085 ], [ -97.285365000406884, 32.918153999651807 ], [ -97.284757000330188, 32.924173999690538 ], [ -97.282015000513454, 32.924210000055631 ], [ -97.281572000184397, 32.926021999640433 ], [ -97.27843599946749, 32.926087000182839 ], [ -97.278461000245386, 32.924276000047342 ], [ -97.272474999643109, 32.923996999905796 ], [ -97.272470999731084, 32.916679999806789 ], [ -97.261270999533409, 32.916766000406795 ] ] ] } },
{ "type": "Feature", "id": 481, "properties": { "pctwhite": 82.271178, "pctrep": 76.358149, "R": 1518, "D": 449, "CNTYVTD": "4393554", "rmapshaperid": 467, "id": 428 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.216638000479378, 32.907549999576943 ], [ -97.214444999660145, 32.907564000222699 ], [ -97.214217000143719, 32.900289999746597 ], [ -97.225849000020631, 32.900445000350246 ], [ -97.225816999545842, 32.89236300013529 ], [ -97.22903399995279, 32.892382999595711 ], [ -97.238530999892163, 32.892413999619741 ], [ -97.238560000119904, 32.8925179999138 ], [ -97.238218000049528, 32.901595000162459 ], [ -97.232764000039339, 32.908414000030085 ], [ -97.232284999713755, 32.909662999727232 ], [ -97.227746999748547, 32.907577000098193 ], [ -97.216638000479378, 32.907549999576943 ] ] ] } },
{ "type": "Feature", "id": 482, "properties": { "pctwhite": 85.603005, "pctrep": 79.661017, "R": 3008, "D": 726, "CNTYVTD": "4393558", "rmapshaperid": 468, "id": 429 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.12624700050668, 32.91522499983251 ], [ -97.129551999745033, 32.913918000198358 ], [ -97.132544000485922, 32.916357999837466 ], [ -97.139069000293063, 32.916354999581237 ], [ -97.143107999502988, 32.918532000166685 ], [ -97.144865000132768, 32.918638999725033 ], [ -97.148889999800403, 32.916840000051501 ], [ -97.150103999978683, 32.917849999590217 ], [ -97.154571000122687, 32.916983000259684 ], [ -97.157727999752481, 32.919856999976723 ], [ -97.156560000135087, 32.925339999762592 ], [ -97.155387999471785, 32.927399000312384 ], [ -97.155213999734869, 32.934714000023959 ], [ -97.151018000071304, 32.941530000057043 ], [ -97.145592000091867, 32.941064999843299 ], [ -97.135394000337143, 32.941108000084597 ], [ -97.116082000221596, 32.940813999969421 ], [ -97.116035999830544, 32.931983999959421 ], [ -97.117413999932438, 32.93173399977298 ], [ -97.117848999862318, 32.92625299971921 ], [ -97.127584999750894, 32.926251000090417 ], [ -97.12624700050668, 32.91522499983251 ] ] ] } },
{ "type": "Feature", "id": 484, "properties": { "pctwhite": 86.754967, "pctrep": 87.804878, "R": 72, "D": 9, "CNTYVTD": "4393562", "rmapshaperid": 470, "id": 430 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.165805000343539, 32.860535000011097 ], [ -97.16779199990475, 32.860531999745199 ], [ -97.168683000171924, 32.860621000069258 ], [ -97.169517000349586, 32.860139999706227 ], [ -97.17306699954311, 32.86011500013047 ], [ -97.173085000061022, 32.866429999706888 ], [ -97.172713999477182, 32.866734000370194 ], [ -97.171249000045364, 32.866154999724685 ], [ -97.17116599956826, 32.863160000000846 ], [ -97.169938999697465, 32.862035999770448 ], [ -97.16580199991256, 32.862050000087365 ], [ -97.165805000343539, 32.860535000011097 ] ] ] } },
{ "type": "Feature", "id": 486, "properties": { "pctwhite": 80.338621, "pctrep": 79.252479, "R": 2078, "D": 521, "CNTYVTD": "4393567", "rmapshaperid": 471, "id": 431 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.348712000024278, 32.93769599968077 ], [ -97.348817999643728, 32.924293000250486 ], [ -97.348726999958558, 32.915757000275953 ], [ -97.357815999474582, 32.924317999881431 ], [ -97.374780999988417, 32.924424999753008 ], [ -97.375111999885121, 32.895459999591743 ], [ -97.373693999708223, 32.895054999602294 ], [ -97.373648000105177, 32.887981999674359 ], [ -97.387618000008672, 32.888121000290376 ], [ -97.388149999907114, 32.888111999609329 ], [ -97.401536000447422, 32.903511999656274 ], [ -97.402948000371651, 32.905701000051323 ], [ -97.410852999893834, 32.92232199983146 ], [ -97.417630000162205, 32.935153000301845 ], [ -97.420715000447927, 32.941761000306265 ], [ -97.420722999566195, 32.963365999571529 ], [ -97.420229999924359, 32.967934000209908 ], [ -97.417087000501724, 32.967951000299884 ], [ -97.41280700019044, 32.968930000211316 ], [ -97.367360999934675, 32.969036000428559 ], [ -97.365529999963144, 32.970063999988426 ], [ -97.36190400043489, 32.970075999798041 ], [ -97.352152999794626, 32.969968000361177 ], [ -97.353676000127876, 32.965315000250577 ], [ -97.354203000092483, 32.956402999890827 ], [ -97.355582999864467, 32.956403000084364 ], [ -97.359950000090194, 32.944189000227865 ], [ -97.360711999682991, 32.937694999780106 ], [ -97.348712000024278, 32.93769599968077 ] ] ] } },
{ "type": "Feature", "id": 487, "properties": { "pctwhite": 69.773950, "pctrep": 65.988909, "R": 1071, "D": 524, "CNTYVTD": "4393570", "rmapshaperid": 472, "id": 432 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.272402999916906, 32.894661000179291 ], [ -97.278534999580899, 32.892583000138266 ], [ -97.284640000006334, 32.892516000406175 ], [ -97.289637999952078, 32.893873000125964 ], [ -97.289615999560439, 32.902087999704058 ], [ -97.272556000247121, 32.902018999798251 ], [ -97.272402999916906, 32.894661000179291 ] ] ] } },
{ "type": "Feature", "id": 488, "properties": { "pctwhite": 0.000000, "pctrep": 0.000000, "R": 0, "D": 1, "CNTYVTD": "4393574", "rmapshaperid": 473, "id": 433 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.099803000076932, 32.881352000241407 ], [ -97.100096999850919, 32.874833999973774 ], [ -97.101677999609635, 32.87037200013107 ], [ -97.101994999626669, 32.86700899958749 ], [ -97.104423000529522, 32.865501999985412 ], [ -97.109050999932805, 32.866570999693813 ], [ -97.109200999705578, 32.871136000182467 ], [ -97.106695000307212, 32.876495999631125 ], [ -97.105595999807335, 32.881659000079793 ], [ -97.099803000076932, 32.881352000241407 ] ] ] } },
{ "type": "Feature", "id": 490, "properties": { "pctwhite": 82.604563, "pctrep": 79.392971, "R": 497, "D": 122, "CNTYVTD": "4393579", "rmapshaperid": 475, "id": 434 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.185740999995488, 32.948839000022865 ], [ -97.185802999976545, 32.937603999947576 ], [ -97.185791999804962, 32.9334449996663 ], [ -97.186983999939898, 32.936802999549542 ], [ -97.190359000328414, 32.935321000062331 ], [ -97.197623999558289, 32.934308999821369 ], [ -97.20321500044021, 32.934286000414978 ], [ -97.20303999960295, 32.948920999669831 ], [ -97.185740999995488, 32.948839000022865 ] ] ] } },
{ "type": "Feature", "id": 497, "properties": { "pctwhite": 81.132075, "pctrep": 78.160920, "R": 68, "D": 17, "CNTYVTD": "4393624", "rmapshaperid": 481, "id": 435 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.176724000300879, 32.922512999813016 ], [ -97.176637000245549, 32.911813999569361 ], [ -97.186729000122284, 32.911661999667977 ], [ -97.186569999705455, 32.915317999811414 ], [ -97.186670999831719, 32.918722999691468 ], [ -97.186179000294999, 32.923987999633816 ], [ -97.181009000020396, 32.921483000339762 ], [ -97.179140000092104, 32.923017999871604 ], [ -97.176724000300879, 32.922512999813016 ] ] ] } },
{ "type": "Feature", "id": 498, "properties": { "pctwhite": 73.197492, "pctrep": 72.615385, "R": 236, "D": 87, "CNTYVTD": "4393626", "rmapshaperid": 482, "id": 436 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.185791999804962, 32.9334449996663 ], [ -97.186179000294999, 32.923987999633816 ], [ -97.187570999940107, 32.926879000019021 ], [ -97.192491000475172, 32.926915000402801 ], [ -97.202999999690192, 32.927017000039669 ], [ -97.20321500044021, 32.934286000414978 ], [ -97.197623999558289, 32.934308999821369 ], [ -97.190359000328414, 32.935321000062331 ], [ -97.186983999939898, 32.936802999549542 ], [ -97.185791999804962, 32.9334449996663 ] ] ] } },
{ "type": "Feature", "id": 499, "properties": { "pctwhite": 63.076360, "pctrep": 64.375000, "R": 1854, "D": 986, "CNTYVTD": "4393637", "rmapshaperid": 483, "id": 437 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.289615999560439, 32.902087999704058 ], [ -97.289637999952078, 32.893873000125964 ], [ -97.289584000255715, 32.892804999966373 ], [ -97.289677000360541, 32.890751999622807 ], [ -97.292696000381525, 32.890756000455355 ], [ -97.317079000319865, 32.890650000251313 ], [ -97.317048000406913, 32.914478999744169 ], [ -97.313262000337531, 32.914504999556897 ], [ -97.304593999754303, 32.91343199965587 ], [ -97.296565999947092, 32.915385000236682 ], [ -97.289691000505314, 32.914956999781687 ], [ -97.289615999560439, 32.902087999704058 ] ] ] } },
{ "type": "Feature", "id": 500, "properties": { "pctwhite": 68.331114, "pctrep": 67.988464, "R": 943, "D": 425, "CNTYVTD": "4393646", "rmapshaperid": 484, "id": 438 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.242711000416648, 32.977000999960545 ], [ -97.237953000497782, 32.986108999916596 ], [ -97.248024999787546, 32.986098999951757 ], [ -97.252139999779331, 32.98517900037109 ], [ -97.257317999689747, 32.98244199971306 ], [ -97.270441000398819, 32.976192999860537 ], [ -97.278573000264174, 32.972583000256535 ], [ -97.292225999706105, 32.967854999888672 ], [ -97.29830500047342, 32.964783999711592 ], [ -97.29776700041684, 32.971819000264112 ], [ -97.297602000276839, 32.986354000006443 ], [ -97.29262099965942, 32.986752999686793 ], [ -97.294230000493584, 32.990260000122902 ], [ -97.277982000127793, 32.990163000069018 ], [ -97.257964000147638, 32.989843000014233 ], [ -97.234794000320463, 32.989864999676186 ], [ -97.237316000281425, 32.98411900033085 ], [ -97.241422999804044, 32.979256000260655 ], [ -97.242711000416648, 32.977000999960545 ] ] ] } },
{ "type": "Feature", "id": 501, "properties": { "pctwhite": 64.885669, "pctrep": 65.669856, "R": 1098, "D": 557, "CNTYVTD": "4393647", "rmapshaperid": 485, "id": 439 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.296565999947092, 32.915385000236682 ], [ -97.304593999754303, 32.91343199965587 ], [ -97.313262000337531, 32.914504999556897 ], [ -97.317048000406913, 32.914478999744169 ], [ -97.316978999677261, 32.926331999757906 ], [ -97.315333999984816, 32.93338300009556 ], [ -97.309383999537985, 32.933281000337615 ], [ -97.306621999604829, 32.932429000059372 ], [ -97.300523000006692, 32.932374000098619 ], [ -97.294391000206744, 32.931607000348308 ], [ -97.295251999613228, 32.924967000163605 ], [ -97.294611999807458, 32.92317300016974 ], [ -97.294691999674384, 32.918543000098005 ], [ -97.297293000480281, 32.918493999815475 ], [ -97.296565999947092, 32.915385000236682 ] ] ] } },
{ "type": "Feature", "id": 502, "properties": { "pctwhite": 71.433724, "pctrep": 68.900000, "R": 1378, "D": 590, "CNTYVTD": "4393648", "rmapshaperid": 486, "id": 440 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.250239000311609, 32.963513999732506 ], [ -97.254063000257389, 32.956460000192159 ], [ -97.254500999974084, 32.953304999699654 ], [ -97.253955000009725, 32.948044999816318 ], [ -97.254060000193491, 32.943004999612931 ], [ -97.25338100038671, 32.938767999983732 ], [ -97.255025000332921, 32.93873700029927 ], [ -97.272514999637878, 32.938830999882164 ], [ -97.272466999469898, 32.94084500024141 ], [ -97.264847999508731, 32.951862999882366 ], [ -97.264556999916138, 32.96370599980618 ], [ -97.250239000311609, 32.963513999732506 ] ] ] } },
{ "type": "Feature", "id": 511, "properties": { "pctwhite": 82.650602, "pctrep": 75.722543, "R": 131, "D": 38, "CNTYVTD": "4393668", "rmapshaperid": 490, "id": 441 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.186179000294999, 32.923987999633816 ], [ -97.186670999831719, 32.918722999691468 ], [ -97.189442000445268, 32.920547000431981 ], [ -97.193454000194762, 32.921564999904462 ], [ -97.196248000110472, 32.921191000012435 ], [ -97.191435000184427, 32.923069999836841 ], [ -97.189780999972584, 32.926341999609306 ], [ -97.192491000475172, 32.926915000402801 ], [ -97.187570999940107, 32.926879000019021 ], [ -97.186179000294999, 32.923987999633816 ] ] ] } },
{ "type": "Feature", "id": 513, "properties": { "pctwhite": 88.543689, "pctrep": 69.854470, "R": 336, "D": 138, "CNTYVTD": "4393671", "rmapshaperid": 491, "id": 442 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.25338100038671, 32.938767999983732 ], [ -97.25365600016184, 32.934573000145853 ], [ -97.253907000362361, 32.928992999682158 ], [ -97.254289000516849, 32.921870999610945 ], [ -97.255152000412139, 32.916712999868992 ], [ -97.261270999533409, 32.916766000406795 ], [ -97.261462999458743, 32.929219000378374 ], [ -97.265551000497254, 32.92919800002889 ], [ -97.265543000273951, 32.934023000020545 ], [ -97.264213999597516, 32.934609000059915 ], [ -97.254913000416479, 32.934418999687146 ], [ -97.255025000332921, 32.93873700029927 ], [ -97.25338100038671, 32.938767999983732 ] ] ] } },
{ "type": "Feature", "id": 514, "properties": { "pctwhite": 35.752688, "pctrep": 12.953368, "R": 25, "D": 164, "CNTYVTD": "4394006", "rmapshaperid": 492, "id": 443 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.321397000234015, 32.744992000372598 ], [ -97.321541000130608, 32.741834999928287 ], [ -97.325859000070949, 32.741804999803414 ], [ -97.325864999829392, 32.735559999830187 ], [ -97.324260000340104, 32.735499999658479 ], [ -97.325885999943921, 32.733060000048411 ], [ -97.326428999951347, 32.733114000204985 ], [ -97.33156099961127, 32.733139999877153 ], [ -97.331662000016081, 32.742101999685296 ], [ -97.339764000042635, 32.74253400035623 ], [ -97.332970999831304, 32.745284000018714 ], [ -97.33013000023827, 32.745222999825948 ], [ -97.321397000234015, 32.744992000372598 ] ] ] } },
{ "type": "Feature", "id": 515, "properties": { "pctwhite": 80.400421, "pctrep": 54.666667, "R": 533, "D": 425, "CNTYVTD": "4394016", "rmapshaperid": 493, "id": 444 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.378513999461461, 32.739431000345832 ], [ -97.378629000250157, 32.732670000064765 ], [ -97.384093999504202, 32.732806999713141 ], [ -97.387792000143477, 32.732872000368545 ], [ -97.399986999590482, 32.733049000324996 ], [ -97.407891999958622, 32.734153000090039 ], [ -97.40785000036324, 32.734989999877371 ], [ -97.39872000052128, 32.73488299999655 ], [ -97.398660999711723, 32.736796000430928 ], [ -97.387663999826103, 32.736699999790012 ], [ -97.387634999578736, 32.739533999574611 ], [ -97.378513999461461, 32.739431000345832 ] ] ] } },
{ "type": "Feature", "id": 516, "properties": { "pctwhite": 13.031565, "pctrep": 23.458038, "R": 232, "D": 748, "CNTYVTD": "4394017", "rmapshaperid": 494, "id": 445 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.36723900004894, 32.79661000004306 ], [ -97.371876000436401, 32.796630000163283 ], [ -97.371902000072751, 32.792743000027947 ], [ -97.38841500001422, 32.806386999581427 ], [ -97.397540999899817, 32.809291999970178 ], [ -97.402069999947201, 32.810769000222457 ], [ -97.401259999888026, 32.813474000192947 ], [ -97.402093000495711, 32.815815000131416 ], [ -97.40004500049028, 32.816884000079391 ], [ -97.401331999784105, 32.818994999781438 ], [ -97.387270999469948, 32.825465000215189 ], [ -97.379380000453637, 32.829492000312563 ], [ -97.379499999527908, 32.81662499966906 ], [ -97.374970000418458, 32.813902000442653 ], [ -97.365562999558648, 32.80483700001205 ], [ -97.365576999492049, 32.799564999612798 ], [ -97.36723900004894, 32.79661000004306 ] ] ] } },
{ "type": "Feature", "id": 517, "properties": { "pctwhite": 73.767051, "pctrep": 69.838710, "R": 433, "D": 177, "CNTYVTD": "4394018", "rmapshaperid": 495, "id": 446 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.342701000061027, 32.861508000302436 ], [ -97.34308200000244, 32.859658999685408 ], [ -97.343099999785977, 32.847868999667611 ], [ -97.342971000032037, 32.837456999638817 ], [ -97.347268999920914, 32.842338999933013 ], [ -97.347476000300702, 32.842584999650697 ], [ -97.352127999887585, 32.847899999989473 ], [ -97.369328000280532, 32.847881000160491 ], [ -97.369336000526474, 32.858682999575699 ], [ -97.363915999841566, 32.860210999708698 ], [ -97.36168999945609, 32.860885000356255 ], [ -97.352536000375352, 32.860888999980503 ], [ -97.349912000443496, 32.861631999898528 ], [ -97.342701000061027, 32.861508000302436 ] ] ] } },
{ "type": "Feature", "id": 518, "properties": { "pctwhite": 64.269201, "pctrep": 62.658228, "R": 495, "D": 277, "CNTYVTD": "4394020", "rmapshaperid": 496, "id": 447 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.42963400026801, 32.75415799977533 ], [ -97.438295999619442, 32.745900999883716 ], [ -97.440426999485823, 32.742008000176178 ], [ -97.440678000149319, 32.736465999971308 ], [ -97.447443999763237, 32.737930000074449 ], [ -97.451781999500653, 32.738065999739106 ], [ -97.466899000147833, 32.738130000161384 ], [ -97.460378000172923, 32.738439000280977 ], [ -97.460213999795087, 32.750171999815961 ], [ -97.459107999521621, 32.75212099998388 ], [ -97.459044999783174, 32.759729000100812 ], [ -97.445481999527715, 32.759622000102311 ], [ -97.444423999653296, 32.759627999778829 ], [ -97.443796000187987, 32.753104000279272 ], [ -97.435113000030242, 32.752926000001864 ], [ -97.435033999538661, 32.754163000105962 ], [ -97.42963400026801, 32.75415799977533 ] ] ] } },
{ "type": "Feature", "id": 519, "properties": { "pctwhite": 41.224938, "pctrep": 60.855263, "R": 370, "D": 226, "CNTYVTD": "4394042", "rmapshaperid": 497, "id": 448 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.235919000172728, 32.794217999627804 ], [ -97.236276999767952, 32.794055000351236 ], [ -97.2437759995166, 32.790854999757897 ], [ -97.256667000283343, 32.785397000188688 ], [ -97.256688999862106, 32.787739999859674 ], [ -97.259667000217163, 32.787714000257211 ], [ -97.273237000534081, 32.787747999997748 ], [ -97.273153000046747, 32.794901999611291 ], [ -97.27134300026087, 32.794879999862765 ], [ -97.268833000379658, 32.796674000061756 ], [ -97.263402999636966, 32.801896000211208 ], [ -97.260637999614517, 32.803372000153125 ], [ -97.250798000356625, 32.806535999577939 ], [ -97.24896500024343, 32.807823000198162 ], [ -97.248682999574683, 32.807595000257479 ], [ -97.248658999667597, 32.804068999821546 ], [ -97.247072000449961, 32.802799000455288 ], [ -97.242022000363662, 32.800699000251669 ], [ -97.237398000485967, 32.795009000156668 ], [ -97.235919000172728, 32.794217999627804 ] ] ] } },
{ "type": "Feature", "id": 520, "properties": { "pctwhite": 78.749605, "pctrep": 79.141566, "R": 2102, "D": 526, "CNTYVTD": "4394044", "rmapshaperid": 498, "id": 449 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.420071999722836, 32.972953999872828 ], [ -97.417087000501724, 32.967951000299884 ], [ -97.420229999924359, 32.967934000209908 ], [ -97.420722999566195, 32.963365999571529 ], [ -97.420715000447927, 32.941761000306265 ], [ -97.417630000162205, 32.935153000301845 ], [ -97.410852999893834, 32.92232199983146 ], [ -97.402948000371651, 32.905701000051323 ], [ -97.401536000447422, 32.903511999656274 ], [ -97.388149999907114, 32.888111999609329 ], [ -97.387618000008672, 32.888121000290376 ], [ -97.381265000044166, 32.880856999727321 ], [ -97.381693999773901, 32.880863999951714 ], [ -97.408746000325252, 32.880980000209838 ], [ -97.408711000429591, 32.88831099959166 ], [ -97.417527999744948, 32.888451000181384 ], [ -97.419703999508641, 32.887624999684313 ], [ -97.425872999676812, 32.887631000405598 ], [ -97.428101000056344, 32.891214999970629 ], [ -97.430851999500177, 32.892614999560827 ], [ -97.435298999912547, 32.892990999617965 ], [ -97.444256000139774, 32.893885000061921 ], [ -97.446836000030231, 32.897050000028457 ], [ -97.449277000123203, 32.898133999630275 ], [ -97.457735999877357, 32.898822000113171 ], [ -97.460891999936706, 32.90105799981356 ], [ -97.468649000245449, 32.902147000054505 ], [ -97.475283999555685, 32.901947000187008 ], [ -97.480831000112602, 32.901335000216406 ], [ -97.484203999678783, 32.900384000315469 ], [ -97.48425599976629, 32.905063000201771 ], [ -97.484895000489701, 32.907160999825145 ], [ -97.481808000268899, 32.909511999947142 ], [ -97.479711999976701, 32.908928999932769 ], [ -97.47756500023263, 32.910953000403161 ], [ -97.479895000062541, 32.912035999849657 ], [ -97.480547000360119, 32.914838999978009 ], [ -97.485115999557593, 32.91700500002171 ], [ -97.488783999576711, 32.91747499997733 ], [ -97.491018000271538, 32.920486999867819 ], [ -97.490171999913528, 32.927623999979112 ], [ -97.489222000285537, 32.929129000426542 ], [ -97.485689999768965, 32.929540999907559 ], [ -97.490203999610046, 32.935689000389317 ], [ -97.494210000335372, 32.937888000131046 ], [ -97.495671000090908, 32.937039000071579 ], [ -97.501926999750637, 32.936610999952897 ], [ -97.50455799997215, 32.938512000291603 ], [ -97.503675000380582, 32.942593000164983 ], [ -97.506350000118147, 32.945905999567493 ], [ -97.508861000106435, 32.947105000368452 ], [ -97.508267999929998, 32.949517000210825 ], [ -97.505375999551617, 32.949762000249507 ], [ -97.503422000525006, 32.95124799959936 ], [ -97.497620000317468, 32.951997999791175 ], [ -97.500316999914403, 32.954180999856177 ], [ -97.503321999889764, 32.954500999918274 ], [ -97.506304999606613, 32.953781000401229 ], [ -97.507199000025324, 32.955907999957098 ], [ -97.504397000460486, 32.95785000003977 ], [ -97.501817000024602, 32.95682599968454 ], [ -97.496885000501251, 32.960140999572978 ], [ -97.489736000506255, 32.958940999895646 ], [ -97.484830999786595, 32.959532999998828 ], [ -97.478351000108333, 32.96111499964853 ], [ -97.476019000539523, 32.960019999822663 ], [ -97.473299000189158, 32.962003999652346 ], [ -97.471602999716808, 32.961482999822799 ], [ -97.467355999736483, 32.962186000156969 ], [ -97.467585000437367, 32.96638799968251 ], [ -97.466110000519038, 32.966664999801125 ], [ -97.465675999806834, 32.969791999575989 ], [ -97.464087000188641, 32.971883000406997 ], [ -97.46186999955583, 32.972711999935107 ], [ -97.459945999567296, 32.976519999988618 ], [ -97.456727000271982, 32.980186999616997 ], [ -97.451746999498269, 32.978920000033661 ], [ -97.449211000168347, 32.979892000256648 ], [ -97.447580000426257, 32.977992000056325 ], [ -97.442917000129484, 32.977641000292323 ], [ -97.439226000078236, 32.978293000330233 ], [ -97.434738999902805, 32.977445999653099 ], [ -97.434252999674925, 32.984827000297841 ], [ -97.432585000212612, 32.986509999930448 ], [ -97.428828000335628, 32.986631999576964 ], [ -97.424599999985944, 32.977747999946985 ], [ -97.420071999722836, 32.972953999872828 ] ] ] } },
{ "type": "Feature", "id": 521, "properties": { "pctwhite": 89.736928, "pctrep": 76.704545, "R": 1350, "D": 396, "CNTYVTD": "4394045", "rmapshaperid": 499, "id": 450 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.425872999676812, 32.887631000405598 ], [ -97.42583000024122, 32.879871000311496 ], [ -97.427036000203444, 32.876584000219857 ], [ -97.431947000301577, 32.877242000447261 ], [ -97.435385000419629, 32.878363000211834 ], [ -97.443745999485714, 32.876922000317521 ], [ -97.44984799952509, 32.876674000166084 ], [ -97.455126000085414, 32.882021999582399 ], [ -97.452919000367785, 32.883586999807875 ], [ -97.453706000489305, 32.885556999586363 ], [ -97.452687999969157, 32.887701000443151 ], [ -97.450561000444509, 32.888439000371321 ], [ -97.448864999942202, 32.890604999888424 ], [ -97.445012000066654, 32.890894000179948 ], [ -97.441548000167714, 32.890105000249179 ], [ -97.440970999677972, 32.891955000108432 ], [ -97.438272999649755, 32.891548000426653 ], [ -97.435298999912547, 32.892990999617965 ], [ -97.430851999500177, 32.892614999560827 ], [ -97.428101000056344, 32.891214999970629 ], [ -97.425872999676812, 32.887631000405598 ] ] ] } },
{ "type": "Feature", "id": 522, "properties": { "pctwhite": 89.163262, "pctrep": 79.172749, "R": 1627, "D": 394, "CNTYVTD": "4394046", "rmapshaperid": 500, "id": 451 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.52800599991896, 32.906145999703668 ], [ -97.525284000192784, 32.90439500041726 ], [ -97.522035999770409, 32.905485000266602 ], [ -97.519201999816886, 32.903940000411254 ], [ -97.515671999940281, 32.900264000386471 ], [ -97.512805999694692, 32.893755999695259 ], [ -97.509835000351742, 32.887710999712873 ], [ -97.509823999705773, 32.883555999593121 ], [ -97.508716000372502, 32.877318999772143 ], [ -97.510307000119127, 32.875545000016835 ], [ -97.512203999496435, 32.876648999722448 ], [ -97.519867999476062, 32.876941999955953 ], [ -97.520781999533952, 32.878196999911225 ], [ -97.524492000278798, 32.877641999733719 ], [ -97.526002000304644, 32.879008000026538 ], [ -97.525132000492988, 32.881032999882031 ], [ -97.527345000152593, 32.882089000023939 ], [ -97.533168999731814, 32.88230299992096 ], [ -97.535952999497951, 32.888889999966338 ], [ -97.53994399964607, 32.886176000086714 ], [ -97.542276000335619, 32.887408000143701 ], [ -97.546209000431034, 32.886919000189238 ], [ -97.545721000417529, 32.9075129997141 ], [ -97.543518999740073, 32.907507000118287 ], [ -97.543528999759857, 32.911057000335553 ], [ -97.534723000318252, 32.911046999881947 ], [ -97.533578999497138, 32.906397999676649 ], [ -97.533609999623394, 32.902120999639642 ], [ -97.528404000303354, 32.902116000167474 ], [ -97.52800599991896, 32.906145999703668 ] ] ] } },
{ "type": "Feature", "id": 523, "properties": { "pctwhite": 87.567680, "pctrep": 78.750000, "R": 1197, "D": 304, "CNTYVTD": "4394047", "rmapshaperid": 501, "id": 452 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.52664799953088, 32.912265999916571 ], [ -97.531025000538079, 32.916580999570698 ], [ -97.5310779999662, 32.919911000210057 ], [ -97.52622300004866, 32.919966999840241 ], [ -97.526152000391377, 32.9278120000832 ], [ -97.536254000433061, 32.927832999927027 ], [ -97.540671000150581, 32.929366000379744 ], [ -97.545178999699047, 32.929932999608212 ], [ -97.544456000162995, 32.963397000115052 ], [ -97.54418099968477, 32.994176999853835 ], [ -97.519862999489405, 32.9940999996005 ], [ -97.516753999969964, 32.992042999873902 ], [ -97.512627999555548, 32.990971000280595 ], [ -97.51715100009379, 32.987647999645716 ], [ -97.514961999958928, 32.986227000000206 ], [ -97.515678000404861, 32.981367000171765 ], [ -97.513815999996524, 32.976546000309312 ], [ -97.515705000074803, 32.970028000432642 ], [ -97.514322999544518, 32.968673999559599 ], [ -97.513624999515585, 32.965469999591811 ], [ -97.512049000534788, 32.964006999738523 ], [ -97.515384000526836, 32.961367000016956 ], [ -97.515594000470514, 32.956819999826166 ], [ -97.518283000130594, 32.951412999585813 ], [ -97.518590999617089, 32.944155999897177 ], [ -97.519925999555852, 32.942030999995538 ], [ -97.516550999730327, 32.941967999859216 ], [ -97.510701000432604, 32.932756999951295 ], [ -97.509869999831466, 32.929847999609606 ], [ -97.506279000250572, 32.930321000346638 ], [ -97.504594999828655, 32.92672999965518 ], [ -97.508267000041002, 32.920558000086118 ], [ -97.506211999489665, 32.918478000108188 ], [ -97.50615199974618, 32.91522699971226 ], [ -97.504411999554009, 32.913131000046945 ], [ -97.507953000514519, 32.910623999715504 ], [ -97.511618000349145, 32.909034000114829 ], [ -97.515439999618678, 32.908634000021408 ], [ -97.521065999960598, 32.910513999698864 ], [ -97.522523999507285, 32.913994999658009 ], [ -97.525843999724628, 32.9160629998483 ], [ -97.52664799953088, 32.912265999916571 ] ] ] } },
{ "type": "Feature", "id": 524, "properties": { "pctwhite": 4.649197, "pctrep": 17.605634, "R": 50, "D": 234, "CNTYVTD": "4394048", "rmapshaperid": 502, "id": 453 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.349098999681729, 32.795239999768398 ], [ -97.34912300000606, 32.790365000443835 ], [ -97.348215000432816, 32.786794000106624 ], [ -97.344978999797377, 32.784957999951509 ], [ -97.341629999946974, 32.784053000035186 ], [ -97.342454000348738, 32.780980000348691 ], [ -97.343279999985342, 32.772749999787102 ], [ -97.343561000319994, 32.773169999867136 ], [ -97.349171000149994, 32.781511999564835 ], [ -97.34919300007823, 32.78280899969149 ], [ -97.356576999780373, 32.782837999875639 ], [ -97.356507000447365, 32.794245999717397 ], [ -97.35796100010343, 32.794884000377188 ], [ -97.356161999724378, 32.795323999703655 ], [ -97.349098999681729, 32.795239999768398 ] ] ] } },
{ "type": "Feature", "id": 525, "properties": { "pctwhite": 4.447514, "pctrep": 11.220472, "R": 57, "D": 449, "CNTYVTD": "4394050", "rmapshaperid": 503, "id": 454 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.349098999681729, 32.795239999768398 ], [ -97.356161999724378, 32.795323999703655 ], [ -97.35796100010343, 32.794884000377188 ], [ -97.358817000428132, 32.796396999589376 ], [ -97.363646999978926, 32.796537999633429 ], [ -97.36723900004894, 32.79661000004306 ], [ -97.365576999492049, 32.799564999612798 ], [ -97.365562999558648, 32.80483700001205 ], [ -97.374970000418458, 32.813902000442653 ], [ -97.379499999527908, 32.81662499966906 ], [ -97.379380000453637, 32.829492000312563 ], [ -97.372983999712133, 32.832583000419433 ], [ -97.362852000463803, 32.836547999820247 ], [ -97.360573999579131, 32.831946999715171 ], [ -97.35831400025269, 32.830218000316606 ], [ -97.351674000013844, 32.818972999636721 ], [ -97.351423999536152, 32.814042000070259 ], [ -97.351479999607946, 32.803749000031921 ], [ -97.349098999681729, 32.795239999768398 ] ] ] } },
{ "type": "Feature", "id": 526, "properties": { "pctwhite": 33.333333, "pctrep": 50.000000, "R": 1, "D": 1, "CNTYVTD": "4394051", "rmapshaperid": 504, "id": 455 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.315529000192626, 32.795205999766374 ], [ -97.318095000064659, 32.79311400009027 ], [ -97.324340999687664, 32.784469000427691 ], [ -97.325524000429226, 32.78221499975723 ], [ -97.333121000422693, 32.783776999598842 ], [ -97.336504000150981, 32.78399599956871 ], [ -97.338358000062982, 32.782952999815429 ], [ -97.339646999509782, 32.778135999604146 ], [ -97.339832000464384, 32.774928999863903 ], [ -97.33840600021486, 32.772573999808252 ], [ -97.339367000250832, 32.773392000301222 ], [ -97.343279999985342, 32.772749999787102 ], [ -97.342454000348738, 32.780980000348691 ], [ -97.341629999946974, 32.784053000035186 ], [ -97.340934000506266, 32.785953000177855 ], [ -97.337997000176912, 32.785927999926194 ], [ -97.335872000396591, 32.790087000126668 ], [ -97.333730999706773, 32.790294999923269 ], [ -97.324679000092189, 32.787730000162391 ], [ -97.323448000442681, 32.790638000459012 ], [ -97.323541999862201, 32.795212000111704 ], [ -97.315529000192626, 32.795205999766374 ] ] ] } },
{ "type": "Feature", "id": 527, "properties": { "pctwhite": 65.291937, "pctrep": 68.367347, "R": 402, "D": 176, "CNTYVTD": "4394053", "rmapshaperid": 505, "id": 456 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.426134000092972, 32.862987999613104 ], [ -97.426317000118786, 32.852309000047846 ], [ -97.426310000273077, 32.843240999738306 ], [ -97.425292000467707, 32.840077000410204 ], [ -97.425209000350335, 32.832996000314054 ], [ -97.424185000276339, 32.831299000065357 ], [ -97.420371000187913, 32.828342000236297 ], [ -97.419992999856703, 32.821415999874226 ], [ -97.431443000072306, 32.821171000393655 ], [ -97.432670999713594, 32.822819000368902 ], [ -97.437821999480207, 32.822833999910081 ], [ -97.44253399992499, 32.824530999701615 ], [ -97.444113999601015, 32.82515800010755 ], [ -97.446743999622143, 32.828699000436728 ], [ -97.449655000487184, 32.82936099974112 ], [ -97.456306000205757, 32.828709999564097 ], [ -97.45962199977015, 32.829731999676326 ], [ -97.461428000066121, 32.83262499976243 ], [ -97.462714000373694, 32.840436999989748 ], [ -97.464084000014793, 32.842239000274851 ], [ -97.469605000257488, 32.844144000321414 ], [ -97.473425999714621, 32.848165999671444 ], [ -97.476363999984031, 32.850011999874091 ], [ -97.478385999996007, 32.855862999547867 ], [ -97.475922000349826, 32.858807000102608 ], [ -97.473308999467704, 32.858781000412137 ], [ -97.472676999705939, 32.860648999697972 ], [ -97.469235999464786, 32.860999000398046 ], [ -97.467218999919865, 32.862385999857857 ], [ -97.465835000053758, 32.861080999997448 ], [ -97.462883999856047, 32.863123000316264 ], [ -97.426134000092972, 32.862987999613104 ] ] ] } },
{ "type": "Feature", "id": 528, "properties": { "pctwhite": 41.769042, "pctrep": 62.804878, "R": 206, "D": 119, "CNTYVTD": "4394057", "rmapshaperid": 506, "id": 457 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.34026900032282, 32.733148000218684 ], [ -97.343730000301278, 32.733163999996165 ], [ -97.343670999584177, 32.736521999635457 ], [ -97.350457000058427, 32.737069000115355 ], [ -97.358786999936726, 32.732801999773649 ], [ -97.359891000218894, 32.734076000354818 ], [ -97.359962000309778, 32.735675000146358 ], [ -97.351774000499262, 32.743606000072091 ], [ -97.349399000074158, 32.74692100000518 ], [ -97.346565000037373, 32.746778999671932 ], [ -97.341632999975332, 32.747801000205982 ], [ -97.342304000297119, 32.73934699987219 ], [ -97.340261000036904, 32.737697999779868 ], [ -97.34026900032282, 32.733148000218684 ] ] ] } },
{ "type": "Feature", "id": 529, "properties": { "pctwhite": 39.264609, "pctrep": 34.802260, "R": 308, "D": 539, "CNTYVTD": "4394060", "rmapshaperid": 507, "id": 458 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.33156099961127, 32.733139999877153 ], [ -97.331591000195203, 32.718155000384613 ], [ -97.333374999465534, 32.718185000030601 ], [ -97.333335000336149, 32.72056500038326 ], [ -97.336262999696004, 32.720713999672249 ], [ -97.336283000175129, 32.718715999825186 ], [ -97.339094999785459, 32.718718999620535 ], [ -97.340204999480989, 32.720435999632421 ], [ -97.340074000043742, 32.728302000338651 ], [ -97.343726000458759, 32.730686999666503 ], [ -97.343730000301278, 32.733163999996165 ], [ -97.34026900032282, 32.733148000218684 ], [ -97.337671000458656, 32.733150000034506 ], [ -97.337511999799872, 32.7355699997904 ], [ -97.333346000139059, 32.735581000297714 ], [ -97.33156099961127, 32.733139999877153 ] ] ] } },
{ "type": "Feature", "id": 530, "properties": { "pctwhite": 82.364610, "pctrep": 78.335950, "R": 1497, "D": 387, "CNTYVTD": "4394065", "rmapshaperid": 508, "id": 459 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.511661999504994, 32.854902000232862 ], [ -97.507191999914966, 32.852033999648235 ], [ -97.504386999910921, 32.849576000080233 ], [ -97.489013000222826, 32.835148999717887 ], [ -97.484158999493943, 32.830225999986318 ], [ -97.497863000279295, 32.830524999955315 ], [ -97.497872999640919, 32.823059000156206 ], [ -97.509084999732138, 32.823230000235455 ], [ -97.508903999743495, 32.819050999586061 ], [ -97.507820000247392, 32.81712399997074 ], [ -97.501199999792036, 32.816226000127635 ], [ -97.500809999734173, 32.805048000238457 ], [ -97.500715000062272, 32.801653000012458 ], [ -97.49630100048384, 32.800966999998835 ], [ -97.493874000001, 32.79838800021453 ], [ -97.493822000300341, 32.794104999692628 ], [ -97.492776000032762, 32.792678999739344 ], [ -97.496897000444719, 32.790630000043379 ], [ -97.496030999939819, 32.786078000127858 ], [ -97.497575000259644, 32.784504000403615 ], [ -97.497791000354255, 32.782088999650867 ], [ -97.499583000044652, 32.781163000172718 ], [ -97.502584999980883, 32.775314999791824 ], [ -97.508288000512422, 32.774788000302919 ], [ -97.509695999851886, 32.77129599989685 ], [ -97.514786999771715, 32.769749999641618 ], [ -97.517761999752466, 32.767625999956728 ], [ -97.518967999489078, 32.769440000057742 ], [ -97.522860000028444, 32.770054000231177 ], [ -97.525743999885194, 32.769008000443094 ], [ -97.52954400008214, 32.771863999665989 ], [ -97.531521000100241, 32.770701000125257 ], [ -97.545208999655557, 32.773947000027128 ], [ -97.54820100005405, 32.776113999789374 ], [ -97.547499000011243, 32.840427999616942 ], [ -97.546979000362214, 32.863320999741092 ], [ -97.54096000048888, 32.858929999941047 ], [ -97.533051000143217, 32.85719699978732 ], [ -97.530283000093078, 32.854855000274647 ], [ -97.526740999945687, 32.854808999562295 ], [ -97.52435099975321, 32.855959999960803 ], [ -97.520730000494041, 32.854867999932956 ], [ -97.514022999670928, 32.855809000075695 ], [ -97.511661999504994, 32.854902000232862 ] ] ] } },
{ "type": "Feature", "id": 531, "properties": { "pctwhite": 5.028463, "pctrep": 19.856887, "R": 111, "D": 445, "CNTYVTD": "4394067", "rmapshaperid": 509, "id": 460 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.344923999860384, 32.765944999953888 ], [ -97.345665999665883, 32.766317999760716 ], [ -97.358281000464501, 32.764207000119804 ], [ -97.360904999537112, 32.764096999592532 ], [ -97.360134999668503, 32.766771999774477 ], [ -97.355580999881184, 32.769538999568454 ], [ -97.361278999745664, 32.772785999804015 ], [ -97.358701000501227, 32.774537999613784 ], [ -97.353545000415153, 32.778084000029118 ], [ -97.356576999780373, 32.782837999875639 ], [ -97.34919300007823, 32.78280899969149 ], [ -97.349171000149994, 32.781511999564835 ], [ -97.343561000319994, 32.773169999867136 ], [ -97.344095999635982, 32.767870000279274 ], [ -97.344923999860384, 32.765944999953888 ] ] ] } },
{ "type": "Feature", "id": 532, "properties": { "pctwhite": 4.811251, "pctrep": 23.191489, "R": 109, "D": 356, "CNTYVTD": "4394068", "rmapshaperid": 510, "id": 461 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.363646999978926, 32.796537999633429 ], [ -97.363786000153866, 32.782870999895728 ], [ -97.368352999655855, 32.7828699995665 ], [ -97.370641000103149, 32.779949000121036 ], [ -97.371782000005894, 32.780938000171346 ], [ -97.372390999787427, 32.781298000428741 ], [ -97.372997999919647, 32.7815980003965 ], [ -97.375517999612825, 32.782438000434126 ], [ -97.375363999789457, 32.786526999651777 ], [ -97.371889000342009, 32.789560999594741 ], [ -97.371902000072751, 32.792743000027947 ], [ -97.371876000436401, 32.796630000163283 ], [ -97.36723900004894, 32.79661000004306 ], [ -97.363646999978926, 32.796537999633429 ] ] ] } },
{ "type": "Feature", "id": 533, "properties": { "pctwhite": 67.772285, "pctrep": 67.913148, "R": 1689, "D": 763, "CNTYVTD": "4394069", "rmapshaperid": 511, "id": 462 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.503482999528757, 32.741245000042646 ], [ -97.503511000451354, 32.738596000042705 ], [ -97.494577000082955, 32.738022000159177 ], [ -97.48120800025491, 32.738112999965658 ], [ -97.481112999554924, 32.730779000206965 ], [ -97.480200000399165, 32.724513000439444 ], [ -97.479122999980959, 32.718240000128453 ], [ -97.47695200005694, 32.711732999581706 ], [ -97.482093000054817, 32.711789999952892 ], [ -97.484462000118057, 32.70928300036708 ], [ -97.486868000471759, 32.71031300023764 ], [ -97.487256999958831, 32.712263000000405 ], [ -97.490160999510408, 32.713808000120437 ], [ -97.493279999740182, 32.714069999732686 ], [ -97.496992999492392, 32.713261999976076 ], [ -97.498849999621726, 32.709203999793111 ], [ -97.499035000419354, 32.692559999597769 ], [ -97.501869000487034, 32.692610999838145 ], [ -97.535224000032898, 32.695999000068177 ], [ -97.539234999893097, 32.696820999921876 ], [ -97.544430000309561, 32.699244000429111 ], [ -97.549086000085012, 32.703119999733786 ], [ -97.549102000199838, 32.719730999891254 ], [ -97.548601000004908, 32.744518000230769 ], [ -97.544168999613817, 32.744980000072658 ], [ -97.543109000195557, 32.741543000255461 ], [ -97.503482999528757, 32.741245000042646 ] ] ] } },
{ "type": "Feature", "id": 534, "properties": { "pctwhite": 66.192924, "pctrep": 56.596036, "R": 828, "D": 609, "CNTYVTD": "4394070", "rmapshaperid": 512, "id": 463 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.387213999626283, 32.678052000409004 ], [ -97.386374999502664, 32.675944999617229 ], [ -97.38698800045745, 32.672898000366132 ], [ -97.38498400025604, 32.671925999767588 ], [ -97.38990200017011, 32.667855999985989 ], [ -97.392882999804485, 32.665387999727479 ], [ -97.400002000391638, 32.65947499957732 ], [ -97.402509000304931, 32.662795999647535 ], [ -97.40016499959367, 32.668433000001784 ], [ -97.399053000001672, 32.674246999659097 ], [ -97.395338999677506, 32.67778200009311 ], [ -97.393680999919027, 32.676494999890004 ], [ -97.391312000183632, 32.677468999727893 ], [ -97.390852000250248, 32.681091999592276 ], [ -97.386456000431579, 32.679281999686587 ], [ -97.387213999626283, 32.678052000409004 ] ] ] } },
{ "type": "Feature", "id": 535, "properties": { "pctwhite": 66.969147, "pctrep": 65.384615, "R": 136, "D": 66, "CNTYVTD": "4394073", "rmapshaperid": 513, "id": 464 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.397540999899817, 32.809291999970178 ], [ -97.398399999622768, 32.809533000385727 ], [ -97.407462000174235, 32.812050000179269 ], [ -97.407447000259268, 32.816186999904041 ], [ -97.401331999784105, 32.818994999781438 ], [ -97.40004500049028, 32.816884000079391 ], [ -97.402093000495711, 32.815815000131416 ], [ -97.401259999888026, 32.813474000192947 ], [ -97.402069999947201, 32.810769000222457 ], [ -97.397540999899817, 32.809291999970178 ] ] ] } },
{ "type": "Feature", "id": 536, "properties": { "pctwhite": 79.113924, "pctrep": 52.486188, "R": 95, "D": 82, "CNTYVTD": "4394077", "rmapshaperid": 514, "id": 465 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.3379490002675, 32.711357000026979 ], [ -97.337721999859326, 32.707744999690277 ], [ -97.338951000392967, 32.706017000443417 ], [ -97.340645999861721, 32.706024000297262 ], [ -97.341800000070009, 32.707758000147351 ], [ -97.342796999633194, 32.711401000196588 ], [ -97.3379490002675, 32.711357000026979 ] ] ] } },
{ "type": "Feature", "id": 537, "properties": { "pctwhite": 91.161049, "pctrep": 72.322435, "R": 1283, "D": 465, "CNTYVTD": "4394086", "rmapshaperid": 515, "id": 466 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.378217999836409, 32.744187999982692 ], [ -97.378513999461461, 32.739431000345832 ], [ -97.387634999578736, 32.739533999574611 ], [ -97.398634999903166, 32.739607000239388 ], [ -97.39727000014723, 32.745066999980928 ], [ -97.402988000323205, 32.745362000023285 ], [ -97.404098999950918, 32.746415999597126 ], [ -97.404086000048778, 32.748185000322351 ], [ -97.400815000021112, 32.748219000361523 ], [ -97.401837999627105, 32.752841000322441 ], [ -97.400735999583574, 32.752840000257734 ], [ -97.396332999620839, 32.752287999904098 ], [ -97.39493499976281, 32.753402000023037 ], [ -97.393519000431979, 32.757353999853777 ], [ -97.389724999909106, 32.759518000032145 ], [ -97.387318999867944, 32.759818999965788 ], [ -97.383272000058284, 32.761718999912425 ], [ -97.378945000078133, 32.762475999025291 ], [ -97.377086000113266, 32.760283999996716 ], [ -97.377609999790806, 32.757893999998785 ], [ -97.37839699989101, 32.751495999726245 ], [ -97.375258999791427, 32.751468000383653 ], [ -97.375740999965444, 32.745221999576657 ], [ -97.378217999836409, 32.744187999982692 ] ] ] } },
{ "type": "Feature", "id": 538, "properties": { "pctwhite": 4.319794, "pctrep": 25.120773, "R": 52, "D": 153, "CNTYVTD": "4394087", "rmapshaperid": 516, "id": 467 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.358701000501227, 32.774537999613784 ], [ -97.362754999675786, 32.778731000082104 ], [ -97.364087000080971, 32.781156999682317 ], [ -97.362608000036445, 32.782871000247191 ], [ -97.356576999780373, 32.782837999875639 ], [ -97.353545000415153, 32.778084000029118 ], [ -97.358701000501227, 32.774537999613784 ] ] ] } },
{ "type": "Feature", "id": 539, "properties": { "pctwhite": 69.393543, "pctrep": 70.383780, "R": 972, "D": 390, "CNTYVTD": "4394091", "rmapshaperid": 517, "id": 468 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.419992999856703, 32.821415999874226 ], [ -97.407474000215416, 32.821496999588184 ], [ -97.407462000399008, 32.816906999587353 ], [ -97.407447000259268, 32.816186999904041 ], [ -97.407462000174235, 32.812050000179269 ], [ -97.4113490004585, 32.813186999817695 ], [ -97.411198000250678, 32.811236000035201 ], [ -97.4112859995939, 32.80344400010582 ], [ -97.418433999880321, 32.808849000439693 ], [ -97.430411000096143, 32.810332999629068 ], [ -97.439790000001793, 32.808934999836623 ], [ -97.43999999970481, 32.798830999777223 ], [ -97.440754000070001, 32.798238999622903 ], [ -97.441880999671923, 32.798566999978668 ], [ -97.451701999617868, 32.798426000299095 ], [ -97.451500000104915, 32.8052279999375 ], [ -97.446302999803521, 32.809544000170995 ], [ -97.448367999575055, 32.810309999845316 ], [ -97.450445999466154, 32.81479400001421 ], [ -97.447368000438033, 32.815360999769098 ], [ -97.447187999778777, 32.817664000180301 ], [ -97.442257999522454, 32.815843999580665 ], [ -97.444433999553453, 32.819577000423273 ], [ -97.44253399992499, 32.824530999701615 ], [ -97.437821999480207, 32.822833999910081 ], [ -97.432670999713594, 32.822819000368902 ], [ -97.431443000072306, 32.821171000393655 ], [ -97.419992999856703, 32.821415999874226 ] ] ] } },
{ "type": "Feature", "id": 540, "properties": { "pctwhite": 4.889032, "pctrep": 20.952381, "R": 66, "D": 248, "CNTYVTD": "4394092", "rmapshaperid": 518, "id": 469 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.35796100010343, 32.794884000377188 ], [ -97.356507000447365, 32.794245999717397 ], [ -97.356576999780373, 32.782837999875639 ], [ -97.362608000036445, 32.782871000247191 ], [ -97.363786000153866, 32.782870999895728 ], [ -97.363646999978926, 32.796537999633429 ], [ -97.358817000428132, 32.796396999589376 ], [ -97.35796100010343, 32.794884000377188 ] ] ] } },
{ "type": "Feature", "id": 541, "properties": { "pctwhite": 10.521008, "pctrep": 23.255814, "R": 170, "D": 551, "CNTYVTD": "4394093", "rmapshaperid": 519, "id": 470 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.325732000356581, 32.810341999649353 ], [ -97.336579000020237, 32.810639999590023 ], [ -97.339610999656472, 32.810377000370231 ], [ -97.33956599998811, 32.813935000033126 ], [ -97.351423999536152, 32.814042000070259 ], [ -97.351674000013844, 32.818972999636721 ], [ -97.35831400025269, 32.830218000316606 ], [ -97.360573999579131, 32.831946999715171 ], [ -97.362852000463803, 32.836547999820247 ], [ -97.347466000306326, 32.842281000182517 ], [ -97.347268999920914, 32.842338999933013 ], [ -97.342971000032037, 32.837456999638817 ], [ -97.335532000076952, 32.828893000346824 ], [ -97.331330000026043, 32.824697000146841 ], [ -97.325648000355812, 32.817973000362429 ], [ -97.325732000356581, 32.810341999649353 ] ] ] } },
{ "type": "Feature", "id": 542, "properties": { "pctwhite": 54.044867, "pctrep": 32.242226, "R": 197, "D": 393, "CNTYVTD": "4394096", "rmapshaperid": 520, "id": 471 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.333374999465534, 32.718185000030601 ], [ -97.335173000087835, 32.718006000216008 ], [ -97.343768999704309, 32.718053999958812 ], [ -97.344443000017336, 32.718085000061023 ], [ -97.344001000266985, 32.722296000430703 ], [ -97.343726000458759, 32.730686999666503 ], [ -97.340074000043742, 32.728302000338651 ], [ -97.340204999480989, 32.720435999632421 ], [ -97.339094999785459, 32.718718999620535 ], [ -97.336283000175129, 32.718715999825186 ], [ -97.336262999696004, 32.720713999672249 ], [ -97.333335000336149, 32.72056500038326 ], [ -97.333374999465534, 32.718185000030601 ] ] ] } },
{ "type": "Feature", "id": 543, "properties": { "pctwhite": 18.267831, "pctrep": 31.098696, "R": 167, "D": 367, "CNTYVTD": "4394097", "rmapshaperid": 521, "id": 472 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.331687999590329, 32.698694999554917 ], [ -97.340300999991342, 32.698670000192422 ], [ -97.343827000490606, 32.69873099966987 ], [ -97.343854000280857, 32.70776299977144 ], [ -97.341800000070009, 32.707758000147351 ], [ -97.340645999861721, 32.706024000297262 ], [ -97.338951000392967, 32.706017000443417 ], [ -97.337363999973917, 32.707717000149884 ], [ -97.33165199982794, 32.707695999586477 ], [ -97.331687999590329, 32.698694999554917 ] ] ] } },
{ "type": "Feature", "id": 544, "properties": { "pctwhite": 22.934947, "pctrep": 48.727984, "R": 249, "D": 258, "CNTYVTD": "4394101", "rmapshaperid": 522, "id": 473 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.290645000506757, 32.78097000023191 ], [ -97.301549999507287, 32.780970000437989 ], [ -97.30156999986616, 32.788732999689174 ], [ -97.301975000421095, 32.795132999910372 ], [ -97.293593999664424, 32.795112999977881 ], [ -97.293435000035757, 32.78803399970915 ], [ -97.290607000418731, 32.788010000134307 ], [ -97.290645000506757, 32.78097000023191 ] ] ] } },
{ "type": "Feature", "id": 545, "properties": { "pctwhite": 39.444444, "pctrep": 51.214128, "R": 232, "D": 214, "CNTYVTD": "4394102", "rmapshaperid": 523, "id": 474 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.273153000046747, 32.794901999611291 ], [ -97.273237000534081, 32.787747999997748 ], [ -97.273206000260743, 32.781435999857543 ], [ -97.273204000189878, 32.780440000034126 ], [ -97.27321799978202, 32.779597000379397 ], [ -97.278332999996294, 32.779541999969318 ], [ -97.278963000530553, 32.779573000008398 ], [ -97.284133000416091, 32.779572999608916 ], [ -97.286018000517402, 32.779587000088981 ], [ -97.287431000271212, 32.781809000135354 ], [ -97.289541999531664, 32.781787999778572 ], [ -97.284000000265408, 32.785777999678785 ], [ -97.283747000093783, 32.78919199984707 ], [ -97.286415000044656, 32.789149999982868 ], [ -97.285460000233158, 32.795062999663621 ], [ -97.273153000046747, 32.794901999611291 ] ] ] } },
{ "type": "Feature", "id": 546, "properties": { "pctwhite": 9.060956, "pctrep": 21.925134, "R": 82, "D": 291, "CNTYVTD": "4394107", "rmapshaperid": 524, "id": 475 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.312940000478335, 32.700013000424924 ], [ -97.310224000053708, 32.699467000030616 ], [ -97.305952000460763, 32.696568000361786 ], [ -97.305738999885904, 32.694915999749092 ], [ -97.307989999863622, 32.692259000312191 ], [ -97.305442000216615, 32.684344999612925 ], [ -97.30625800020978, 32.684386999918551 ], [ -97.312641999785356, 32.684395999556372 ], [ -97.315220999953212, 32.684369999821982 ], [ -97.32058100036015, 32.684333999705359 ], [ -97.320530000405157, 32.698600000081498 ], [ -97.32055499979711, 32.703217999988411 ], [ -97.320280000127966, 32.703034000023166 ], [ -97.319520999687754, 32.701160000231638 ], [ -97.315392999861785, 32.697733000210789 ], [ -97.312940000478335, 32.700013000424924 ] ] ] } },
{ "type": "Feature", "id": 547, "properties": { "pctwhite": 8.510638, "pctrep": 20.147420, "R": 82, "D": 321, "CNTYVTD": "4394110", "rmapshaperid": 525, "id": 476 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.358701000501227, 32.774537999613784 ], [ -97.361278999745664, 32.772785999804015 ], [ -97.355580999881184, 32.769538999568454 ], [ -97.360134999668503, 32.766771999774477 ], [ -97.360904999537112, 32.764096999592532 ], [ -97.365685999810893, 32.76496400008979 ], [ -97.368803000344457, 32.766764000339101 ], [ -97.369071999912975, 32.771025999565794 ], [ -97.372351000303652, 32.774572000052068 ], [ -97.372337000026775, 32.775202000343064 ], [ -97.36984600046668, 32.774340999842188 ], [ -97.36742400051223, 32.775598000246411 ], [ -97.370641000103149, 32.779949000121036 ], [ -97.368352999655855, 32.7828699995665 ], [ -97.363786000153866, 32.782870999895728 ], [ -97.362608000036445, 32.782871000247191 ], [ -97.364087000080971, 32.781156999682317 ], [ -97.362754999675786, 32.778731000082104 ], [ -97.358701000501227, 32.774537999613784 ] ] ] } },
{ "type": "Feature", "id": 548, "properties": { "pctwhite": 48.575130, "pctrep": 65.909091, "R": 145, "D": 69, "CNTYVTD": "4394113", "rmapshaperid": 526, "id": 477 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.405560000288219, 32.793324000440393 ], [ -97.407942999782591, 32.790655000392363 ], [ -97.404542000272741, 32.787193999709068 ], [ -97.405066000418401, 32.784851000000693 ], [ -97.408512000448596, 32.781478000344045 ], [ -97.412674999840078, 32.780018999919811 ], [ -97.417836999819883, 32.779020000276773 ], [ -97.420904000232525, 32.777588000275131 ], [ -97.421494000063689, 32.775951000394492 ], [ -97.417935000434838, 32.772741000380826 ], [ -97.417551000002831, 32.770088999901525 ], [ -97.415208999512529, 32.768077000137097 ], [ -97.427761999802897, 32.768214000108223 ], [ -97.427815999702602, 32.765629000096695 ], [ -97.435338999995821, 32.765529000288431 ], [ -97.435344999692745, 32.76342700041463 ], [ -97.439098000300774, 32.763439000241092 ], [ -97.439098000204709, 32.765429999838489 ], [ -97.445854000050701, 32.765475999622964 ], [ -97.460245999641572, 32.765548999808367 ], [ -97.459235000267711, 32.768672999907935 ], [ -97.454734000072079, 32.771708999732091 ], [ -97.453436000508688, 32.775836000079138 ], [ -97.461699000183671, 32.775927999578741 ], [ -97.463701999858714, 32.779860999584344 ], [ -97.464737000084753, 32.784398999653902 ], [ -97.463520999615497, 32.785880999972605 ], [ -97.457867000453575, 32.790221999597001 ], [ -97.451342999603384, 32.795215999851685 ], [ -97.446896999501874, 32.796898999554315 ], [ -97.44060600048067, 32.798045999921492 ], [ -97.437593999630195, 32.795132999972616 ], [ -97.434226000134828, 32.794186000259252 ], [ -97.428929000023956, 32.79412600034113 ], [ -97.425774000354011, 32.795477000190424 ], [ -97.423840999941305, 32.797630999582474 ], [ -97.421171999757846, 32.79829900025284 ], [ -97.419697999551289, 32.796864000194368 ], [ -97.414027000321724, 32.797301999994637 ], [ -97.41205300030542, 32.7993730002866 ], [ -97.411822000440665, 32.797387000172606 ], [ -97.406867999958152, 32.795975999578829 ], [ -97.405560000288219, 32.793324000440393 ] ] ] } },
{ "type": "Feature", "id": 549, "properties": { "pctwhite": 95.601173, "pctrep": 85.200000, "R": 426, "D": 71, "CNTYVTD": "4394115", "rmapshaperid": 527, "id": 478 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.412912000134881, 32.749586000086524 ], [ -97.410221999871382, 32.749071000007973 ], [ -97.404098999950918, 32.746415999597126 ], [ -97.402988000323205, 32.745362000023285 ], [ -97.40053400002445, 32.742955000292795 ], [ -97.404322999990228, 32.739730999847112 ], [ -97.409654000140705, 32.739700000056182 ], [ -97.409949000007558, 32.737502999796995 ], [ -97.413056999769779, 32.73750300034407 ], [ -97.418127999498978, 32.737212999900564 ], [ -97.41981899961992, 32.738407000044297 ], [ -97.419023999714156, 32.745875999830275 ], [ -97.420329000347081, 32.749018000326302 ], [ -97.417982999552834, 32.752419000290104 ], [ -97.414404000274175, 32.751290999957092 ], [ -97.412912000134881, 32.749586000086524 ] ] ] } },
{ "type": "Feature", "id": 550, "properties": { "pctwhite": 87.623318, "pctrep": 66.742597, "R": 879, "D": 403, "CNTYVTD": "4394116", "rmapshaperid": 528, "id": 479 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.365150000277566, 32.755661999896226 ], [ -97.361381999698779, 32.751231999627421 ], [ -97.361541999554419, 32.751128000283167 ], [ -97.369947000311214, 32.747662999766312 ], [ -97.370012999577909, 32.743985999615433 ], [ -97.378217999836409, 32.744187999982692 ], [ -97.375740999965444, 32.745221999576657 ], [ -97.375258999791427, 32.751468000383653 ], [ -97.37839699989101, 32.751495999726245 ], [ -97.377609999790806, 32.757893999998785 ], [ -97.37258599995188, 32.757913999619326 ], [ -97.36882199990292, 32.755723999875201 ], [ -97.365150000277566, 32.755661999896226 ] ] ] } },
{ "type": "Feature", "id": 551, "properties": { "pctwhite": 60.927505, "pctrep": 55.252387, "R": 405, "D": 320, "CNTYVTD": "4394118", "rmapshaperid": 529, "id": 480 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.411656999722496, 32.710396999740631 ], [ -97.416168999804441, 32.70880700042202 ], [ -97.416685000281575, 32.710524000175745 ], [ -97.421289999771801, 32.711786999760399 ], [ -97.421307999690313, 32.714080999831246 ], [ -97.422885000110384, 32.716598999564305 ], [ -97.423256000464363, 32.721370000147957 ], [ -97.424764000491265, 32.72481499999671 ], [ -97.41342800051909, 32.729548000385613 ], [ -97.413544999470602, 32.717917000406075 ], [ -97.411806000019254, 32.715161000208418 ], [ -97.411656999722496, 32.710396999740631 ] ] ] } },
{ "type": "Feature", "id": 552, "properties": { "pctwhite": 57.842324, "pctrep": 65.357143, "R": 732, "D": 374, "CNTYVTD": "4394121", "rmapshaperid": 530, "id": 481 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.407262000018079, 32.766026000174826 ], [ -97.407675000175303, 32.772440999845593 ], [ -97.411052999750851, 32.77298300043379 ], [ -97.411835000049038, 32.775974999564198 ], [ -97.401644000166442, 32.775562000333665 ], [ -97.399620000309355, 32.773384000435307 ], [ -97.390238999827531, 32.780779000342051 ], [ -97.386922000020121, 32.780299000310663 ], [ -97.386151000190296, 32.777003000238331 ], [ -97.389643000000476, 32.777016000088196 ], [ -97.389708999586801, 32.771704000347547 ], [ -97.386230999852444, 32.771594000394153 ], [ -97.386149999483322, 32.76964700008552 ], [ -97.38985700035731, 32.769677999821795 ], [ -97.390804000268957, 32.766851999770623 ], [ -97.391435000103684, 32.761428000047033 ], [ -97.393517000280383, 32.761470999773358 ], [ -97.394233000533191, 32.763891999666477 ], [ -97.39983599958299, 32.763817999564488 ], [ -97.403966999531278, 32.764532999757336 ], [ -97.407262000018079, 32.766026000174826 ] ] ] } },
{ "type": "Feature", "id": 553, "properties": { "pctwhite": 11.875096, "pctrep": 35.030864, "R": 227, "D": 417, "CNTYVTD": "4394122", "rmapshaperid": 531, "id": 482 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.371902000072751, 32.792743000027947 ], [ -97.371889000342009, 32.789560999594741 ], [ -97.375363999789457, 32.786526999651777 ], [ -97.375517999612825, 32.782438000434126 ], [ -97.381514000152663, 32.784250000033808 ], [ -97.383531999934505, 32.785646000404157 ], [ -97.387488999995568, 32.788936000303664 ], [ -97.387562000131226, 32.788995000035953 ], [ -97.391122999908845, 32.7919579995744 ], [ -97.390324000344719, 32.793421999786815 ], [ -97.394412999479982, 32.79667499996502 ], [ -97.394288999642754, 32.798311000223663 ], [ -97.393869000146921, 32.799097000223931 ], [ -97.391557000281381, 32.801143999741008 ], [ -97.391644000453709, 32.803477999928248 ], [ -97.38841500001422, 32.806386999581427 ], [ -97.371902000072751, 32.792743000027947 ] ] ] } },
{ "type": "Feature", "id": 554, "properties": { "pctwhite": 6.914992, "pctrep": 26.336634, "R": 133, "D": 368, "CNTYVTD": "4394123", "rmapshaperid": 532, "id": 483 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.339610999656472, 32.810377000370231 ], [ -97.336979000212935, 32.795163999919119 ], [ -97.325810999843782, 32.795188999598139 ], [ -97.323541999862201, 32.795212000111704 ], [ -97.323448000442681, 32.790638000459012 ], [ -97.324679000092189, 32.787730000162391 ], [ -97.333730999706773, 32.790294999923269 ], [ -97.335872000396591, 32.790087000126668 ], [ -97.337997000176912, 32.785927999926194 ], [ -97.340934000506266, 32.785953000177855 ], [ -97.341629999946974, 32.784053000035186 ], [ -97.344978999797377, 32.784957999951509 ], [ -97.348215000432816, 32.786794000106624 ], [ -97.34912300000606, 32.790365000443835 ], [ -97.349098999681729, 32.795239999768398 ], [ -97.351479999607946, 32.803749000031921 ], [ -97.351423999536152, 32.814042000070259 ], [ -97.33956599998811, 32.813935000033126 ], [ -97.339610999656472, 32.810377000370231 ] ] ] } },
{ "type": "Feature", "id": 555, "properties": { "pctwhite": 71.599718, "pctrep": 55.858311, "R": 410, "D": 310, "CNTYVTD": "4394124", "rmapshaperid": 533, "id": 484 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.318762999698521, 32.780625000093274 ], [ -97.321964999773073, 32.782155999553801 ], [ -97.324340999687664, 32.784469000427691 ], [ -97.318095000064659, 32.79311400009027 ], [ -97.315529000192626, 32.795205999766374 ], [ -97.308540000373739, 32.795163999562099 ], [ -97.308576000056263, 32.780912000022838 ], [ -97.318762999698521, 32.780625000093274 ] ] ] } },
{ "type": "Feature", "id": 556, "properties": { "pctwhite": 43.928129, "pctrep": 57.250000, "R": 458, "D": 324, "CNTYVTD": "4394125", "rmapshaperid": 534, "id": 485 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.371782000005894, 32.780938000171346 ], [ -97.372337000026775, 32.775202000343064 ], [ -97.374338000182021, 32.776760999587225 ], [ -97.376142000112068, 32.776139000044019 ], [ -97.38004200029718, 32.774557999612824 ], [ -97.380568000488708, 32.772972000104389 ], [ -97.378500999554106, 32.767887999541038 ], [ -97.37930099967231, 32.765313000328874 ], [ -97.383272000058284, 32.761718999912425 ], [ -97.387318999867944, 32.759818999965788 ], [ -97.389724999909106, 32.759518000032145 ], [ -97.393519000431979, 32.757353999853777 ], [ -97.39493499976281, 32.753402000023037 ], [ -97.396332999620839, 32.752287999904098 ], [ -97.400735999583574, 32.752840000257734 ], [ -97.404421000013471, 32.757691999656764 ], [ -97.404476999792806, 32.761352999938097 ], [ -97.405834999664862, 32.763705000145443 ], [ -97.408730000112726, 32.765335000151346 ], [ -97.407262000018079, 32.766026000174826 ], [ -97.403966999531278, 32.764532999757336 ], [ -97.39983599958299, 32.763817999564488 ], [ -97.394233000533191, 32.763891999666477 ], [ -97.393517000280383, 32.761470999773358 ], [ -97.391435000103684, 32.761428000047033 ], [ -97.390804000268957, 32.766851999770623 ], [ -97.38985700035731, 32.769677999821795 ], [ -97.386149999483322, 32.76964700008552 ], [ -97.386230999852444, 32.771594000394153 ], [ -97.389708999586801, 32.771704000347547 ], [ -97.389643000000476, 32.777016000088196 ], [ -97.386151000190296, 32.777003000238331 ], [ -97.386922000020121, 32.780299000310663 ], [ -97.390238999827531, 32.780779000342051 ], [ -97.383531999934505, 32.785646000404157 ], [ -97.381514000152663, 32.784250000033808 ], [ -97.375517999612825, 32.782438000434126 ], [ -97.372997999919647, 32.7815980003965 ], [ -97.372390999787427, 32.781298000428741 ], [ -97.371782000005894, 32.780938000171346 ] ] ] } },
{ "type": "Feature", "id": 557, "properties": { "pctwhite": 69.688484, "pctrep": 64.721845, "R": 954, "D": 484, "CNTYVTD": "4394128", "rmapshaperid": 535, "id": 486 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.445854000050701, 32.765475999622964 ], [ -97.445481999527715, 32.759622000102311 ], [ -97.459044999783174, 32.759729000100812 ], [ -97.473813000511981, 32.759881000393243 ], [ -97.477605000212435, 32.760871000271642 ], [ -97.47475000007671, 32.774337999674287 ], [ -97.470277999607973, 32.78007000044088 ], [ -97.467073000475636, 32.781613000218634 ], [ -97.464737000084753, 32.784398999653902 ], [ -97.463701999858714, 32.779860999584344 ], [ -97.461699000183671, 32.775927999578741 ], [ -97.453436000508688, 32.775836000079138 ], [ -97.454734000072079, 32.771708999732091 ], [ -97.459235000267711, 32.768672999907935 ], [ -97.460245999641572, 32.765548999808367 ], [ -97.445854000050701, 32.765475999622964 ] ] ] } },
{ "type": "Feature", "id": 558, "properties": { "pctwhite": 90.804598, "pctrep": 67.567568, "R": 500, "D": 228, "CNTYVTD": "4394129", "rmapshaperid": 536, "id": 487 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.438500000480616, 32.709266000289439 ], [ -97.439039000378173, 32.718814999799505 ], [ -97.431794999986778, 32.721852999920408 ], [ -97.428685999899471, 32.718569000129861 ], [ -97.428590999643703, 32.716216000209599 ], [ -97.426817000185522, 32.712195999790019 ], [ -97.428917999858214, 32.70940399990323 ], [ -97.433314000402831, 32.708894999893957 ], [ -97.435453000365669, 32.706797999905639 ], [ -97.438500000480616, 32.709266000289439 ] ] ] } },
{ "type": "Feature", "id": 559, "properties": { "pctwhite": 90.639033, "pctrep": 71.012931, "R": 1318, "D": 513, "CNTYVTD": "4394130", "rmapshaperid": 537, "id": 488 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.378583999951843, 32.694384000108606 ], [ -97.379189999934383, 32.691584999698009 ], [ -97.375228000448175, 32.688851000159687 ], [ -97.373986999817319, 32.686628999925972 ], [ -97.373525999605576, 32.684496999888694 ], [ -97.378668000422508, 32.684352999839334 ], [ -97.380494000397491, 32.683433999997554 ], [ -97.388634000307434, 32.6833040003376 ], [ -97.39250299953946, 32.682834000007084 ], [ -97.392643000014957, 32.687182000069683 ], [ -97.39377099973089, 32.68938200024634 ], [ -97.393821000259436, 32.693083999721338 ], [ -97.390553000486079, 32.697749000108743 ], [ -97.389728000040094, 32.703234000021773 ], [ -97.383624000199788, 32.701458999955086 ], [ -97.382549000479528, 32.698672999655081 ], [ -97.383346999852591, 32.695641999894441 ], [ -97.378583999951843, 32.694384000108606 ] ] ] } },
{ "type": "Feature", "id": 560, "properties": { "pctwhite": 65.531335, "pctrep": 58.472222, "R": 421, "D": 285, "CNTYVTD": "4394135", "rmapshaperid": 538, "id": 489 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.457715999658006, 32.723783999664946 ], [ -97.457598999780245, 32.716295999592099 ], [ -97.459748000172695, 32.716296000183789 ], [ -97.46603600042566, 32.716354999771255 ], [ -97.472505000383947, 32.718209000437767 ], [ -97.479122999980959, 32.718240000128453 ], [ -97.480200000399165, 32.724513000439444 ], [ -97.465469000295656, 32.724296999965361 ], [ -97.457715999658006, 32.723783999664946 ] ] ] } },
{ "type": "Feature", "id": 561, "properties": { "pctwhite": 46.237804, "pctrep": 53.074141, "R": 587, "D": 496, "CNTYVTD": "4394136", "rmapshaperid": 539, "id": 490 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.431794999986778, 32.721852999920408 ], [ -97.439039000378173, 32.718814999799505 ], [ -97.438500000480616, 32.709266000289439 ], [ -97.438853999726746, 32.703675999676619 ], [ -97.435935000110405, 32.699454999556806 ], [ -97.436217999491276, 32.699467000404852 ], [ -97.439838999839182, 32.699393000246538 ], [ -97.446952000051652, 32.695219999614572 ], [ -97.450801999787487, 32.696697000179533 ], [ -97.453130000230445, 32.698803999781312 ], [ -97.449503999901395, 32.705677000019634 ], [ -97.452785999775188, 32.706278999623535 ], [ -97.45278200000071, 32.71627800012822 ], [ -97.451003999772425, 32.722987000057906 ], [ -97.436879000424653, 32.721471999785322 ], [ -97.431794999986778, 32.721852999920408 ] ] ] } },
{ "type": "Feature", "id": 562, "properties": { "pctwhite": 89.126560, "pctrep": 67.421791, "R": 625, "D": 289, "CNTYVTD": "4394137", "rmapshaperid": 540, "id": 491 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.360904999537112, 32.764096999592532 ], [ -97.361069000205248, 32.75915000027441 ], [ -97.368038999922391, 32.759211000121219 ], [ -97.365150000277566, 32.755661999896226 ], [ -97.36882199990292, 32.755723999875201 ], [ -97.37258599995188, 32.757913999619326 ], [ -97.377609999790806, 32.757893999998785 ], [ -97.377086000113266, 32.760283999996716 ], [ -97.378945000078133, 32.762475999025291 ], [ -97.383272000058284, 32.761718999912425 ], [ -97.37930099967231, 32.765313000328874 ], [ -97.378500999554106, 32.767887999541038 ], [ -97.380568000488708, 32.772972000104389 ], [ -97.38004200029718, 32.774557999612824 ], [ -97.376142000112068, 32.776139000044019 ], [ -97.372351000303652, 32.774572000052068 ], [ -97.369071999912975, 32.771025999565794 ], [ -97.368803000344457, 32.766764000339101 ], [ -97.365685999810893, 32.76496400008979 ], [ -97.360904999537112, 32.764096999592532 ] ] ] } },
{ "type": "Feature", "id": 563, "properties": { "pctwhite": 45.263591, "pctrep": 55.737705, "R": 204, "D": 154, "CNTYVTD": "4394138", "rmapshaperid": 541, "id": 492 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.398399999622768, 32.809533000385727 ], [ -97.405030999726321, 32.809553999955476 ], [ -97.403582000099476, 32.805210999911445 ], [ -97.3950770002441, 32.805140000196239 ], [ -97.392896999761973, 32.80212799983034 ], [ -97.391557000281381, 32.801143999741008 ], [ -97.393869000146921, 32.799097000223931 ], [ -97.394288999642754, 32.798311000223663 ], [ -97.394412999479982, 32.79667499996502 ], [ -97.394601999889531, 32.794646000160022 ], [ -97.398206999629679, 32.795894999746302 ], [ -97.404468000477948, 32.798273000267145 ], [ -97.410574000187722, 32.802920000432124 ], [ -97.410798999948696, 32.808999000127251 ], [ -97.407770999495938, 32.808976999923537 ], [ -97.407756000155018, 32.811239000329046 ], [ -97.411198000250678, 32.811236000035201 ], [ -97.4113490004585, 32.813186999817695 ], [ -97.407462000174235, 32.812050000179269 ], [ -97.398399999622768, 32.809533000385727 ] ] ] } },
{ "type": "Feature", "id": 564, "properties": { "pctwhite": 48.015473, "pctrep": 62.278107, "R": 842, "D": 490, "CNTYVTD": "4394141", "rmapshaperid": 542, "id": 493 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.254705999901333, 32.831694000193011 ], [ -97.252653999816431, 32.827305999913605 ], [ -97.252962000218162, 32.825677999875765 ], [ -97.256969000130653, 32.824041000020017 ], [ -97.257127000369366, 32.822618999689617 ], [ -97.253278999738143, 32.818828999979516 ], [ -97.255156000382598, 32.820122999735403 ], [ -97.264482999595913, 32.820228000148795 ], [ -97.264264000305616, 32.833730999665214 ], [ -97.274402000299929, 32.827463999893496 ], [ -97.290643999584489, 32.820545999970967 ], [ -97.290673000327473, 32.839430000388703 ], [ -97.276754999852159, 32.839412999764583 ], [ -97.264083999607891, 32.839380000292913 ], [ -97.255156000266638, 32.840260999658277 ], [ -97.252810999529089, 32.840361999908424 ], [ -97.255260999821985, 32.837089999645251 ], [ -97.25834000027325, 32.835123999584113 ], [ -97.254705999901333, 32.831694000193011 ] ] ] } },
{ "type": "Feature", "id": 565, "properties": { "pctwhite": 64.158576, "pctrep": 67.255595, "R": 571, "D": 266, "CNTYVTD": "4394144", "rmapshaperid": 543, "id": 494 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.415208999512529, 32.768077000137097 ], [ -97.408730000112726, 32.765335000151346 ], [ -97.405834999664862, 32.763705000145443 ], [ -97.404476999792806, 32.761352999938097 ], [ -97.404421000013471, 32.757691999656764 ], [ -97.400735999583574, 32.752840000257734 ], [ -97.401837999627105, 32.752841000322441 ], [ -97.414955000083737, 32.752852999781993 ], [ -97.415705000398546, 32.754026000038117 ], [ -97.42963400026801, 32.75415799977533 ], [ -97.435033999538661, 32.754163000105962 ], [ -97.435113000030242, 32.752926000001864 ], [ -97.443796000187987, 32.753104000279272 ], [ -97.444423999653296, 32.759627999778829 ], [ -97.445481999527715, 32.759622000102311 ], [ -97.445854000050701, 32.765475999622964 ], [ -97.439098000204709, 32.765429999838489 ], [ -97.439098000300774, 32.763439000241092 ], [ -97.435344999692745, 32.76342700041463 ], [ -97.435338999995821, 32.765529000288431 ], [ -97.427815999702602, 32.765629000096695 ], [ -97.427761999802897, 32.768214000108223 ], [ -97.415208999512529, 32.768077000137097 ] ] ] } },
{ "type": "Feature", "id": 566, "properties": { "pctwhite": 13.903810, "pctrep": 34.324943, "R": 300, "D": 559, "CNTYVTD": "4394155", "rmapshaperid": 544, "id": 495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.345968000124913, 32.70777700038709 ], [ -97.343854000280857, 32.70776299977144 ], [ -97.343827000490606, 32.69873099966987 ], [ -97.340300999991342, 32.698670000192422 ], [ -97.340362000277437, 32.684725000362036 ], [ -97.349877999473904, 32.684544999751445 ], [ -97.353038000314172, 32.684558000075327 ], [ -97.352966000338085, 32.700789000304155 ], [ -97.352587999842243, 32.701696000006692 ], [ -97.352395000146529, 32.701877999691277 ], [ -97.350215999915548, 32.704165999932847 ], [ -97.346300000318763, 32.707773999834906 ], [ -97.345965000011049, 32.708087000440173 ], [ -97.345968000124913, 32.70777700038709 ] ] ] } },
{ "type": "Feature", "id": 567, "properties": { "pctwhite": 42.635856, "pctrep": 58.250000, "R": 466, "D": 319, "CNTYVTD": "4394159", "rmapshaperid": 545, "id": 496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.273140999689758, 32.817306000029696 ], [ -97.273125000382251, 32.803401000151482 ], [ -97.274451000356294, 32.803010000155851 ], [ -97.27703099975075, 32.805303999632685 ], [ -97.281195000324473, 32.804568999708238 ], [ -97.28599000020067, 32.806582000123875 ], [ -97.287485999816141, 32.808578999568454 ], [ -97.290562000394701, 32.809035999709579 ], [ -97.290545999874951, 32.809769999756412 ], [ -97.290757000122056, 32.814943000169919 ], [ -97.287207999775461, 32.817499999987746 ], [ -97.284644000253181, 32.817034000208487 ], [ -97.273140999689758, 32.817306000029696 ] ] ] } },
{ "type": "Feature", "id": 568, "properties": { "pctwhite": 26.920594, "pctrep": 54.545455, "R": 90, "D": 75, "CNTYVTD": "4394162", "rmapshaperid": 546, "id": 497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.290545999874951, 32.809769999756412 ], [ -97.293901000424057, 32.808015999822345 ], [ -97.292896000270844, 32.806054000224393 ], [ -97.290547000389466, 32.806136999912979 ], [ -97.290551999965274, 32.802978999838473 ], [ -97.290609000431502, 32.795109999763717 ], [ -97.293593999664424, 32.795112999977881 ], [ -97.301975000421095, 32.795132999910372 ], [ -97.308540000373739, 32.795163999562099 ], [ -97.315529000192626, 32.795205999766374 ], [ -97.308461000492542, 32.801011999984865 ], [ -97.306085000233367, 32.802499999829742 ], [ -97.299966000514559, 32.802486999605279 ], [ -97.299995999500368, 32.800124999677998 ], [ -97.295919999503141, 32.800175999724871 ], [ -97.295655000022037, 32.806969999987061 ], [ -97.294720000194673, 32.809494000297981 ], [ -97.297186000520469, 32.810208999844008 ], [ -97.290545999874951, 32.809769999756412 ] ] ] } },
{ "type": "Feature", "id": 569, "properties": { "pctwhite": 89.041096, "pctrep": 66.971279, "R": 513, "D": 246, "CNTYVTD": "4394163", "rmapshaperid": 547, "id": 498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.373419000011012, 32.68193299969834 ], [ -97.381192000390499, 32.675066999705876 ], [ -97.387213999626283, 32.678052000409004 ], [ -97.386456000431579, 32.679281999686587 ], [ -97.390852000250248, 32.681091999592276 ], [ -97.391312000183632, 32.677468999727893 ], [ -97.393680999919027, 32.676494999890004 ], [ -97.395338999677506, 32.67778200009311 ], [ -97.39303100004831, 32.681126000336135 ], [ -97.39250299953946, 32.682834000007084 ], [ -97.388634000307434, 32.6833040003376 ], [ -97.380494000397491, 32.683433999997554 ], [ -97.378668000422508, 32.684352999839334 ], [ -97.373525999605576, 32.684496999888694 ], [ -97.373986999817319, 32.686628999925972 ], [ -97.370226999531681, 32.685319000314081 ], [ -97.373419000011012, 32.68193299969834 ] ] ] } },
{ "type": "Feature", "id": 570, "properties": { "pctwhite": 59.163165, "pctrep": 65.698925, "R": 1222, "D": 609, "CNTYVTD": "4394178", "rmapshaperid": 548, "id": 499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.412912000134881, 32.749586000086524 ], [ -97.414404000274175, 32.751290999957092 ], [ -97.417982999552834, 32.752419000290104 ], [ -97.420329000347081, 32.749018000326302 ], [ -97.419023999714156, 32.745875999830275 ], [ -97.41981899961992, 32.738407000044297 ], [ -97.418127999498978, 32.737212999900564 ], [ -97.413056999769779, 32.73750300034407 ], [ -97.413502999755778, 32.73443099983453 ], [ -97.428172000501576, 32.734661000189725 ], [ -97.440678000149319, 32.736465999971308 ], [ -97.440426999485823, 32.742008000176178 ], [ -97.438295999619442, 32.745900999883716 ], [ -97.42963400026801, 32.75415799977533 ], [ -97.415705000398546, 32.754026000038117 ], [ -97.414955000083737, 32.752852999781993 ], [ -97.412912000134881, 32.749586000086524 ] ] ] } },
{ "type": "Feature", "id": 571, "properties": { "pctwhite": 46.764603, "pctrep": 50.336700, "R": 299, "D": 287, "CNTYVTD": "4394179", "rmapshaperid": 549, "id": 500 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.451003999772425, 32.722987000057906 ], [ -97.450712999502116, 32.733994999893113 ], [ -97.451781999500653, 32.738065999739106 ], [ -97.447443999763237, 32.737930000074449 ], [ -97.440678000149319, 32.736465999971308 ], [ -97.428172000501576, 32.734661000189725 ], [ -97.426633999920185, 32.731794999735769 ], [ -97.42569599985454, 32.72664999966505 ], [ -97.424764000491265, 32.72481499999671 ], [ -97.431794999986778, 32.721852999920408 ], [ -97.436879000424653, 32.721471999785322 ], [ -97.451003999772425, 32.722987000057906 ] ] ] } },
{ "type": "Feature", "id": 572, "properties": { "pctwhite": 81.654922, "pctrep": 67.362146, "R": 1356, "D": 621, "CNTYVTD": "4394182", "rmapshaperid": 550, "id": 501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.371045000272915, 32.71556700017166 ], [ -97.372462000142193, 32.714252000094014 ], [ -97.372058000213059, 32.711178999661193 ], [ -97.372825000391501, 32.707180999627141 ], [ -97.373991999651565, 32.70670700027928 ], [ -97.374503999626199, 32.701937000165785 ], [ -97.376490999580184, 32.701734999738839 ], [ -97.384100000013547, 32.702713999671026 ], [ -97.389109000178649, 32.704454000147315 ], [ -97.385293000393631, 32.713921000455173 ], [ -97.385369999838844, 32.716279000194291 ], [ -97.380363999968353, 32.719080999987419 ], [ -97.371757000000557, 32.722695999968479 ], [ -97.367523999472823, 32.722850000123444 ], [ -97.36453799988729, 32.723736000257027 ], [ -97.36393099949106, 32.72014199985685 ], [ -97.366751999639803, 32.71865900001454 ], [ -97.37029399963464, 32.718366999722086 ], [ -97.371045000272915, 32.71556700017166 ] ] ] } },
{ "type": "Feature", "id": 573, "properties": { "pctwhite": 62.016129, "pctrep": 68.767507, "R": 491, "D": 206, "CNTYVTD": "4394191", "rmapshaperid": 551, "id": 502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.249413999887096, 32.853124000118726 ], [ -97.249389000243085, 32.848699000350933 ], [ -97.255194000241318, 32.848684999594596 ], [ -97.255156000266638, 32.840260999658277 ], [ -97.264083999607891, 32.839380000292913 ], [ -97.264029999693506, 32.853039999755872 ], [ -97.249413999887096, 32.853124000118726 ] ] ] } },
{ "type": "Feature", "id": 574, "properties": { "pctwhite": 7.119609, "pctrep": 27.872340, "R": 131, "D": 336, "CNTYVTD": "4394195", "rmapshaperid": 552, "id": 503 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.331687999590329, 32.698694999554917 ], [ -97.331754999511546, 32.684804000186752 ], [ -97.340362000277437, 32.684725000362036 ], [ -97.340300999991342, 32.698670000192422 ], [ -97.331687999590329, 32.698694999554917 ] ] ] } },
{ "type": "Feature", "id": 575, "properties": { "pctwhite": 3.699466, "pctrep": 18.614719, "R": 86, "D": 371, "CNTYVTD": "4394201", "rmapshaperid": 553, "id": 504 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.320530000405157, 32.698600000081498 ], [ -97.32058100036015, 32.684333999705359 ], [ -97.331754999511546, 32.684804000186752 ], [ -97.331687999590329, 32.698694999554917 ], [ -97.325404999849681, 32.69863299956198 ], [ -97.320530000405157, 32.698600000081498 ] ] ] } },
{ "type": "Feature", "id": 576, "properties": { "pctwhite": 40.267576, "pctrep": 58.391123, "R": 421, "D": 284, "CNTYVTD": "4394202", "rmapshaperid": 554, "id": 505 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.387940000301512, 32.788489000057751 ], [ -97.387488999995568, 32.788936000303664 ], [ -97.383531999934505, 32.785646000404157 ], [ -97.390238999827531, 32.780779000342051 ], [ -97.399620000309355, 32.773384000435307 ], [ -97.401644000166442, 32.775562000333665 ], [ -97.411835000049038, 32.775974999564198 ], [ -97.412674999840078, 32.780018999919811 ], [ -97.408512000448596, 32.781478000344045 ], [ -97.405066000418401, 32.784851000000693 ], [ -97.404542000272741, 32.787193999709068 ], [ -97.407942999782591, 32.790655000392363 ], [ -97.405560000288219, 32.793324000440393 ], [ -97.403999000145518, 32.792218000185876 ], [ -97.399903999613699, 32.789105000335176 ], [ -97.399862999610022, 32.784304000058903 ], [ -97.39477300010131, 32.784423999766297 ], [ -97.394748000198575, 32.788640999975343 ], [ -97.387940000301512, 32.788489000057751 ] ] ] } },
{ "type": "Feature", "id": 577, "properties": { "pctwhite": 33.767880, "pctrep": 45.891142, "R": 430, "D": 497, "CNTYVTD": "4394203", "rmapshaperid": 555, "id": 506 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.451003999772425, 32.722987000057906 ], [ -97.457715999658006, 32.723783999664946 ], [ -97.465469000295656, 32.724296999965361 ], [ -97.465580000101667, 32.727052000334808 ], [ -97.466772999536502, 32.729051000136977 ], [ -97.466466999713035, 32.734043000229747 ], [ -97.466899000147833, 32.738130000161384 ], [ -97.451781999500653, 32.738065999739106 ], [ -97.450712999502116, 32.733994999893113 ], [ -97.451003999772425, 32.722987000057906 ] ] ] } },
{ "type": "Feature", "id": 578, "properties": { "pctwhite": 65.094485, "pctrep": 60.971112, "R": 992, "D": 603, "CNTYVTD": "4394204", "rmapshaperid": 556, "id": 507 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.459044999783174, 32.759729000100812 ], [ -97.459107999521621, 32.75212099998388 ], [ -97.460213999795087, 32.750171999815961 ], [ -97.460378000172923, 32.738439000280977 ], [ -97.466899000147833, 32.738130000161384 ], [ -97.48120800025491, 32.738112999965658 ], [ -97.481042999873125, 32.743073999817057 ], [ -97.477605000212435, 32.760871000271642 ], [ -97.473813000511981, 32.759881000393243 ], [ -97.459044999783174, 32.759729000100812 ] ] ] } },
{ "type": "Feature", "id": 579, "properties": { "pctwhite": 39.766461, "pctrep": 56.818182, "R": 325, "D": 232, "CNTYVTD": "4394218", "rmapshaperid": 557, "id": 508 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.273125000382251, 32.803401000151482 ], [ -97.269946999472992, 32.802594000093414 ], [ -97.270600999726213, 32.798644000048199 ], [ -97.268833000379658, 32.796674000061756 ], [ -97.27134300026087, 32.794879999862765 ], [ -97.273153000046747, 32.794901999611291 ], [ -97.285460000233158, 32.795062999663621 ], [ -97.290609000431502, 32.795109999763717 ], [ -97.290551999965274, 32.802978999838473 ], [ -97.290476999561491, 32.802985000038554 ], [ -97.290551000499505, 32.806471999687759 ], [ -97.290562000394701, 32.809035999709579 ], [ -97.287485999816141, 32.808578999568454 ], [ -97.28599000020067, 32.806582000123875 ], [ -97.281195000324473, 32.804568999708238 ], [ -97.27703099975075, 32.805303999632685 ], [ -97.274451000356294, 32.803010000155851 ], [ -97.273125000382251, 32.803401000151482 ] ] ] } },
{ "type": "Feature", "id": 580, "properties": { "pctwhite": 45.196324, "pctrep": 52.159468, "R": 314, "D": 269, "CNTYVTD": "4394222", "rmapshaperid": 558, "id": 509 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.334367000072305, 32.861358999649291 ], [ -97.334392000070281, 32.858234999941956 ], [ -97.333185000337764, 32.855386000078333 ], [ -97.333149999792795, 32.847833999929016 ], [ -97.343099999785977, 32.847868999667611 ], [ -97.34308200000244, 32.859658999685408 ], [ -97.342701000061027, 32.861508000302436 ], [ -97.334367000072305, 32.861358999649291 ] ] ] } },
{ "type": "Feature", "id": 581, "properties": { "pctwhite": 79.840796, "pctrep": 67.158992, "R": 1546, "D": 731, "CNTYVTD": "4394230", "rmapshaperid": 559, "id": 510 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.423656000017104, 32.696700000444878 ], [ -97.427816999699047, 32.695861999858806 ], [ -97.429304000093438, 32.69329800027829 ], [ -97.427769000490443, 32.68735099976216 ], [ -97.426390999814771, 32.685098999647835 ], [ -97.434586000233153, 32.684837999854643 ], [ -97.435222999908774, 32.687326000005825 ], [ -97.436217999491276, 32.699467000404852 ], [ -97.435935000110405, 32.699454999556806 ], [ -97.433631999999861, 32.699581999620321 ], [ -97.426702000463877, 32.702690999641256 ], [ -97.420912000139737, 32.706832999587405 ], [ -97.416168999804441, 32.70880700042202 ], [ -97.411656999722496, 32.710396999740631 ], [ -97.411807999884886, 32.704362000071214 ], [ -97.415351000474558, 32.70052100019965 ], [ -97.419468000407562, 32.697394999767994 ], [ -97.423656000017104, 32.696700000444878 ] ] ] } },
{ "type": "Feature", "id": 582, "properties": { "pctwhite": 7.377908, "pctrep": 20.345489, "R": 106, "D": 408, "CNTYVTD": "4394231", "rmapshaperid": 560, "id": 511 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.325732000356581, 32.810341999649353 ], [ -97.325773000313774, 32.802061999692299 ], [ -97.323516000024384, 32.802059000291436 ], [ -97.323539000160665, 32.797942000084518 ], [ -97.32579800015408, 32.797949999689031 ], [ -97.325810999843782, 32.795188999598139 ], [ -97.336979000212935, 32.795163999919119 ], [ -97.339610999656472, 32.810377000370231 ], [ -97.336579000020237, 32.810639999590023 ], [ -97.325732000356581, 32.810341999649353 ] ] ] } },
{ "type": "Feature", "id": 583, "properties": { "pctwhite": 43.668281, "pctrep": 60.487288, "R": 1142, "D": 722, "CNTYVTD": "4394232", "rmapshaperid": 561, "id": 512 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.390706000505901, 32.869086000447382 ], [ -97.390660000042189, 32.858575000425162 ], [ -97.388421000435301, 32.851159999907331 ], [ -97.394448999658181, 32.852281999884326 ], [ -97.411390999810223, 32.852378999897454 ], [ -97.426317000118786, 32.852309000047846 ], [ -97.426134000092972, 32.862987999613104 ], [ -97.425993000181819, 32.870209999636891 ], [ -97.416831000498775, 32.869891000397622 ], [ -97.404975000345289, 32.869807999777905 ], [ -97.390715000427491, 32.869672000242701 ], [ -97.390706000505901, 32.869086000447382 ] ] ] } },
{ "type": "Feature", "id": 584, "properties": { "pctwhite": 13.681319, "pctrep": 19.327731, "R": 92, "D": 374, "CNTYVTD": "4394233", "rmapshaperid": 562, "id": 513 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.325892999670046, 32.73059599980715 ], [ -97.326370000375206, 32.72592100036168 ], [ -97.324691999875114, 32.725946000155069 ], [ -97.326331999794647, 32.723637999994033 ], [ -97.326404999543797, 32.714290000099567 ], [ -97.325244000337022, 32.713059000235987 ], [ -97.325404999849681, 32.69863299956198 ], [ -97.331687999590329, 32.698694999554917 ], [ -97.33165199982794, 32.707695999586477 ], [ -97.337363999973917, 32.707717000149884 ], [ -97.337721999859326, 32.707744999690277 ], [ -97.3379490002675, 32.711357000026979 ], [ -97.336743000285807, 32.713147000146883 ], [ -97.333834999720949, 32.713154999967799 ], [ -97.331608000345327, 32.71313900001828 ], [ -97.33158999959781, 32.716266999543102 ], [ -97.331590999535095, 32.716610999901768 ], [ -97.331591000195203, 32.718155000384613 ], [ -97.33156099961127, 32.733139999877153 ], [ -97.326428999951347, 32.733114000204985 ], [ -97.325892999670046, 32.73059599980715 ] ] ] } },
{ "type": "Feature", "id": 585, "properties": { "pctwhite": 76.097670, "pctrep": 70.232333, "R": 1451, "D": 586, "CNTYVTD": "4394234", "rmapshaperid": 563, "id": 514 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.266790999756267, 32.869188999560443 ], [ -97.272516000364675, 32.868854999798423 ], [ -97.272388999911485, 32.866235000038436 ], [ -97.27239300025883, 32.862523999561724 ], [ -97.273094000108614, 32.866077999843398 ], [ -97.275558000270777, 32.867596999776367 ], [ -97.274591000207096, 32.870528000145534 ], [ -97.276155999835609, 32.871836999992148 ], [ -97.277869000268765, 32.87526400025358 ], [ -97.275761999988404, 32.877317999995107 ], [ -97.277615999555579, 32.878520000401672 ], [ -97.277405999590911, 32.880368999896341 ], [ -97.280804000360007, 32.881872000262454 ], [ -97.279902000326587, 32.885724999608485 ], [ -97.283523000116602, 32.887109999588318 ], [ -97.283820999678369, 32.889414999663337 ], [ -97.287645999523662, 32.890672999724998 ], [ -97.289584000255715, 32.892804999966373 ], [ -97.289637999952078, 32.893873000125964 ], [ -97.284640000006334, 32.892516000406175 ], [ -97.278534999580899, 32.892583000138266 ], [ -97.272402999916906, 32.894661000179291 ], [ -97.272377999581877, 32.892045999605322 ], [ -97.2736540000829, 32.886105000380965 ], [ -97.273024999713414, 32.882831999698659 ], [ -97.270015999942871, 32.87862799986619 ], [ -97.268965000506228, 32.875717999894086 ], [ -97.269189000417313, 32.870903000165967 ], [ -97.266790999756267, 32.869188999560443 ] ] ] } },
{ "type": "Feature", "id": 586, "properties": { "pctwhite": 54.135338, "pctrep": 67.187500, "R": 43, "D": 21, "CNTYVTD": "4394239", "rmapshaperid": 564, "id": 515 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.259667000217163, 32.787714000257211 ], [ -97.273206000260743, 32.781435999857543 ], [ -97.273237000534081, 32.787747999997748 ], [ -97.259667000217163, 32.787714000257211 ] ] ] } },
{ "type": "Feature", "id": 587, "properties": { "pctwhite": 87.559809, "pctrep": 76.344086, "R": 284, "D": 79, "CNTYVTD": "4394242", "rmapshaperid": 565, "id": 516 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.444433999553453, 32.819577000423273 ], [ -97.442257999522454, 32.815843999580665 ], [ -97.447187999778777, 32.817664000180301 ], [ -97.447368000438033, 32.815360999769098 ], [ -97.450445999466154, 32.81479400001421 ], [ -97.448367999575055, 32.810309999845316 ], [ -97.446302999803521, 32.809544000170995 ], [ -97.451500000104915, 32.8052279999375 ], [ -97.451701999617868, 32.798426000299095 ], [ -97.441880999671923, 32.798566999978668 ], [ -97.440754000070001, 32.798238999622903 ], [ -97.44060600048067, 32.798045999921492 ], [ -97.446896999501874, 32.796898999554315 ], [ -97.451342999603384, 32.795215999851685 ], [ -97.457867000453575, 32.790221999597001 ], [ -97.462098000266707, 32.790814999979183 ], [ -97.462850000477104, 32.793469999654313 ], [ -97.466555000355541, 32.79333800025384 ], [ -97.471905999733934, 32.794908000042426 ], [ -97.473292000395489, 32.79659300037703 ], [ -97.475923999707859, 32.795046000302051 ], [ -97.479968000304353, 32.795676000171177 ], [ -97.484800999886176, 32.798175000384354 ], [ -97.488593999484053, 32.797055000352081 ], [ -97.489317000452559, 32.80011999957253 ], [ -97.491552999490764, 32.802870999961627 ], [ -97.496303999830033, 32.804902999551082 ], [ -97.500809999734173, 32.805048000238457 ], [ -97.501199999792036, 32.816226000127635 ], [ -97.492686000344293, 32.816125000136623 ], [ -97.490499999775253, 32.81562900039755 ], [ -97.483998999610108, 32.816428999615788 ], [ -97.480126999848437, 32.815957999736199 ], [ -97.478408000387063, 32.817216000009225 ], [ -97.472698999675245, 32.815927999819735 ], [ -97.470288999891395, 32.818126000315928 ], [ -97.469077000139279, 32.821837999978108 ], [ -97.464764999573532, 32.820239999946345 ], [ -97.462327000505539, 32.820111999743425 ], [ -97.452891000157038, 32.822270999797951 ], [ -97.447820999843842, 32.821875000141937 ], [ -97.444433999553453, 32.819577000423273 ] ] ] } },
{ "type": "Feature", "id": 588, "properties": { "pctwhite": 47.429171, "pctrep": 64.444444, "R": 261, "D": 137, "CNTYVTD": "4394243", "rmapshaperid": 566, "id": 517 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.407262000018079, 32.766026000174826 ], [ -97.408730000112726, 32.765335000151346 ], [ -97.415208999512529, 32.768077000137097 ], [ -97.417551000002831, 32.770088999901525 ], [ -97.417935000434838, 32.772741000380826 ], [ -97.421494000063689, 32.775951000394492 ], [ -97.420904000232525, 32.777588000275131 ], [ -97.417836999819883, 32.779020000276773 ], [ -97.412674999840078, 32.780018999919811 ], [ -97.411835000049038, 32.775974999564198 ], [ -97.411052999750851, 32.77298300043379 ], [ -97.407675000175303, 32.772440999845593 ], [ -97.407262000018079, 32.766026000174826 ] ] ] } },
{ "type": "Feature", "id": 589, "properties": { "pctwhite": 20.298507, "pctrep": 41.626794, "R": 87, "D": 122, "CNTYVTD": "4394245", "rmapshaperid": 567, "id": 518 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.312390000537178, 32.82426899956122 ], [ -97.312831999672255, 32.816270999965674 ], [ -97.308135999748373, 32.815831000407968 ], [ -97.308275999942751, 32.810580999961694 ], [ -97.304337000185242, 32.809952000191991 ], [ -97.297186000520469, 32.810208999844008 ], [ -97.294720000194673, 32.809494000297981 ], [ -97.295655000022037, 32.806969999987061 ], [ -97.295919999503141, 32.800175999724871 ], [ -97.299995999500368, 32.800124999677998 ], [ -97.299966000514559, 32.802486999605279 ], [ -97.306085000233367, 32.802499999829742 ], [ -97.308461000492542, 32.801011999984865 ], [ -97.315529000192626, 32.795205999766374 ], [ -97.323541999862201, 32.795212000111704 ], [ -97.325810999843782, 32.795188999598139 ], [ -97.32579800015408, 32.797949999689031 ], [ -97.323539000160665, 32.797942000084518 ], [ -97.323516000024384, 32.802059000291436 ], [ -97.325773000313774, 32.802061999692299 ], [ -97.325732000356581, 32.810341999649353 ], [ -97.325648000355812, 32.817973000362429 ], [ -97.331330000026043, 32.824697000146841 ], [ -97.312390000537178, 32.82426899956122 ] ] ] } },
{ "type": "Feature", "id": 590, "properties": { "pctwhite": 65.548716, "pctrep": 63.161512, "R": 919, "D": 503, "CNTYVTD": "4394250", "rmapshaperid": 568, "id": 519 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.290073000476852, 32.860970000235874 ], [ -97.290134000229799, 32.846993999656114 ], [ -97.290673000327473, 32.839430000388703 ], [ -97.290643999584489, 32.820545999970967 ], [ -97.290757000122056, 32.814943000169919 ], [ -97.290545999874951, 32.809769999756412 ], [ -97.297186000520469, 32.810208999844008 ], [ -97.295059999805105, 32.813335999966682 ], [ -97.299726000211237, 32.813425999628876 ], [ -97.300992000032011, 32.816208999666806 ], [ -97.303484999487651, 32.81687400023776 ], [ -97.30582800047506, 32.819813999902507 ], [ -97.305840000083236, 32.824199000146884 ], [ -97.308780000488554, 32.824221000187109 ], [ -97.308776999947554, 32.832768999568252 ], [ -97.312272000517694, 32.832820999922404 ], [ -97.311411999970659, 32.838621999858631 ], [ -97.314027999647124, 32.838865999933617 ], [ -97.313936999885044, 32.841582999854516 ], [ -97.312565000457511, 32.847129999599844 ], [ -97.312979999709427, 32.854889000105864 ], [ -97.314234000267916, 32.860894000370301 ], [ -97.304990999775129, 32.86102399976695 ], [ -97.290073000476852, 32.860970000235874 ] ] ] } },
{ "type": "Feature", "id": 591, "properties": { "pctwhite": 59.504132, "pctrep": 57.213930, "R": 345, "D": 247, "CNTYVTD": "4394252", "rmapshaperid": 569, "id": 520 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.404098999950918, 32.746415999597126 ], [ -97.410221999871382, 32.749071000007973 ], [ -97.412912000134881, 32.749586000086524 ], [ -97.414955000083737, 32.752852999781993 ], [ -97.401837999627105, 32.752841000322441 ], [ -97.400815000021112, 32.748219000361523 ], [ -97.404086000048778, 32.748185000322351 ], [ -97.404098999950918, 32.746415999597126 ] ] ] } },
{ "type": "Feature", "id": 592, "properties": { "pctwhite": 76.806084, "pctrep": 58.490566, "R": 155, "D": 100, "CNTYVTD": "4394253", "rmapshaperid": 570, "id": 521 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.332758000114637, 32.774669999975217 ], [ -97.331882000163631, 32.773622000137969 ], [ -97.331510999791405, 32.772328000421403 ], [ -97.329552999706024, 32.766445999614263 ], [ -97.329210999797837, 32.762916999633262 ], [ -97.32721899981216, 32.760378999582954 ], [ -97.334146999757394, 32.757412999587814 ], [ -97.334199000207889, 32.759097999896362 ], [ -97.331070999706199, 32.76141700024391 ], [ -97.331702000045368, 32.766435999700818 ], [ -97.333921000076785, 32.770128000329954 ], [ -97.33840600021486, 32.772573999808252 ], [ -97.339832000464384, 32.774928999863903 ], [ -97.339646999509782, 32.778135999604146 ], [ -97.33795099945759, 32.778081000420862 ], [ -97.33709500009968, 32.774735000017024 ], [ -97.332758000114637, 32.774669999975217 ] ] ] } },
{ "type": "Feature", "id": 593, "properties": { "pctwhite": 10.000000, "pctrep": 35.458167, "R": 89, "D": 157, "CNTYVTD": "4394256", "rmapshaperid": 571, "id": 522 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.331754999511546, 32.684804000186752 ], [ -97.331784999939956, 32.678084999987135 ], [ -97.333863999834776, 32.677207000382047 ], [ -97.345118999897551, 32.677182999772256 ], [ -97.345119000436839, 32.678942000119633 ], [ -97.340841999643231, 32.678921000379518 ], [ -97.340362000277437, 32.684725000362036 ], [ -97.331754999511546, 32.684804000186752 ] ] ] } },
{ "type": "Feature", "id": 594, "properties": { "pctwhite": 87.452181, "pctrep": 74.803150, "R": 570, "D": 186, "CNTYVTD": "4394259", "rmapshaperid": 572, "id": 523 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.469077000139279, 32.821837999978108 ], [ -97.470288999891395, 32.818126000315928 ], [ -97.472698999675245, 32.815927999819735 ], [ -97.478408000387063, 32.817216000009225 ], [ -97.480126999848437, 32.815957999736199 ], [ -97.483998999610108, 32.816428999615788 ], [ -97.490499999775253, 32.81562900039755 ], [ -97.492686000344293, 32.816125000136623 ], [ -97.501199999792036, 32.816226000127635 ], [ -97.507820000247392, 32.81712399997074 ], [ -97.508903999743495, 32.819050999586061 ], [ -97.509084999732138, 32.823230000235455 ], [ -97.497872999640919, 32.823059000156206 ], [ -97.497863000279295, 32.830524999955315 ], [ -97.484158999493943, 32.830225999986318 ], [ -97.480059999458362, 32.826394000312256 ], [ -97.477984999986219, 32.825185999982821 ], [ -97.469077000139279, 32.821837999978108 ] ] ] } },
{ "type": "Feature", "id": 595, "properties": { "pctwhite": 53.426230, "pctrep": 56.450636, "R": 932, "D": 675, "CNTYVTD": "4394261", "rmapshaperid": 573, "id": 524 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.276155999835609, 32.871836999992148 ], [ -97.274591000207096, 32.870528000145534 ], [ -97.275558000270777, 32.867596999776367 ], [ -97.273094000108614, 32.866077999843398 ], [ -97.27239300025883, 32.862523999561724 ], [ -97.272378000024503, 32.860805000401001 ], [ -97.280503999698681, 32.860850000146932 ], [ -97.290073000476852, 32.860970000235874 ], [ -97.291380999756825, 32.866815999971827 ], [ -97.293555000295228, 32.86691400021045 ], [ -97.293404999801098, 32.86996200019253 ], [ -97.291326000131647, 32.869751999866899 ], [ -97.290436000070216, 32.872599999942118 ], [ -97.285836999876324, 32.871462999723761 ], [ -97.276155999835609, 32.871836999992148 ] ] ] } },
{ "type": "Feature", "id": 596, "properties": { "pctwhite": 76.383764, "pctrep": 59.134615, "R": 123, "D": 83, "CNTYVTD": "4394272", "rmapshaperid": 574, "id": 525 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.457867000453575, 32.790221999597001 ], [ -97.463520999615497, 32.785880999972605 ], [ -97.464737000084753, 32.784398999653902 ], [ -97.467073000475636, 32.781613000218634 ], [ -97.470277999607973, 32.78007000044088 ], [ -97.47475000007671, 32.774337999674287 ], [ -97.48562199991099, 32.774430999742904 ], [ -97.486898999666252, 32.775013000087895 ], [ -97.486773999595513, 32.786161000282142 ], [ -97.489525000185139, 32.787955999895935 ], [ -97.492776000032762, 32.792678999739344 ], [ -97.493822000300341, 32.794104999692628 ], [ -97.493874000001, 32.79838800021453 ], [ -97.49630100048384, 32.800966999998835 ], [ -97.500715000062272, 32.801653000012458 ], [ -97.500809999734173, 32.805048000238457 ], [ -97.496303999830033, 32.804902999551082 ], [ -97.491552999490764, 32.802870999961627 ], [ -97.489317000452559, 32.80011999957253 ], [ -97.488593999484053, 32.797055000352081 ], [ -97.484800999886176, 32.798175000384354 ], [ -97.479968000304353, 32.795676000171177 ], [ -97.475923999707859, 32.795046000302051 ], [ -97.473292000395489, 32.79659300037703 ], [ -97.471905999733934, 32.794908000042426 ], [ -97.466555000355541, 32.79333800025384 ], [ -97.462850000477104, 32.793469999654313 ], [ -97.462098000266707, 32.790814999979183 ], [ -97.457867000453575, 32.790221999597001 ] ] ] } },
{ "type": "Feature", "id": 597, "properties": { "pctwhite": 66.509804, "pctrep": 63.840000, "R": 798, "D": 431, "CNTYVTD": "4394276", "rmapshaperid": 575, "id": 526 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.492776000032762, 32.792678999739344 ], [ -97.489525000185139, 32.787955999895935 ], [ -97.486773999595513, 32.786161000282142 ], [ -97.486898999666252, 32.775013000087895 ], [ -97.48562199991099, 32.774430999742904 ], [ -97.47475000007671, 32.774337999674287 ], [ -97.477605000212435, 32.760871000271642 ], [ -97.481198999723986, 32.760889000103148 ], [ -97.483602000322662, 32.762635999662635 ], [ -97.488385000082502, 32.759655999904773 ], [ -97.490190999791778, 32.759174999666101 ], [ -97.499657000107732, 32.759292999780058 ], [ -97.512103000494164, 32.765060000291307 ], [ -97.523141000274137, 32.767380999563564 ], [ -97.531521000100241, 32.770701000125257 ], [ -97.52954400008214, 32.771863999665989 ], [ -97.525743999885194, 32.769008000443094 ], [ -97.522860000028444, 32.770054000231177 ], [ -97.518967999489078, 32.769440000057742 ], [ -97.517761999752466, 32.767625999956728 ], [ -97.514786999771715, 32.769749999641618 ], [ -97.509695999851886, 32.77129599989685 ], [ -97.508288000512422, 32.774788000302919 ], [ -97.502584999980883, 32.775314999791824 ], [ -97.499583000044652, 32.781163000172718 ], [ -97.497791000354255, 32.782088999650867 ], [ -97.497575000259644, 32.784504000403615 ], [ -97.496030999939819, 32.786078000127858 ], [ -97.496897000444719, 32.790630000043379 ], [ -97.492776000032762, 32.792678999739344 ] ] ] } },
{ "type": "Feature", "id": 598, "properties": { "pctwhite": 87.826087, "pctrep": 81.168831, "R": 125, "D": 28, "CNTYVTD": "4394284", "rmapshaperid": 576, "id": 527 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.496892000300889, 32.870005000404809 ], [ -97.497027000119573, 32.866910999919703 ], [ -97.495504000285052, 32.864839000305174 ], [ -97.4992179997802, 32.861139000196893 ], [ -97.497841000132027, 32.856840000200833 ], [ -97.49519600010926, 32.854266000032588 ], [ -97.489956999905175, 32.850959999925571 ], [ -97.496635999879416, 32.850301000045263 ], [ -97.498467000017413, 32.851415999971607 ], [ -97.500191999795277, 32.84980899983065 ], [ -97.504386999910921, 32.849576000080233 ], [ -97.507191999914966, 32.852033999648235 ], [ -97.511661999504994, 32.854902000232862 ], [ -97.519949000173554, 32.860217999640298 ], [ -97.513897000375465, 32.860537000327682 ], [ -97.513505000536341, 32.867522999788569 ], [ -97.511232999961379, 32.867284999821329 ], [ -97.509429999484524, 32.868787999877675 ], [ -97.505797999645978, 32.867311999648059 ], [ -97.501717999713676, 32.867486000351533 ], [ -97.499577000000286, 32.869743000042753 ], [ -97.496892000300889, 32.870005000404809 ] ] ] } },
{ "type": "Feature", "id": 599, "properties": { "pctwhite": 56.080490, "pctrep": 49.753695, "R": 101, "D": 98, "CNTYVTD": "4394285", "rmapshaperid": 577, "id": 528 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.4112859995939, 32.80344400010582 ], [ -97.41205300030542, 32.7993730002866 ], [ -97.414027000321724, 32.797301999994637 ], [ -97.419697999551289, 32.796864000194368 ], [ -97.421171999757846, 32.79829900025284 ], [ -97.423840999941305, 32.797630999582474 ], [ -97.425774000354011, 32.795477000190424 ], [ -97.428929000023956, 32.79412600034113 ], [ -97.434226000134828, 32.794186000259252 ], [ -97.437593999630195, 32.795132999972616 ], [ -97.44060600048067, 32.798045999921492 ], [ -97.440754000070001, 32.798238999622903 ], [ -97.43999999970481, 32.798830999777223 ], [ -97.439790000001793, 32.808934999836623 ], [ -97.430411000096143, 32.810332999629068 ], [ -97.418433999880321, 32.808849000439693 ], [ -97.4112859995939, 32.80344400010582 ] ] ] } },
{ "type": "Feature", "id": 600, "properties": { "pctwhite": 3.571429, "pctrep": 6.410256, "R": 5, "D": 73, "CNTYVTD": "4394288", "rmapshaperid": 578, "id": 529 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.320553000341121, 32.712994999614565 ], [ -97.32055499979711, 32.703217999988411 ], [ -97.320530000405157, 32.698600000081498 ], [ -97.325404999849681, 32.69863299956198 ], [ -97.325244000337022, 32.713059000235987 ], [ -97.324258999486602, 32.712976999637419 ], [ -97.320553000341121, 32.712994999614565 ] ] ] } },
{ "type": "Feature", "id": 601, "properties": { "pctwhite": 59.045172, "pctrep": 64.794304, "R": 819, "D": 425, "CNTYVTD": "4394290", "rmapshaperid": 579, "id": 530 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.273140999689758, 32.817306000029696 ], [ -97.284644000253181, 32.817034000208487 ], [ -97.287207999775461, 32.817499999987746 ], [ -97.290757000122056, 32.814943000169919 ], [ -97.290643999584489, 32.820545999970967 ], [ -97.274402000299929, 32.827463999893496 ], [ -97.264264000305616, 32.833730999665214 ], [ -97.264482999595913, 32.820228000148795 ], [ -97.26450399988552, 32.817281000400179 ], [ -97.273140999689758, 32.817306000029696 ] ] ] } },
{ "type": "Feature", "id": 602, "properties": { "pctwhite": 24.696356, "pctrep": 46.808511, "R": 22, "D": 22, "CNTYVTD": "4394312", "rmapshaperid": 580, "id": 531 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.342796999633194, 32.711401000196588 ], [ -97.341800000070009, 32.707758000147351 ], [ -97.343854000280857, 32.70776299977144 ], [ -97.345968000124913, 32.70777700038709 ], [ -97.343828999845172, 32.71139500018365 ], [ -97.342796999633194, 32.711401000196588 ] ] ] } },
{ "type": "Feature", "id": 603, "properties": { "pctwhite": 45.624671, "pctrep": 60.881935, "R": 428, "D": 256, "CNTYVTD": "4394328", "rmapshaperid": 581, "id": 532 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.26450399988552, 32.817281000400179 ], [ -97.262890999791935, 32.815230000023107 ], [ -97.263011000504775, 32.813161999833696 ], [ -97.256768000350007, 32.813128000373609 ], [ -97.256796000226885, 32.809344999638178 ], [ -97.247082999561343, 32.809356000092407 ], [ -97.24896500024343, 32.807823000198162 ], [ -97.250798000356625, 32.806535999577939 ], [ -97.260637999614517, 32.803372000153125 ], [ -97.263402999636966, 32.801896000211208 ], [ -97.268833000379658, 32.796674000061756 ], [ -97.270600999726213, 32.798644000048199 ], [ -97.269946999472992, 32.802594000093414 ], [ -97.273125000382251, 32.803401000151482 ], [ -97.273140999689758, 32.817306000029696 ], [ -97.26450399988552, 32.817281000400179 ] ] ] } },
{ "type": "Feature", "id": 604, "properties": { "pctwhite": 60.357417, "pctrep": 62.707975, "R": 1093, "D": 629, "CNTYVTD": "4394338", "rmapshaperid": 582, "id": 533 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.342470000289595, 32.881952999925325 ], [ -97.342384999701693, 32.863565000125398 ], [ -97.342701000061027, 32.861508000302436 ], [ -97.349912000443496, 32.861631999898528 ], [ -97.352536000375352, 32.860888999980503 ], [ -97.36168999945609, 32.860885000356255 ], [ -97.363915999841566, 32.860210999708698 ], [ -97.374185999505954, 32.87220600021346 ], [ -97.381693999773901, 32.880863999951714 ], [ -97.381265000044166, 32.880856999727321 ], [ -97.376088000388165, 32.880825999866246 ], [ -97.373618000229285, 32.883757999865388 ], [ -97.342645999827752, 32.883725000270012 ], [ -97.342470000289595, 32.881952999925325 ] ] ] } },
{ "type": "Feature", "id": 605, "properties": { "pctwhite": 86.370741, "pctrep": 75.107296, "R": 875, "D": 270, "CNTYVTD": "4394340", "rmapshaperid": 583, "id": 534 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.524492000278798, 32.877641999733719 ], [ -97.521910000378796, 32.874999000044092 ], [ -97.519505999620364, 32.874508000343027 ], [ -97.516327999551109, 32.872418000009333 ], [ -97.511602000029484, 32.87147699981135 ], [ -97.511232999961379, 32.867284999821329 ], [ -97.513505000536341, 32.867522999788569 ], [ -97.513897000375465, 32.860537000327682 ], [ -97.519949000173554, 32.860217999640298 ], [ -97.511661999504994, 32.854902000232862 ], [ -97.514022999670928, 32.855809000075695 ], [ -97.520730000494041, 32.854867999932956 ], [ -97.52435099975321, 32.855959999960803 ], [ -97.526740999945687, 32.854808999562295 ], [ -97.530283000093078, 32.854855000274647 ], [ -97.533051000143217, 32.85719699978732 ], [ -97.54096000048888, 32.858929999941047 ], [ -97.546979000362214, 32.863320999741092 ], [ -97.546651999512676, 32.866721000094969 ], [ -97.546209000431034, 32.886919000189238 ], [ -97.542276000335619, 32.887408000143701 ], [ -97.53994399964607, 32.886176000086714 ], [ -97.535952999497951, 32.888889999966338 ], [ -97.533168999731814, 32.88230299992096 ], [ -97.527345000152593, 32.882089000023939 ], [ -97.525132000492988, 32.881032999882031 ], [ -97.526002000304644, 32.879008000026538 ], [ -97.524492000278798, 32.877641999733719 ] ] ] } },
{ "type": "Feature", "id": 606, "properties": { "pctwhite": 77.847222, "pctrep": 69.011281, "R": 1040, "D": 448, "CNTYVTD": "4394342", "rmapshaperid": 584, "id": 535 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.416168999804441, 32.70880700042202 ], [ -97.420912000139737, 32.706832999587405 ], [ -97.426702000463877, 32.702690999641256 ], [ -97.433631999999861, 32.699581999620321 ], [ -97.435935000110405, 32.699454999556806 ], [ -97.438853999726746, 32.703675999676619 ], [ -97.438500000480616, 32.709266000289439 ], [ -97.435453000365669, 32.706797999905639 ], [ -97.433314000402831, 32.708894999893957 ], [ -97.428917999858214, 32.70940399990323 ], [ -97.426817000185522, 32.712195999790019 ], [ -97.428590999643703, 32.716216000209599 ], [ -97.428685999899471, 32.718569000129861 ], [ -97.431794999986778, 32.721852999920408 ], [ -97.424764000491265, 32.72481499999671 ], [ -97.423256000464363, 32.721370000147957 ], [ -97.422885000110384, 32.716598999564305 ], [ -97.421307999690313, 32.714080999831246 ], [ -97.421289999771801, 32.711786999760399 ], [ -97.416685000281575, 32.710524000175745 ], [ -97.416168999804441, 32.70880700042202 ] ] ] } },
{ "type": "Feature", "id": 607, "properties": { "pctwhite": 83.178114, "pctrep": 73.709834, "R": 757, "D": 257, "CNTYVTD": "4394343", "rmapshaperid": 585, "id": 536 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.389728000040094, 32.703234000021773 ], [ -97.390553000486079, 32.697749000108743 ], [ -97.393821000259436, 32.693083999721338 ], [ -97.39377099973089, 32.68938200024634 ], [ -97.392643000014957, 32.687182000069683 ], [ -97.39250299953946, 32.682834000007084 ], [ -97.39303100004831, 32.681126000336135 ], [ -97.395688999805103, 32.682271000179917 ], [ -97.412328000463347, 32.689296999737394 ], [ -97.411845000475395, 32.694614999698388 ], [ -97.413489999688522, 32.696267999634252 ], [ -97.423656000017104, 32.696700000444878 ], [ -97.419468000407562, 32.697394999767994 ], [ -97.415351000474558, 32.70052100019965 ], [ -97.411807999884886, 32.704362000071214 ], [ -97.408406000324931, 32.706107999837954 ], [ -97.402580999498397, 32.706340999978444 ], [ -97.398650000128001, 32.704761999772977 ], [ -97.394635000401323, 32.705553000322226 ], [ -97.386579000455527, 32.715784000415248 ], [ -97.385369999838844, 32.716279000194291 ], [ -97.385293000393631, 32.713921000455173 ], [ -97.389109000178649, 32.704454000147315 ], [ -97.389728000040094, 32.703234000021773 ] ] ] } },
{ "type": "Feature", "id": 608, "properties": { "pctwhite": 87.746305, "pctrep": 66.595970, "R": 628, "D": 301, "CNTYVTD": "4394344", "rmapshaperid": 586, "id": 537 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.387634999578736, 32.739533999574611 ], [ -97.387663999826103, 32.736699999790012 ], [ -97.398660999711723, 32.736796000430928 ], [ -97.39872000052128, 32.73488299999655 ], [ -97.40785000036324, 32.734989999877371 ], [ -97.407891999958622, 32.734153000090039 ], [ -97.413502999755778, 32.73443099983453 ], [ -97.413056999769779, 32.73750300034407 ], [ -97.409949000007558, 32.737502999796995 ], [ -97.409654000140705, 32.739700000056182 ], [ -97.404322999990228, 32.739730999847112 ], [ -97.40053400002445, 32.742955000292795 ], [ -97.402988000323205, 32.745362000023285 ], [ -97.39727000014723, 32.745066999980928 ], [ -97.398634999903166, 32.739607000239388 ], [ -97.387634999578736, 32.739533999574611 ] ] ] } },
{ "type": "Feature", "id": 609, "properties": { "pctwhite": 77.390386, "pctrep": 50.555556, "R": 455, "D": 419, "CNTYVTD": "4394350", "rmapshaperid": 587, "id": 538 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.361498999932408, 32.733594999835539 ], [ -97.36668600045607, 32.732601999561091 ], [ -97.378629000250157, 32.732670000064765 ], [ -97.378513999461461, 32.739431000345832 ], [ -97.378217999836409, 32.744187999982692 ], [ -97.370012999577909, 32.743985999615433 ], [ -97.369947000311214, 32.747662999766312 ], [ -97.361541999554419, 32.751128000283167 ], [ -97.361924999565829, 32.747419000348977 ], [ -97.36146899973663, 32.744258999609904 ], [ -97.361498999932408, 32.733594999835539 ] ] ] } },
{ "type": "Feature", "id": 610, "properties": { "pctwhite": 89.473684, "pctrep": 75.000000, "R": 3, "D": 0, "CNTYVTD": "4394362", "rmapshaperid": 588, "id": 539 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.243394000403057, 32.787740000070286 ], [ -97.245769000136491, 32.787617999666772 ], [ -97.249428000458067, 32.787580999614086 ], [ -97.249683999644517, 32.784193999993676 ], [ -97.256678999545997, 32.78404100041088 ], [ -97.256677000429733, 32.780420000019447 ], [ -97.268315000017267, 32.780439000354086 ], [ -97.273204000189878, 32.780440000034126 ], [ -97.273206000260743, 32.781435999857543 ], [ -97.259667000217163, 32.787714000257211 ], [ -97.256688999862106, 32.787739999859674 ], [ -97.256667000283343, 32.785397000188688 ], [ -97.2437759995166, 32.790854999757897 ], [ -97.243394000403057, 32.787740000070286 ] ] ] } },
{ "type": "Feature", "id": 611, "properties": { "pctwhite": 74.126638, "pctrep": 66.734798, "R": 1306, "D": 615, "CNTYVTD": "4394369", "rmapshaperid": 589, "id": 540 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.503482999528757, 32.741245000042646 ], [ -97.543109000195557, 32.741543000255461 ], [ -97.544168999613817, 32.744980000072658 ], [ -97.548601000004908, 32.744518000230769 ], [ -97.54820100005405, 32.776113999789374 ], [ -97.545208999655557, 32.773947000027128 ], [ -97.531521000100241, 32.770701000125257 ], [ -97.523141000274137, 32.767380999563564 ], [ -97.512103000494164, 32.765060000291307 ], [ -97.499657000107732, 32.759292999780058 ], [ -97.501104000154513, 32.75677399997118 ], [ -97.506829000230013, 32.75154199968965 ], [ -97.50777599970327, 32.748951999733904 ], [ -97.5066640000896, 32.745559000387345 ], [ -97.503482999528757, 32.741245000042646 ] ] ] } },
{ "type": "Feature", "id": 613, "properties": { "pctwhite": 83.383234, "pctrep": 83.425414, "R": 453, "D": 83, "CNTYVTD": "4394371", "rmapshaperid": 591, "id": 541 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.420071999722836, 32.972953999872828 ], [ -97.424599999985944, 32.977747999946985 ], [ -97.428828000335628, 32.986631999576964 ], [ -97.432585000212612, 32.986509999930448 ], [ -97.434252999674925, 32.984827000297841 ], [ -97.434738999902805, 32.977445999653099 ], [ -97.439226000078236, 32.978293000330233 ], [ -97.442917000129484, 32.977641000292323 ], [ -97.447580000426257, 32.977992000056325 ], [ -97.449211000168347, 32.979892000256648 ], [ -97.451746999498269, 32.978920000033661 ], [ -97.456727000271982, 32.980186999616997 ], [ -97.459945999567296, 32.976519999988618 ], [ -97.46186999955583, 32.972711999935107 ], [ -97.464087000188641, 32.971883000406997 ], [ -97.465675999806834, 32.969791999575989 ], [ -97.466110000519038, 32.966664999801125 ], [ -97.467585000437367, 32.96638799968251 ], [ -97.467355999736483, 32.962186000156969 ], [ -97.471602999716808, 32.961482999822799 ], [ -97.473299000189158, 32.962003999652346 ], [ -97.476019000539523, 32.960019999822663 ], [ -97.478351000108333, 32.96111499964853 ], [ -97.484830999786595, 32.959532999998828 ], [ -97.489736000506255, 32.958940999895646 ], [ -97.496885000501251, 32.960140999572978 ], [ -97.501817000024602, 32.95682599968454 ], [ -97.504397000460486, 32.95785000003977 ], [ -97.507199000025324, 32.955907999957098 ], [ -97.506304999606613, 32.953781000401229 ], [ -97.503321999889764, 32.954500999918274 ], [ -97.500316999914403, 32.954180999856177 ], [ -97.497620000317468, 32.951997999791175 ], [ -97.503422000525006, 32.95124799959936 ], [ -97.505375999551617, 32.949762000249507 ], [ -97.508267999929998, 32.949517000210825 ], [ -97.508861000106435, 32.947105000368452 ], [ -97.506350000118147, 32.945905999567493 ], [ -97.503675000380582, 32.942593000164983 ], [ -97.50455799997215, 32.938512000291603 ], [ -97.501926999750637, 32.936610999952897 ], [ -97.495671000090908, 32.937039000071579 ], [ -97.494210000335372, 32.937888000131046 ], [ -97.490203999610046, 32.935689000389317 ], [ -97.485689999768965, 32.929540999907559 ], [ -97.489222000285537, 32.929129000426542 ], [ -97.490171999913528, 32.927623999979112 ], [ -97.491018000271538, 32.920486999867819 ], [ -97.488783999576711, 32.91747499997733 ], [ -97.485115999557593, 32.91700500002171 ], [ -97.480547000360119, 32.914838999978009 ], [ -97.479895000062541, 32.912035999849657 ], [ -97.47756500023263, 32.910953000403161 ], [ -97.479711999976701, 32.908928999932769 ], [ -97.481808000268899, 32.909511999947142 ], [ -97.484895000489701, 32.907160999825145 ], [ -97.48425599976629, 32.905063000201771 ], [ -97.485313999989643, 32.902182000290026 ], [ -97.488320000350896, 32.897943999866541 ], [ -97.488511999808935, 32.893575000256725 ], [ -97.512805999694692, 32.893755999695259 ], [ -97.515671999940281, 32.900264000386471 ], [ -97.519201999816886, 32.903940000411254 ], [ -97.522035999770409, 32.905485000266602 ], [ -97.525284000192784, 32.90439500041726 ], [ -97.52800599991896, 32.906145999703668 ], [ -97.529841000246932, 32.908359999888326 ], [ -97.52664799953088, 32.912265999916571 ], [ -97.525843999724628, 32.9160629998483 ], [ -97.522523999507285, 32.913994999658009 ], [ -97.521065999960598, 32.910513999698864 ], [ -97.515439999618678, 32.908634000021408 ], [ -97.511618000349145, 32.909034000114829 ], [ -97.507953000514519, 32.910623999715504 ], [ -97.504411999554009, 32.913131000046945 ], [ -97.50615199974618, 32.91522699971226 ], [ -97.506211999489665, 32.918478000108188 ], [ -97.508267000041002, 32.920558000086118 ], [ -97.504594999828655, 32.92672999965518 ], [ -97.506279000250572, 32.930321000346638 ], [ -97.509869999831466, 32.929847999609606 ], [ -97.510701000432604, 32.932756999951295 ], [ -97.516550999730327, 32.941967999859216 ], [ -97.519925999555852, 32.942030999995538 ], [ -97.518590999617089, 32.944155999897177 ], [ -97.518283000130594, 32.951412999585813 ], [ -97.515594000470514, 32.956819999826166 ], [ -97.515384000526836, 32.961367000016956 ], [ -97.512049000534788, 32.964006999738523 ], [ -97.513624999515585, 32.965469999591811 ], [ -97.514322999544518, 32.968673999559599 ], [ -97.515705000074803, 32.970028000432642 ], [ -97.513815999996524, 32.976546000309312 ], [ -97.515678000404861, 32.981367000171765 ], [ -97.514961999958928, 32.986227000000206 ], [ -97.51715100009379, 32.987647999645716 ], [ -97.512627999555548, 32.990971000280595 ], [ -97.516753999969964, 32.992042999873902 ], [ -97.519862999489405, 32.9940999996005 ], [ -97.469833999905447, 32.993110999579898 ], [ -97.446056999953527, 32.992237000062758 ], [ -97.431475999756202, 32.992330999694907 ], [ -97.415462000090955, 32.992047999879091 ], [ -97.417243000109508, 32.981945999996704 ], [ -97.420071999722836, 32.972953999872828 ] ] ] } },
{ "type": "Feature", "id": 614, "properties": { "pctwhite": 89.487179, "pctrep": 71.052632, "R": 81, "D": 32, "CNTYVTD": "4394373", "rmapshaperid": 592, "id": 542 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.467218999919865, 32.862385999857857 ], [ -97.469235999464786, 32.860999000398046 ], [ -97.472676999705939, 32.860648999697972 ], [ -97.473308999467704, 32.858781000412137 ], [ -97.475922000349826, 32.858807000102608 ], [ -97.478385999996007, 32.855862999547867 ], [ -97.476363999984031, 32.850011999874091 ], [ -97.473425999714621, 32.848165999671444 ], [ -97.469605000257488, 32.844144000321414 ], [ -97.464084000014793, 32.842239000274851 ], [ -97.462714000373694, 32.840436999989748 ], [ -97.461428000066121, 32.83262499976243 ], [ -97.45962199977015, 32.829731999676326 ], [ -97.456306000205757, 32.828709999564097 ], [ -97.449655000487184, 32.82936099974112 ], [ -97.446743999622143, 32.828699000436728 ], [ -97.444113999601015, 32.82515800010755 ], [ -97.44253399992499, 32.824530999701615 ], [ -97.444433999553453, 32.819577000423273 ], [ -97.447820999843842, 32.821875000141937 ], [ -97.452891000157038, 32.822270999797951 ], [ -97.462327000505539, 32.820111999743425 ], [ -97.464764999573532, 32.820239999946345 ], [ -97.469077000139279, 32.821837999978108 ], [ -97.477984999986219, 32.825185999982821 ], [ -97.480059999458362, 32.826394000312256 ], [ -97.484158999493943, 32.830225999986318 ], [ -97.489013000222826, 32.835148999717887 ], [ -97.504386999910921, 32.849576000080233 ], [ -97.500191999795277, 32.84980899983065 ], [ -97.498467000017413, 32.851415999971607 ], [ -97.496635999879416, 32.850301000045263 ], [ -97.489956999905175, 32.850959999925571 ], [ -97.49519600010926, 32.854266000032588 ], [ -97.497841000132027, 32.856840000200833 ], [ -97.4992179997802, 32.861139000196893 ], [ -97.495504000285052, 32.864839000305174 ], [ -97.497027000119573, 32.866910999919703 ], [ -97.496892000300889, 32.870005000404809 ], [ -97.491266999481567, 32.867598000441326 ], [ -97.488100999827722, 32.865486999684798 ], [ -97.475987999958818, 32.864235999616348 ], [ -97.469770999685338, 32.864110999803181 ], [ -97.467218999919865, 32.862385999857857 ] ] ] } },
{ "type": "Feature", "id": 615, "properties": { "pctwhite": 60.212945, "pctrep": 59.619952, "R": 753, "D": 484, "CNTYVTD": "4394374", "rmapshaperid": 593, "id": 543 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.289677000360541, 32.890751999622807 ], [ -97.289805000131281, 32.875557000198746 ], [ -97.290436000070216, 32.872599999942118 ], [ -97.297143999482799, 32.873216000211485 ], [ -97.298579999693985, 32.879549999751752 ], [ -97.29790499959276, 32.885651999818755 ], [ -97.293610000046371, 32.885637999836121 ], [ -97.292696000381525, 32.890756000455355 ], [ -97.289677000360541, 32.890751999622807 ] ] ] } },
{ "type": "Feature", "id": 616, "properties": { "pctwhite": 80.470318, "pctrep": 77.169275, "R": 1085, "D": 309, "CNTYVTD": "4394375", "rmapshaperid": 594, "id": 544 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.42583000024122, 32.879871000311496 ], [ -97.425993000181819, 32.870209999636891 ], [ -97.426134000092972, 32.862987999613104 ], [ -97.462883999856047, 32.863123000316264 ], [ -97.465835000053758, 32.861080999997448 ], [ -97.467218999919865, 32.862385999857857 ], [ -97.469770999685338, 32.864110999803181 ], [ -97.475987999958818, 32.864235999616348 ], [ -97.488100999827722, 32.865486999684798 ], [ -97.491266999481567, 32.867598000441326 ], [ -97.496892000300889, 32.870005000404809 ], [ -97.496771999711356, 32.874779999933537 ], [ -97.494142000031658, 32.876457999793104 ], [ -97.492479000211986, 32.87300800039786 ], [ -97.490107000431081, 32.873568000284244 ], [ -97.487010999913124, 32.870756000034241 ], [ -97.484344000448175, 32.872022000259228 ], [ -97.483673000320792, 32.874132999907012 ], [ -97.477961000241194, 32.878984999703647 ], [ -97.476575999825485, 32.879298000266012 ], [ -97.47366100012519, 32.876688999624967 ], [ -97.461661999783729, 32.874504999746364 ], [ -97.45839999974919, 32.876011000128877 ], [ -97.449299000413802, 32.874575000442611 ], [ -97.447877000060686, 32.875942999941643 ], [ -97.443745999485714, 32.876922000317521 ], [ -97.435385000419629, 32.878363000211834 ], [ -97.431947000301577, 32.877242000447261 ], [ -97.427036000203444, 32.876584000219857 ], [ -97.42583000024122, 32.879871000311496 ] ] ] } },
{ "type": "Feature", "id": 617, "properties": { "pctwhite": 86.547972, "pctrep": 71.575342, "R": 209, "D": 79, "CNTYVTD": "4394395", "rmapshaperid": 595, "id": 545 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.52664799953088, 32.912265999916571 ], [ -97.529841000246932, 32.908359999888326 ], [ -97.52800599991896, 32.906145999703668 ], [ -97.528404000303354, 32.902116000167474 ], [ -97.533609999623394, 32.902120999639642 ], [ -97.533578999497138, 32.906397999676649 ], [ -97.534723000318252, 32.911046999881947 ], [ -97.543528999759857, 32.911057000335553 ], [ -97.543518999740073, 32.907507000118287 ], [ -97.545721000417529, 32.9075129997141 ], [ -97.545178999699047, 32.929932999608212 ], [ -97.540671000150581, 32.929366000379744 ], [ -97.536254000433061, 32.927832999927027 ], [ -97.526152000391377, 32.9278120000832 ], [ -97.52622300004866, 32.919966999840241 ], [ -97.5310779999662, 32.919911000210057 ], [ -97.531025000538079, 32.916580999570698 ], [ -97.52664799953088, 32.912265999916571 ] ] ] } },
{ "type": "Feature", "id": 618, "properties": { "pctwhite": 52.261307, "pctrep": 58.407080, "R": 132, "D": 90, "CNTYVTD": "4394397", "rmapshaperid": 596, "id": 546 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.391122999908845, 32.7919579995744 ], [ -97.387562000131226, 32.788995000035953 ], [ -97.387940000301512, 32.788489000057751 ], [ -97.394748000198575, 32.788640999975343 ], [ -97.39477300010131, 32.784423999766297 ], [ -97.399862999610022, 32.784304000058903 ], [ -97.399903999613699, 32.789105000335176 ], [ -97.403999000145518, 32.792218000185876 ], [ -97.398309000055121, 32.792797000109047 ], [ -97.398206999629679, 32.795894999746302 ], [ -97.394601999889531, 32.794646000160022 ], [ -97.391122999908845, 32.7919579995744 ] ] ] } },
{ "type": "Feature", "id": 619, "properties": { "pctwhite": 70.129870, "pctrep": 76.000000, "R": 95, "D": 26, "CNTYVTD": "4394399", "rmapshaperid": 597, "id": 547 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.250828000302263, 32.829003000202903 ], [ -97.252721000188032, 32.828983000305598 ], [ -97.250397000330636, 32.821793000369638 ], [ -97.250486999596049, 32.818858000113288 ], [ -97.253278999738143, 32.818828999979516 ], [ -97.257127000369366, 32.822618999689617 ], [ -97.256969000130653, 32.824041000020017 ], [ -97.252962000218162, 32.825677999875765 ], [ -97.252653999816431, 32.827305999913605 ], [ -97.254705999901333, 32.831694000193011 ], [ -97.246983999529817, 32.831428999656225 ], [ -97.246961999497302, 32.828793999944423 ], [ -97.250828000302263, 32.829003000202903 ] ] ] } },
{ "type": "Feature", "id": 620, "properties": { "pctwhite": 53.596288, "pctrep": 61.904762, "R": 78, "D": 45, "CNTYVTD": "4394400", "rmapshaperid": 598, "id": 548 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.398206999629679, 32.795894999746302 ], [ -97.398309000055121, 32.792797000109047 ], [ -97.403999000145518, 32.792218000185876 ], [ -97.405560000288219, 32.793324000440393 ], [ -97.406867999958152, 32.795975999578829 ], [ -97.411822000440665, 32.797387000172606 ], [ -97.41205300030542, 32.7993730002866 ], [ -97.4112859995939, 32.80344400010582 ], [ -97.410574000187722, 32.802920000432124 ], [ -97.404468000477948, 32.798273000267145 ], [ -97.398206999629679, 32.795894999746302 ] ] ] } },
{ "type": "Feature", "id": 621, "properties": { "pctwhite": 54.823890, "pctrep": 56.158664, "R": 807, "D": 608, "CNTYVTD": "4394410", "rmapshaperid": 599, "id": 549 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.280503999698681, 32.860850000146932 ], [ -97.281202000399318, 32.858147000297102 ], [ -97.279782999958314, 32.855753000203897 ], [ -97.276939999634237, 32.854019000329295 ], [ -97.276298999974443, 32.85096499982253 ], [ -97.278331000199515, 32.84864599962664 ], [ -97.2777840000727, 32.846431000144108 ], [ -97.275265999748058, 32.844385000375226 ], [ -97.276754999852159, 32.839412999764583 ], [ -97.290673000327473, 32.839430000388703 ], [ -97.290134000229799, 32.846993999656114 ], [ -97.290073000476852, 32.860970000235874 ], [ -97.280503999698681, 32.860850000146932 ] ] ] } },
{ "type": "Feature", "id": 622, "properties": { "pctwhite": 63.754789, "pctrep": 70.000000, "R": 343, "D": 136, "CNTYVTD": "4394429", "rmapshaperid": 600, "id": 550 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.408746000325252, 32.880980000209838 ], [ -97.409230000300596, 32.877872999559344 ], [ -97.405855999973113, 32.873600999825911 ], [ -97.404975000345289, 32.869807999777905 ], [ -97.416831000498775, 32.869891000397622 ], [ -97.425993000181819, 32.870209999636891 ], [ -97.42583000024122, 32.879871000311496 ], [ -97.425872999676812, 32.887631000405598 ], [ -97.419703999508641, 32.887624999684313 ], [ -97.417527999744948, 32.888451000181384 ], [ -97.408711000429591, 32.88831099959166 ], [ -97.408746000325252, 32.880980000209838 ] ] ] } },
{ "type": "Feature", "id": 623, "properties": { "pctwhite": 54.807692, "pctrep": 7.692308, "R": 1, "D": 12, "CNTYVTD": "4394432", "rmapshaperid": 601, "id": 551 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.322697000247089, 32.724403000055204 ], [ -97.32422799983452, 32.717269000423478 ], [ -97.324258999486602, 32.712976999637419 ], [ -97.325244000337022, 32.713059000235987 ], [ -97.326404999543797, 32.714290000099567 ], [ -97.326331999794647, 32.723637999994033 ], [ -97.324691999875114, 32.725946000155069 ], [ -97.322697000247089, 32.724403000055204 ] ] ] } },
{ "type": "Feature", "id": 624, "properties": { "pctwhite": 46.245059, "pctrep": 55.285412, "R": 523, "D": 411, "CNTYVTD": "4394452", "rmapshaperid": 602, "id": 552 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.317089000468044, 32.882333000434883 ], [ -97.316765000373465, 32.872884000105351 ], [ -97.314234000267916, 32.860894000370301 ], [ -97.334367000072305, 32.861358999649291 ], [ -97.342701000061027, 32.861508000302436 ], [ -97.342384999701693, 32.863565000125398 ], [ -97.342470000289595, 32.881952999925325 ], [ -97.340541999577795, 32.881205000286791 ], [ -97.337643000427491, 32.878182999781224 ], [ -97.335083000228209, 32.878148999982308 ], [ -97.334668999765157, 32.891304000378852 ], [ -97.331759999751952, 32.891328999611886 ], [ -97.331674999662511, 32.898558000065357 ], [ -97.320264000002155, 32.889276999927581 ], [ -97.317799999604389, 32.885890999629318 ], [ -97.317089000468044, 32.882333000434883 ] ] ] } },
{ "type": "Feature", "id": 625, "properties": { "pctwhite": 62.447356, "pctrep": 71.568627, "R": 876, "D": 333, "CNTYVTD": "4394454", "rmapshaperid": 603, "id": 553 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.381693999773901, 32.880863999951714 ], [ -97.374185999505954, 32.87220600021346 ], [ -97.380517999499446, 32.868988000163853 ], [ -97.390706000505901, 32.869086000447382 ], [ -97.390715000427491, 32.869672000242701 ], [ -97.404975000345289, 32.869807999777905 ], [ -97.405855999973113, 32.873600999825911 ], [ -97.409230000300596, 32.877872999559344 ], [ -97.408746000325252, 32.880980000209838 ], [ -97.381693999773901, 32.880863999951714 ] ] ] } },
{ "type": "Feature", "id": 626, "properties": { "pctwhite": 79.119318, "pctrep": 70.067114, "R": 522, "D": 209, "CNTYVTD": "4394456", "rmapshaperid": 604, "id": 554 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.413502999755778, 32.73443099983453 ], [ -97.413416000040328, 32.730302999852917 ], [ -97.41342800051909, 32.729548000385613 ], [ -97.424764000491265, 32.72481499999671 ], [ -97.42569599985454, 32.72664999966505 ], [ -97.426633999920185, 32.731794999735769 ], [ -97.428172000501576, 32.734661000189725 ], [ -97.413502999755778, 32.73443099983453 ] ] ] } },
{ "type": "Feature", "id": 630, "properties": { "pctwhite": 76.332623, "pctrep": 85.220126, "R": 271, "D": 45, "CNTYVTD": "4394480", "rmapshaperid": 607, "id": 555 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.47695200005694, 32.711732999581706 ], [ -97.468166999622369, 32.692278999757065 ], [ -97.465251999699689, 32.688035000387295 ], [ -97.463009000398159, 32.686237000094536 ], [ -97.466094000209822, 32.684209999593676 ], [ -97.467476000312175, 32.680663999802611 ], [ -97.470630000326793, 32.678496999918785 ], [ -97.472295999959712, 32.679159000290774 ], [ -97.476816000356749, 32.677964000369968 ], [ -97.480566000182662, 32.674515000371727 ], [ -97.485148000178725, 32.673314999568646 ], [ -97.486886000459066, 32.674140000162637 ], [ -97.49089899959057, 32.673626999820037 ], [ -97.493250999916953, 32.676195000047727 ], [ -97.495308000456234, 32.674522000222886 ], [ -97.498951000015182, 32.676903999744383 ], [ -97.499035000419354, 32.692559999597769 ], [ -97.498849999621726, 32.709203999793111 ], [ -97.496992999492392, 32.713261999976076 ], [ -97.493279999740182, 32.714069999732686 ], [ -97.490160999510408, 32.713808000120437 ], [ -97.487256999958831, 32.712263000000405 ], [ -97.486868000471759, 32.71031300023764 ], [ -97.484462000118057, 32.70928300036708 ], [ -97.482093000054817, 32.711789999952892 ], [ -97.47695200005694, 32.711732999581706 ] ] ] } },
{ "type": "Feature", "id": 632, "properties": { "pctwhite": 29.806530, "pctrep": 49.444444, "R": 89, "D": 91, "CNTYVTD": "4394485", "rmapshaperid": 608, "id": 556 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.289541999531664, 32.781787999778572 ], [ -97.290645000506757, 32.78097000023191 ], [ -97.290607000418731, 32.788010000134307 ], [ -97.293435000035757, 32.78803399970915 ], [ -97.293593999664424, 32.795112999977881 ], [ -97.290609000431502, 32.795109999763717 ], [ -97.285460000233158, 32.795062999663621 ], [ -97.286415000044656, 32.789149999982868 ], [ -97.283747000093783, 32.78919199984707 ], [ -97.284000000265408, 32.785777999678785 ], [ -97.289541999531664, 32.781787999778572 ] ] ] } },
{ "type": "Feature", "id": 634, "properties": { "pctwhite": 76.659642, "pctrep": 60.526316, "R": 230, "D": 138, "CNTYVTD": "4394492", "rmapshaperid": 610, "id": 557 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.332926000044353, 32.746796000389779 ], [ -97.332970999831304, 32.745284000018714 ], [ -97.339764000042635, 32.74253400035623 ], [ -97.331662000016081, 32.742101999685296 ], [ -97.33156099961127, 32.733139999877153 ], [ -97.333346000139059, 32.735581000297714 ], [ -97.337511999799872, 32.7355699997904 ], [ -97.337671000458656, 32.733150000034506 ], [ -97.34026900032282, 32.733148000218684 ], [ -97.340261000036904, 32.737697999779868 ], [ -97.342304000297119, 32.73934699987219 ], [ -97.341632999975332, 32.747801000205982 ], [ -97.346565000037373, 32.746778999671932 ], [ -97.349399000074158, 32.74692100000518 ], [ -97.346906999958023, 32.750419999704455 ], [ -97.345587000166958, 32.754558999911985 ], [ -97.342383999534462, 32.75808700036032 ], [ -97.338956000390382, 32.75417900026406 ], [ -97.337448999983934, 32.75181999985486 ], [ -97.332950999633454, 32.751004000288006 ], [ -97.332926000044353, 32.746796000389779 ] ] ] } },
{ "type": "Feature", "id": 635, "properties": { "pctwhite": 27.191868, "pctrep": 63.636364, "R": 189, "D": 107, "CNTYVTD": "4394493", "rmapshaperid": 611, "id": 558 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.342383999534462, 32.75808700036032 ], [ -97.345587000166958, 32.754558999911985 ], [ -97.346906999958023, 32.750419999704455 ], [ -97.349399000074158, 32.74692100000518 ], [ -97.351774000499262, 32.743606000072091 ], [ -97.359962000309778, 32.735675000146358 ], [ -97.359891000218894, 32.734076000354818 ], [ -97.361498999932408, 32.733594999835539 ], [ -97.36146899973663, 32.744258999609904 ], [ -97.361924999565829, 32.747419000348977 ], [ -97.354268999703919, 32.747244999626268 ], [ -97.352386000017418, 32.751063000179514 ], [ -97.361277999536981, 32.751232000238318 ], [ -97.361069000205248, 32.75915000027441 ], [ -97.360904999537112, 32.764096999592532 ], [ -97.358281000464501, 32.764207000119804 ], [ -97.345665999665883, 32.766317999760716 ], [ -97.344923999860384, 32.765944999953888 ], [ -97.34703700037187, 32.761792000361169 ], [ -97.342383999534462, 32.75808700036032 ] ] ] } },
{ "type": "Feature", "id": 636, "properties": { "pctwhite": 42.465753, "pctrep": 33.333333, "R": 1, "D": 2, "CNTYVTD": "4394494", "rmapshaperid": 612, "id": 559 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.33840600021486, 32.772573999808252 ], [ -97.333921000076785, 32.770128000329954 ], [ -97.331702000045368, 32.766435999700818 ], [ -97.331070999706199, 32.76141700024391 ], [ -97.334199000207889, 32.759097999896362 ], [ -97.339542000196218, 32.759516999887815 ], [ -97.342383999534462, 32.75808700036032 ], [ -97.34703700037187, 32.761792000361169 ], [ -97.344923999860384, 32.765944999953888 ], [ -97.344095999635982, 32.767870000279274 ], [ -97.343561000319994, 32.773169999867136 ], [ -97.343279999985342, 32.772749999787102 ], [ -97.339367000250832, 32.773392000301222 ], [ -97.33840600021486, 32.772573999808252 ] ] ] } },
{ "type": "Feature", "id": 637, "properties": { "pctwhite": 52.631579, "pctrep": 28.947368, "R": 22, "D": 53, "CNTYVTD": "4394495", "rmapshaperid": 613, "id": 560 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.305442000216615, 32.684344999612925 ], [ -97.307989999863622, 32.692259000312191 ], [ -97.305738999885904, 32.694915999749092 ], [ -97.305952000460763, 32.696568000361786 ], [ -97.304273000101276, 32.694015000048687 ], [ -97.304540999974989, 32.690588999587639 ], [ -97.300348999830263, 32.687786000312421 ], [ -97.289215999558962, 32.684785999784701 ], [ -97.305442000216615, 32.684344999612925 ] ] ] } },
{ "type": "Feature", "id": 638, "properties": { "pctwhite": 30.912725, "pctrep": 32.398754, "R": 104, "D": 209, "CNTYVTD": "4394496", "rmapshaperid": 614, "id": 561 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.361277999536981, 32.751232000238318 ], [ -97.361381999698779, 32.751231999627421 ], [ -97.365150000277566, 32.755661999896226 ], [ -97.368038999922391, 32.759211000121219 ], [ -97.361069000205248, 32.75915000027441 ], [ -97.361277999536981, 32.751232000238318 ] ] ] } },
{ "type": "Feature", "id": 639, "properties": { "pctwhite": 42.040549, "pctrep": 36.080740, "R": 429, "D": 750, "CNTYVTD": "4394497", "rmapshaperid": 615, "id": 562 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.480200000399165, 32.724513000439444 ], [ -97.481112999554924, 32.730779000206965 ], [ -97.48120800025491, 32.738112999965658 ], [ -97.466899000147833, 32.738130000161384 ], [ -97.466466999713035, 32.734043000229747 ], [ -97.466772999536502, 32.729051000136977 ], [ -97.465580000101667, 32.727052000334808 ], [ -97.465469000295656, 32.724296999965361 ], [ -97.480200000399165, 32.724513000439444 ] ] ] } },
{ "type": "Feature", "id": 640, "properties": { "pctwhite": 95.178849, "pctrep": 74.298056, "R": 344, "D": 113, "CNTYVTD": "4394498", "rmapshaperid": 616, "id": 563 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.374503999626199, 32.701937000165785 ], [ -97.374570000018622, 32.701593999669534 ], [ -97.374531999822921, 32.696679000291809 ], [ -97.375997000354999, 32.694670000087704 ], [ -97.378583999951843, 32.694384000108606 ], [ -97.383346999852591, 32.695641999894441 ], [ -97.382549000479528, 32.698672999655081 ], [ -97.383624000199788, 32.701458999955086 ], [ -97.389728000040094, 32.703234000021773 ], [ -97.389109000178649, 32.704454000147315 ], [ -97.384100000013547, 32.702713999671026 ], [ -97.376490999580184, 32.701734999738839 ], [ -97.374503999626199, 32.701937000165785 ] ] ] } },
{ "type": "Feature", "id": 641, "properties": { "pctwhite": 45.446146, "pctrep": 58.138239, "R": 1043, "D": 723, "CNTYVTD": "4394499", "rmapshaperid": 617, "id": 564 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.314234000267916, 32.860894000370301 ], [ -97.312979999709427, 32.854889000105864 ], [ -97.312565000457511, 32.847129999599844 ], [ -97.313936999885044, 32.841582999854516 ], [ -97.314027999647124, 32.838865999933617 ], [ -97.311411999970659, 32.838621999858631 ], [ -97.312272000517694, 32.832820999922404 ], [ -97.308776999947554, 32.832768999568252 ], [ -97.308780000488554, 32.824221000187109 ], [ -97.312390000537178, 32.82426899956122 ], [ -97.331330000026043, 32.824697000146841 ], [ -97.335532000076952, 32.828893000346824 ], [ -97.342971000032037, 32.837456999638817 ], [ -97.343099999785977, 32.847868999667611 ], [ -97.333149999792795, 32.847833999929016 ], [ -97.333185000337764, 32.855386000078333 ], [ -97.334392000070281, 32.858234999941956 ], [ -97.334367000072305, 32.861358999649291 ], [ -97.314234000267916, 32.860894000370301 ] ] ] } },
{ "type": "Feature", "id": 642, "properties": { "pctwhite": 20.605355, "pctrep": 42.355890, "R": 169, "D": 226, "CNTYVTD": "4394503", "rmapshaperid": 618, "id": 565 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.308576000056263, 32.780912000022838 ], [ -97.308540000373739, 32.795163999562099 ], [ -97.301975000421095, 32.795132999910372 ], [ -97.30156999986616, 32.788732999689174 ], [ -97.301549999507287, 32.780970000437989 ], [ -97.308576000056263, 32.780912000022838 ] ] ] } },
{ "type": "Feature", "id": 643, "properties": { "pctwhite": 59.667886, "pctrep": 64.370748, "R": 757, "D": 405, "CNTYVTD": "4394508", "rmapshaperid": 619, "id": 566 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.290436000070216, 32.872599999942118 ], [ -97.291326000131647, 32.869751999866899 ], [ -97.293404999801098, 32.86996200019253 ], [ -97.293555000295228, 32.86691400021045 ], [ -97.291380999756825, 32.866815999971827 ], [ -97.290073000476852, 32.860970000235874 ], [ -97.304990999775129, 32.86102399976695 ], [ -97.305006000317519, 32.8631910003106 ], [ -97.303333999646753, 32.867400000400387 ], [ -97.302915000354091, 32.872708000217571 ], [ -97.297143999482799, 32.873216000211485 ], [ -97.290436000070216, 32.872599999942118 ] ] ] } },
{ "type": "Feature", "id": 645, "properties": { "pctwhite": 65.793033, "pctrep": 66.070610, "R": 1441, "D": 718, "CNTYVTD": "4394528", "rmapshaperid": 621, "id": 567 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.276155999835609, 32.871836999992148 ], [ -97.285836999876324, 32.871462999723761 ], [ -97.290436000070216, 32.872599999942118 ], [ -97.289805000131281, 32.875557000198746 ], [ -97.289677000360541, 32.890751999622807 ], [ -97.289584000255715, 32.892804999966373 ], [ -97.287645999523662, 32.890672999724998 ], [ -97.283820999678369, 32.889414999663337 ], [ -97.283523000116602, 32.887109999588318 ], [ -97.279902000326587, 32.885724999608485 ], [ -97.280804000360007, 32.881872000262454 ], [ -97.277405999590911, 32.880368999896341 ], [ -97.277615999555579, 32.878520000401672 ], [ -97.275761999988404, 32.877317999995107 ], [ -97.277869000268765, 32.87526400025358 ], [ -97.276155999835609, 32.871836999992148 ] ] ] } },
{ "type": "Feature", "id": 646, "properties": { "pctwhite": 71.532690, "pctrep": 69.392523, "R": 1188, "D": 507, "CNTYVTD": "4394531", "rmapshaperid": 622, "id": 568 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.369336000526474, 32.858682999575699 ], [ -97.369328000280532, 32.847881000160491 ], [ -97.386360999845195, 32.84802200017814 ], [ -97.388421000435301, 32.851159999907331 ], [ -97.390660000042189, 32.858575000425162 ], [ -97.369985000150763, 32.858515999600883 ], [ -97.369336000526474, 32.858682999575699 ] ] ] } },
{ "type": "Feature", "id": 647, "properties": { "pctwhite": 92.413342, "pctrep": 79.280397, "R": 639, "D": 158, "CNTYVTD": "4394532", "rmapshaperid": 623, "id": 569 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.435298999912547, 32.892990999617965 ], [ -97.438272999649755, 32.891548000426653 ], [ -97.440970999677972, 32.891955000108432 ], [ -97.441548000167714, 32.890105000249179 ], [ -97.445012000066654, 32.890894000179948 ], [ -97.448864999942202, 32.890604999888424 ], [ -97.450561000444509, 32.888439000371321 ], [ -97.452687999969157, 32.887701000443151 ], [ -97.453706000489305, 32.885556999586363 ], [ -97.452919000367785, 32.883586999807875 ], [ -97.455126000085414, 32.882021999582399 ], [ -97.44984799952509, 32.876674000166084 ], [ -97.443745999485714, 32.876922000317521 ], [ -97.447877000060686, 32.875942999941643 ], [ -97.449299000413802, 32.874575000442611 ], [ -97.45839999974919, 32.876011000128877 ], [ -97.461661999783729, 32.874504999746364 ], [ -97.47366100012519, 32.876688999624967 ], [ -97.476575999825485, 32.879298000266012 ], [ -97.477961000241194, 32.878984999703647 ], [ -97.483673000320792, 32.874132999907012 ], [ -97.484344000448175, 32.872022000259228 ], [ -97.487010999913124, 32.870756000034241 ], [ -97.490107000431081, 32.873568000284244 ], [ -97.492479000211986, 32.87300800039786 ], [ -97.494142000031658, 32.876457999793104 ], [ -97.496771999711356, 32.874779999933537 ], [ -97.496892000300889, 32.870005000404809 ], [ -97.499577000000286, 32.869743000042753 ], [ -97.501717999713676, 32.867486000351533 ], [ -97.505797999645978, 32.867311999648059 ], [ -97.509429999484524, 32.868787999877675 ], [ -97.511232999961379, 32.867284999821329 ], [ -97.511602000029484, 32.87147699981135 ], [ -97.516327999551109, 32.872418000009333 ], [ -97.519505999620364, 32.874508000343027 ], [ -97.521910000378796, 32.874999000044092 ], [ -97.524492000278798, 32.877641999733719 ], [ -97.520781999533952, 32.878196999911225 ], [ -97.519867999476062, 32.876941999955953 ], [ -97.512203999496435, 32.876648999722448 ], [ -97.510307000119127, 32.875545000016835 ], [ -97.508716000372502, 32.877318999772143 ], [ -97.509823999705773, 32.883555999593121 ], [ -97.509835000351742, 32.887710999712873 ], [ -97.512805999694692, 32.893755999695259 ], [ -97.488511999808935, 32.893575000256725 ], [ -97.488320000350896, 32.897943999866541 ], [ -97.485313999989643, 32.902182000290026 ], [ -97.48425599976629, 32.905063000201771 ], [ -97.484203999678783, 32.900384000315469 ], [ -97.480831000112602, 32.901335000216406 ], [ -97.475283999555685, 32.901947000187008 ], [ -97.468649000245449, 32.902147000054505 ], [ -97.460891999936706, 32.90105799981356 ], [ -97.457735999877357, 32.898822000113171 ], [ -97.449277000123203, 32.898133999630275 ], [ -97.446836000030231, 32.897050000028457 ], [ -97.444256000139774, 32.893885000061921 ], [ -97.435298999912547, 32.892990999617965 ] ] ] } },
{ "type": "Feature", "id": 648, "properties": { "pctwhite": 42.905789, "pctrep": 69.105691, "R": 510, "D": 217, "CNTYVTD": "4394533", "rmapshaperid": 624, "id": 570 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.263976000504343, 32.86058499980723 ], [ -97.264029999693506, 32.853039999755872 ], [ -97.264083999607891, 32.839380000292913 ], [ -97.276754999852159, 32.839412999764583 ], [ -97.275265999748058, 32.844385000375226 ], [ -97.2777840000727, 32.846431000144108 ], [ -97.278331000199515, 32.84864599962664 ], [ -97.276298999974443, 32.85096499982253 ], [ -97.276939999634237, 32.854019000329295 ], [ -97.279782999958314, 32.855753000203897 ], [ -97.281202000399318, 32.858147000297102 ], [ -97.280503999698681, 32.860850000146932 ], [ -97.272378000024503, 32.860805000401001 ], [ -97.263976000504343, 32.86058499980723 ] ] ] } },
{ "type": "Feature", "id": 649, "properties": { "pctwhite": 67.530538, "pctrep": 66.317887, "R": 1331, "D": 634, "CNTYVTD": "4394534", "rmapshaperid": 625, "id": 571 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.477605000212435, 32.760871000271642 ], [ -97.481042999873125, 32.743073999817057 ], [ -97.48120800025491, 32.738112999965658 ], [ -97.494577000082955, 32.738022000159177 ], [ -97.503511000451354, 32.738596000042705 ], [ -97.503482999528757, 32.741245000042646 ], [ -97.5066640000896, 32.745559000387345 ], [ -97.50777599970327, 32.748951999733904 ], [ -97.506829000230013, 32.75154199968965 ], [ -97.501104000154513, 32.75677399997118 ], [ -97.499657000107732, 32.759292999780058 ], [ -97.490190999791778, 32.759174999666101 ], [ -97.488385000082502, 32.759655999904773 ], [ -97.483602000322662, 32.762635999662635 ], [ -97.481198999723986, 32.760889000103148 ], [ -97.477605000212435, 32.760871000271642 ] ] ] } },
{ "type": "Feature", "id": 650, "properties": { "pctwhite": 55.905912, "pctrep": 61.222815, "R": 1492, "D": 904, "CNTYVTD": "4394540", "rmapshaperid": 626, "id": 572 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.304990999775129, 32.86102399976695 ], [ -97.314234000267916, 32.860894000370301 ], [ -97.316765000373465, 32.872884000105351 ], [ -97.317089000468044, 32.882333000434883 ], [ -97.317079000319865, 32.890650000251313 ], [ -97.292696000381525, 32.890756000455355 ], [ -97.293610000046371, 32.885637999836121 ], [ -97.29790499959276, 32.885651999818755 ], [ -97.298579999693985, 32.879549999751752 ], [ -97.297143999482799, 32.873216000211485 ], [ -97.302915000354091, 32.872708000217571 ], [ -97.303333999646753, 32.867400000400387 ], [ -97.305006000317519, 32.8631910003106 ], [ -97.304990999775129, 32.86102399976695 ] ] ] } },
{ "type": "Feature", "id": 651, "properties": { "pctwhite": 65.536884, "pctrep": 66.906475, "R": 1674, "D": 793, "CNTYVTD": "4394551", "rmapshaperid": 627, "id": 573 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.407462000399008, 32.816906999587353 ], [ -97.407474000215416, 32.821496999588184 ], [ -97.419992999856703, 32.821415999874226 ], [ -97.420371000187913, 32.828342000236297 ], [ -97.424185000276339, 32.831299000065357 ], [ -97.425209000350335, 32.832996000314054 ], [ -97.425292000467707, 32.840077000410204 ], [ -97.426310000273077, 32.843240999738306 ], [ -97.426317000118786, 32.852309000047846 ], [ -97.411390999810223, 32.852378999897454 ], [ -97.409355000002449, 32.847019999751154 ], [ -97.41182599999604, 32.842784999897326 ], [ -97.412155000169918, 32.839900000339014 ], [ -97.411201999890991, 32.837977999552983 ], [ -97.40765000014801, 32.836182000239319 ], [ -97.406280999695483, 32.833459999730955 ], [ -97.40918500006012, 32.828527000024607 ], [ -97.409281999962147, 32.827059999996607 ], [ -97.405759000253923, 32.821266999882809 ], [ -97.404816999899737, 32.818502999767105 ], [ -97.407462000399008, 32.816906999587353 ] ] ] } },
{ "type": "Feature", "id": 654, "properties": { "pctwhite": 53.846154, "pctrep": 36.000000, "R": 9, "D": 16, "CNTYVTD": "4394568", "rmapshaperid": 629, "id": 574 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.391122999908845, 32.7919579995744 ], [ -97.394601999889531, 32.794646000160022 ], [ -97.394412999479982, 32.79667499996502 ], [ -97.390324000344719, 32.793421999786815 ], [ -97.391122999908845, 32.7919579995744 ] ] ] } },
{ "type": "Feature", "id": 655, "properties": { "pctwhite": 23.529412, "pctrep": 26.315789, "R": 10, "D": 28, "CNTYVTD": "4394572", "rmapshaperid": 630, "id": 575 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.327347000042423, 32.76908400021258 ], [ -97.329810999867476, 32.772602000274318 ], [ -97.331510999791405, 32.772328000421403 ], [ -97.331882000163631, 32.773622000137969 ], [ -97.329708999847753, 32.774096000409735 ], [ -97.327347000042423, 32.76908400021258 ] ] ] } },
{ "type": "Feature", "id": 657, "properties": { "pctwhite": 2.148438, "pctrep": 1.492537, "R": 2, "D": 132, "CNTYVTD": "4394587", "rmapshaperid": 632, "id": 576 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.320474999588185, 32.71731199959752 ], [ -97.320553000341121, 32.712994999614565 ], [ -97.324258999486602, 32.712976999637419 ], [ -97.32422799983452, 32.717269000423478 ], [ -97.320474999588185, 32.71731199959752 ] ] ] } },
{ "type": "Feature", "id": 658, "properties": { "pctwhite": 66.431373, "pctrep": 66.094070, "R": 1616, "D": 797, "CNTYVTD": "4394588", "rmapshaperid": 633, "id": 577 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.258987000085611, 32.894913999941615 ], [ -97.262378000189969, 32.874264999909784 ], [ -97.26338200035164, 32.868187999669082 ], [ -97.266790999756267, 32.869188999560443 ], [ -97.269189000417313, 32.870903000165967 ], [ -97.268965000506228, 32.875717999894086 ], [ -97.270015999942871, 32.87862799986619 ], [ -97.273024999713414, 32.882831999698659 ], [ -97.2736540000829, 32.886105000380965 ], [ -97.272377999581877, 32.892045999605322 ], [ -97.272402999916906, 32.894661000179291 ], [ -97.258987000085611, 32.894913999941615 ] ] ] } },
{ "type": "Feature", "id": 659, "properties": { "pctwhite": 57.867891, "pctrep": 61.661585, "R": 809, "D": 475, "CNTYVTD": "4394591", "rmapshaperid": 634, "id": 578 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.331674999662511, 32.898558000065357 ], [ -97.331759999751952, 32.891328999611886 ], [ -97.334668999765157, 32.891304000378852 ], [ -97.335083000228209, 32.878148999982308 ], [ -97.337643000427491, 32.878182999781224 ], [ -97.340541999577795, 32.881205000286791 ], [ -97.342470000289595, 32.881952999925325 ], [ -97.342645999827752, 32.883725000270012 ], [ -97.348879000001361, 32.895166999975267 ], [ -97.348726999958558, 32.915757000275953 ], [ -97.336943999991973, 32.903083000315632 ], [ -97.331674999662511, 32.898558000065357 ] ] ] } },
{ "type": "Feature", "id": 661, "properties": { "pctwhite": 25.500000, "pctrep": 45.138889, "R": 65, "D": 75, "CNTYVTD": "4394593", "rmapshaperid": 635, "id": 579 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.38841500001422, 32.806386999581427 ], [ -97.391644000453709, 32.803477999928248 ], [ -97.392896999761973, 32.80212799983034 ], [ -97.3950770002441, 32.805140000196239 ], [ -97.403582000099476, 32.805210999911445 ], [ -97.405030999726321, 32.809553999955476 ], [ -97.398399999622768, 32.809533000385727 ], [ -97.397540999899817, 32.809291999970178 ], [ -97.38841500001422, 32.806386999581427 ] ] ] } },
{ "type": "Feature", "id": 662, "properties": { "pctwhite": 51.020408, "pctrep": 60.416667, "R": 29, "D": 19, "CNTYVTD": "4394595", "rmapshaperid": 636, "id": 580 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.410574000187722, 32.802920000432124 ], [ -97.4112859995939, 32.80344400010582 ], [ -97.411198000250678, 32.811236000035201 ], [ -97.407756000155018, 32.811239000329046 ], [ -97.407770999495938, 32.808976999923537 ], [ -97.410798999948696, 32.808999000127251 ], [ -97.410574000187722, 32.802920000432124 ] ] ] } },
{ "type": "Feature", "id": 663, "properties": { "pctwhite": 19.655172, "pctrep": 44.897959, "R": 44, "D": 54, "CNTYVTD": "4394596", "rmapshaperid": 637, "id": 581 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.290551000499505, 32.806471999687759 ], [ -97.290547000389466, 32.806136999912979 ], [ -97.292896000270844, 32.806054000224393 ], [ -97.293901000424057, 32.808015999822345 ], [ -97.290545999874951, 32.809769999756412 ], [ -97.290562000394701, 32.809035999709579 ], [ -97.290551000499505, 32.806471999687759 ] ] ] } },
{ "type": "Feature", "id": 665, "properties": { "pctwhite": 57.085593, "pctrep": 62.561275, "R": 1021, "D": 584, "CNTYVTD": "4394599", "rmapshaperid": 639, "id": 582 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.312530000181823, 32.942030999982883 ], [ -97.315333999984816, 32.93338300009556 ], [ -97.316978999677261, 32.926331999757906 ], [ -97.317048000406913, 32.914478999744169 ], [ -97.317079000319865, 32.890650000251313 ], [ -97.317089000468044, 32.882333000434883 ], [ -97.317799999604389, 32.885890999629318 ], [ -97.320264000002155, 32.889276999927581 ], [ -97.331674999662511, 32.898558000065357 ], [ -97.336943999991973, 32.903083000315632 ], [ -97.348726999958558, 32.915757000275953 ], [ -97.348817999643728, 32.924293000250486 ], [ -97.331526999533551, 32.924113000371619 ], [ -97.331485999637636, 32.93085500028247 ], [ -97.330984999593298, 32.931320000111498 ], [ -97.322738999818725, 32.931527999834891 ], [ -97.322696999857627, 32.94186800010737 ], [ -97.312530000181823, 32.942030999982883 ] ] ] } },
{ "type": "Feature", "id": 669, "properties": { "pctwhite": 25.375940, "pctrep": 28.571429, "R": 10, "D": 25, "CNTYVTD": "4394620", "rmapshaperid": 643, "id": 583 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.244386999623316, 32.809099000326434 ], [ -97.244386999863892, 32.803958999882887 ], [ -97.246732000484471, 32.803983000024708 ], [ -97.248682999574683, 32.807595000257479 ], [ -97.24896500024343, 32.807823000198162 ], [ -97.247082999561343, 32.809356000092407 ], [ -97.244586999988954, 32.81122200007686 ], [ -97.244386999623316, 32.809099000326434 ] ] ] } },
{ "type": "Feature", "id": 673, "properties": { "pctwhite": 81.852552, "pctrep": 58.507463, "R": 196, "D": 122, "CNTYVTD": "4394634", "rmapshaperid": 646, "id": 584 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.361924999565829, 32.747419000348977 ], [ -97.361541999554419, 32.751128000283167 ], [ -97.361381999698779, 32.751231999627421 ], [ -97.361277999536981, 32.751232000238318 ], [ -97.352386000017418, 32.751063000179514 ], [ -97.354268999703919, 32.747244999626268 ], [ -97.361924999565829, 32.747419000348977 ] ] ] } },
{ "type": "Feature", "id": 674, "properties": { "pctwhite": 62.550961, "pctrep": 66.199095, "R": 1463, "D": 724, "CNTYVTD": "4394638", "rmapshaperid": 647, "id": 585 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.348726999958558, 32.915757000275953 ], [ -97.348879000001361, 32.895166999975267 ], [ -97.342645999827752, 32.883725000270012 ], [ -97.373618000229285, 32.883757999865388 ], [ -97.376088000388165, 32.880825999866246 ], [ -97.381265000044166, 32.880856999727321 ], [ -97.387618000008672, 32.888121000290376 ], [ -97.373648000105177, 32.887981999674359 ], [ -97.373693999708223, 32.895054999602294 ], [ -97.375111999885121, 32.895459999591743 ], [ -97.374780999988417, 32.924424999753008 ], [ -97.357815999474582, 32.924317999881431 ], [ -97.348726999958558, 32.915757000275953 ] ] ] } },
{ "type": "Feature", "id": 675, "properties": { "pctwhite": 10.232558, "pctrep": 47.208122, "R": 93, "D": 101, "CNTYVTD": "4394640", "rmapshaperid": 648, "id": 586 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.327347000042423, 32.76908400021258 ], [ -97.323178999828031, 32.762681000071929 ], [ -97.32721899981216, 32.760378999582954 ], [ -97.329210999797837, 32.762916999633262 ], [ -97.329552999706024, 32.766445999614263 ], [ -97.331510999791405, 32.772328000421403 ], [ -97.329810999867476, 32.772602000274318 ], [ -97.327347000042423, 32.76908400021258 ] ] ] } },
{ "type": "Feature", "id": 676, "properties": { "pctwhite": 71.042634, "pctrep": 72.889710, "R": 1183, "D": 418, "CNTYVTD": "4394649", "rmapshaperid": 649, "id": 587 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.363915999841566, 32.860210999708698 ], [ -97.369336000526474, 32.858682999575699 ], [ -97.369985000150763, 32.858515999600883 ], [ -97.390660000042189, 32.858575000425162 ], [ -97.390706000505901, 32.869086000447382 ], [ -97.380517999499446, 32.868988000163853 ], [ -97.374185999505954, 32.87220600021346 ], [ -97.363915999841566, 32.860210999708698 ] ] ] } },
{ "type": "Feature", "id": 677, "properties": { "pctwhite": 49.098774, "pctrep": 57.720207, "R": 1114, "D": 783, "CNTYVTD": "4394650", "rmapshaperid": 650, "id": 588 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.388421000435301, 32.851159999907331 ], [ -97.386360999845195, 32.84802200017814 ], [ -97.369328000280532, 32.847881000160491 ], [ -97.352127999887585, 32.847899999989473 ], [ -97.347476000300702, 32.842584999650697 ], [ -97.347466000306326, 32.842281000182517 ], [ -97.362852000463803, 32.836547999820247 ], [ -97.372983999712133, 32.832583000419433 ], [ -97.379380000453637, 32.829492000312563 ], [ -97.387270999469948, 32.825465000215189 ], [ -97.401331999784105, 32.818994999781438 ], [ -97.407447000259268, 32.816186999904041 ], [ -97.407462000399008, 32.816906999587353 ], [ -97.404816999899737, 32.818502999767105 ], [ -97.405759000253923, 32.821266999882809 ], [ -97.409281999962147, 32.827059999996607 ], [ -97.40918500006012, 32.828527000024607 ], [ -97.406280999695483, 32.833459999730955 ], [ -97.40765000014801, 32.836182000239319 ], [ -97.411201999890991, 32.837977999552983 ], [ -97.412155000169918, 32.839900000339014 ], [ -97.41182599999604, 32.842784999897326 ], [ -97.409355000002449, 32.847019999751154 ], [ -97.411390999810223, 32.852378999897454 ], [ -97.394448999658181, 32.852281999884326 ], [ -97.388421000435301, 32.851159999907331 ] ] ] } }
]
}
@cpsievert
Copy link

Nice work @walkerke! Since some of these packages are not on CRAN, it'd be useful to have code to install them in the README

@cpsievert
Copy link

Also, would it be possible to include code for obtaining the shapefile?

@walkerke
Copy link
Author

Thanks! And thanks for the feedback. I didn't use R to obtain and prep the shapefile but I'll include some pointers.

My ultimate goal is to get the Plotly events talking to leafletProxy so that the entire map doesn't re-load every time, and that the selected tracts are simply removed and then re-added - this isn't working for me just yet.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment