Skip to content

Instantly share code, notes, and snippets.

@wayneburkett
Last active May 25, 2021 03:52
Show Gist options
  • Select an option

  • Save wayneburkett/e320f07dabfa698c3cfef2523f77f247 to your computer and use it in GitHub Desktop.

Select an option

Save wayneburkett/e320f07dabfa698c3cfef2523f77f247 to your computer and use it in GitHub Desktop.

How to create this file

  1. First you'll need to download the latest parcel data (shapefiles and extended parcel records) and generate a SQLite database:
# download the shapefiles and parcel data, merge it all together, and dump it into a database
curl -L "https://www.stlouis-mo.gov/data/upload/data-files/prcl_shape.zip" -o prcl.zip && \
unzip prcl.zip && \
curl -LO "https://www.stlouis-mo.gov/data/upload/data-files/par.zip" && \
unzip par.zip && \
mv par.dbf prcl.dbf && \
ogr2ogr -f SQLite prcl.db prcl.shp -t_srs EPSG:4326

The result is a SQLite database that contains both the geometry data and a table called prcl that contains a single row for each parcel.

  1. Next you'll need an older copy of the parcel data for comparison. The latest version comes from par.zip in the command above, but unfortunately the city doesn't host older copies. I happen to have a copy from 2018, which is available in this repo. You can convert its contents to SQLite like this:

$ ogr2ogr -f SQLite prcl_2018.db prcl_2018.dbf

  1. Finally, insert the data from the 2018 prcl_2018 table into the original SQLite DB from above:

$ sqlite3 prcl_2018.db ".dump prcl_2018" | sqlite3 prcl.db

  1. Now you can generate the GeoJSON like this:

$ ogr2ogr -f GeoJSON tgs.geojson prcl.db -sql "SELECT IIF(prcl.numunits > prcl_2018.numunits, '#007617', '#c80004') AS 'stroke', IIF(prcl.numunits > prcl_2018.numunits, '#00aa22', '#ff3d41') AS 'fill', prcl.geometry, prcl.handle, prcl.numunits AS 'numunits (2020)', prcl_2018.numunits AS 'numunits (2018)' FROM prcl LEFT JOIN prcl_2018 on prcl.handle = prcl_2018.handle WHERE prcl.numunits <> prcl_2018.numunits"

Some ideas for interesting search clauses:

  1. Filter by zoning. For example, show only residential properties using WHERE prcl.zoning1 IN ('A', 'B', 'C', 'D', 'E').
  2. Filter by vacancy. For example, show only buildings for which numunits went to zero using WHERE prcl.numunits = 0.
  3. FIlter by neighborhood. For example, show only properties in Tower Grove South using WHERE prcl.NBRHD = '15'.
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"name": "SELECT",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10067000061", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.184550885736897, 38.630748582675395 ], [ -90.184551568163386, 38.630744856643048 ], [ -90.184717852728895, 38.630767638882027 ], [ -90.184984715174707, 38.630804201309886 ], [ -90.184970295542797, 38.630882878360644 ], [ -90.184905251904098, 38.630869238314617 ], [ -90.184537994017191, 38.630818920680312 ], [ -90.184550885736897, 38.630748582675395 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10068000020", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.185263883531462, 38.631385646001206 ], [ -90.185265541719744, 38.631377282141727 ], [ -90.185274594713292, 38.631331644127108 ], [ -90.18528643554771, 38.631271957113675 ], [ -90.185286858309539, 38.6312698258334 ], [ -90.185453500154082, 38.63129265573567 ], [ -90.185456786871285, 38.631412074139902 ], [ -90.185263883531462, 38.631385646001206 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10097000030", "numunits (2020)": 66, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.187162922605239, 38.629637336930422 ], [ -90.187230662717909, 38.629438367675192 ], [ -90.187294044774305, 38.62925219734425 ], [ -90.187657022454317, 38.629328403540292 ], [ -90.187680509428901, 38.629333334388257 ], [ -90.187617185309051, 38.629519335714114 ], [ -90.187593694790962, 38.629514414729329 ], [ -90.187536500345686, 38.629502433941575 ], [ -90.187468761015836, 38.629701402468775 ], [ -90.187419677759436, 38.629691120656865 ], [ -90.187162922605239, 38.629637336930422 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10099008011", "numunits (2020)": 115, "numunits (2018)": 109 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.188316353195191, 38.627960974365017 ], [ -90.188375740640851, 38.627811673260076 ], [ -90.188435738541173, 38.627660839521099 ], [ -90.188887237779738, 38.627770210410468 ], [ -90.188767839214037, 38.628070342052339 ], [ -90.188316353195191, 38.627960974365017 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10117000100", "numunits (2020)": 102, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.189504299848494, 38.62825473715457 ], [ -90.189627305609577, 38.627953993588704 ], [ -90.189886051244116, 38.628019061660723 ], [ -90.189763046452299, 38.628319805499238 ], [ -90.189504299848494, 38.62825473715457 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10125008151", "numunits (2020)": 205, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.190082205422527, 38.631187686960843 ], [ -90.189176876455974, 38.631000113601161 ], [ -90.189201005576422, 38.630929708442231 ], [ -90.189405345478207, 38.630334601822113 ], [ -90.189582928641371, 38.630371488767857 ], [ -90.189595864616393, 38.630339889273564 ], [ -90.190019273513485, 38.630429849420608 ], [ -90.190008988606465, 38.630460342440912 ], [ -90.190311134811466, 38.630523353893885 ], [ -90.190115562826918, 38.631090887495709 ], [ -90.190082205422527, 38.631187686960843 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10129000010", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.191133937035829, 38.628173813589349 ], [ -90.19119761009155, 38.62801739093161 ], [ -90.191269218980239, 38.628035126641514 ], [ -90.191206599597692, 38.628193335903219 ], [ -90.191133937035829, 38.628173813589349 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10147000031", "numunits (2020)": 15, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193915974424641, 38.621223327678784 ], [ -90.193766756059745, 38.621185974398074 ], [ -90.193731973755533, 38.621177267642523 ], [ -90.193594821143577, 38.621142934747567 ], [ -90.193864886440977, 38.620491185316432 ], [ -90.194038280258198, 38.620534590531435 ], [ -90.194065943895794, 38.620466576285558 ], [ -90.194318174104168, 38.620529715845315 ], [ -90.194019979641652, 38.621249363164743 ], [ -90.193915974424641, 38.621223327678784 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10147000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193346312879768, 38.620955340421652 ], [ -90.193286059186278, 38.620866638521406 ], [ -90.193618927947824, 38.620951527684404 ], [ -90.193591875873452, 38.621016812827691 ], [ -90.193553375662759, 38.621109725319144 ], [ -90.193384372362559, 38.621011369548903 ], [ -90.193346312879768, 38.620955340421652 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10149000060", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.194607394675955, 38.619108829081412 ], [ -90.194677464599224, 38.618932235585959 ], [ -90.194677580666919, 38.618931943118852 ], [ -90.194683984167384, 38.618938074987909 ], [ -90.194684688680084, 38.618938748880652 ], [ -90.194737214994959, 38.61898745568606 ], [ -90.194791235864614, 38.619035145780536 ], [ -90.194846719327913, 38.619081790946012 ], [ -90.19490363255818, 38.619127363582528 ], [ -90.194899355644196, 38.619137821690131 ], [ -90.194882940718571, 38.619177951395351 ], [ -90.194607394675955, 38.619108829081412 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10170000120", "numunits (2020)": 107, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.192242354306487, 38.631349160817514 ], [ -90.19237589758103, 38.630950843818241 ], [ -90.19253969075578, 38.6309846316272 ], [ -90.192411631114979, 38.631384079385285 ], [ -90.192242354306487, 38.631349160817514 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10178008021", "numunits (2020)": 155, "numunits (2018)": 50 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193991345235986, 38.631930185205547 ], [ -90.194061670104972, 38.631731754811888 ], [ -90.194024436922163, 38.63172399127258 ], [ -90.194042474370292, 38.631670926594538 ], [ -90.194159547851385, 38.631326514164449 ], [ -90.194585678202785, 38.631417426105266 ], [ -90.194450458830161, 38.631812818785434 ], [ -90.194428467940739, 38.631808233709172 ], [ -90.194361018526507, 38.632007263685217 ], [ -90.193991345235986, 38.631930185205547 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10181000080", "numunits (2020)": 61, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.191916378813204, 38.628867236391791 ], [ -90.19180926488221, 38.628841985506611 ], [ -90.191708672398434, 38.628818271419568 ], [ -90.191831071380733, 38.628520263550001 ], [ -90.192252403121941, 38.628619587472876 ], [ -90.192126001545219, 38.628916651981569 ], [ -90.191916378813204, 38.628867236391791 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10192008026", "numunits (2020)": 242, "numunits (2018)": 276 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193091895226132, 38.628328512840788 ], [ -90.193066879468077, 38.628322261981893 ], [ -90.192960583631745, 38.628620374526264 ], [ -90.192955981985918, 38.628619228271681 ], [ -90.192517605359754, 38.628510072334564 ], [ -90.192765160300183, 38.627902937774017 ], [ -90.193310172865338, 38.628039417716245 ], [ -90.193181950840909, 38.628351016237005 ], [ -90.193091895226132, 38.628328512840788 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10192008300", "numunits (2020)": 444, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.192985606464489, 38.628626604694588 ], [ -90.193091895226132, 38.628328512840788 ], [ -90.193181950840909, 38.628351016237005 ], [ -90.193310172865338, 38.628039417716245 ], [ -90.193662419191085, 38.62812762479178 ], [ -90.193402027522595, 38.628731271042341 ], [ -90.192985606464489, 38.628626604694588 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10194000050", "numunits (2020)": 126, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.191965953944162, 38.629881240014342 ], [ -90.19202409013478, 38.629724752864369 ], [ -90.192450437420945, 38.629830890904273 ], [ -90.192487118092174, 38.629840021947324 ], [ -90.192489432945607, 38.629834751534631 ], [ -90.192502648446222, 38.629838032017943 ], [ -90.192495867840734, 38.629855258101109 ], [ -90.192376230245529, 38.630159201690596 ], [ -90.192325340733902, 38.630148873050388 ], [ -90.19238925542723, 38.629986496457178 ], [ -90.191965953944162, 38.629881240014342 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10209000010", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201206891064288, 38.628006955688129 ], [ -90.201808872979456, 38.626488504604623 ], [ -90.201842669270064, 38.626495724515003 ], [ -90.202315806580728, 38.62659680679355 ], [ -90.20232069921731, 38.626597852505881 ], [ -90.202408572824154, 38.626640860056156 ], [ -90.202413536709315, 38.626643288810882 ], [ -90.2028879460007, 38.6267446422505 ], [ -90.202914980694459, 38.626750417754039 ], [ -90.202663962227888, 38.627387320638967 ], [ -90.202655690732939, 38.627408307442749 ], [ -90.202327543950346, 38.628240887524086 ], [ -90.202324770496006, 38.628240308440397 ], [ -90.201844257514594, 38.628140004761647 ], [ -90.201697828209689, 38.628109437955246 ], [ -90.201206891064288, 38.628006955688129 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10243000016", "numunits (2020)": 56, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.18459212608505, 38.639706723030947 ], [ -90.184619970550017, 38.639704346533769 ], [ -90.184756966983599, 38.639692674102029 ], [ -90.184820222952268, 38.64023814789865 ], [ -90.184822760079783, 38.640260024584961 ], [ -90.184695689299446, 38.640270904808979 ], [ -90.184667845730374, 38.640273289453887 ], [ -90.18459212608505, 38.639706723030947 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10263000097", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193107363184865, 38.636903735596938 ], [ -90.193148171817583, 38.636783876880408 ], [ -90.193499248058004, 38.63685713656087 ], [ -90.193519547720385, 38.636861372346125 ], [ -90.193478758277507, 38.636981175389906 ], [ -90.193465224755215, 38.636978353632912 ], [ -90.1934584574241, 38.636976942285514 ], [ -90.193107363184865, 38.636903735596938 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10263000098", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193148171817583, 38.636783876880408 ], [ -90.193185204790197, 38.636675107186271 ], [ -90.193536280546695, 38.636748365848874 ], [ -90.193556580180683, 38.636752601627634 ], [ -90.193519547720385, 38.636861372346125 ], [ -90.193499248058004, 38.63685713656087 ], [ -90.193148171817583, 38.636783876880408 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10263000099", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193185204790197, 38.636675107186271 ], [ -90.193222238802036, 38.63656633657483 ], [ -90.19357331291512, 38.6366395960288 ], [ -90.193593612520687, 38.636643831801109 ], [ -90.193556580180683, 38.636752601627634 ], [ -90.193536280546695, 38.636748365848874 ], [ -90.193185204790197, 38.636675107186271 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10263000100", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193222238802036, 38.63656633657483 ], [ -90.193259271548769, 38.636457566852322 ], [ -90.193610345170612, 38.636530826194551 ], [ -90.193630644747785, 38.63653506196043 ], [ -90.193593612520687, 38.636643831801109 ], [ -90.19357331291512, 38.6366395960288 ], [ -90.193222238802036, 38.63656633657483 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10263000101", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193259271548769, 38.636457566852322 ], [ -90.193296304186092, 38.636348797115673 ], [ -90.193647377313297, 38.6364220563187 ], [ -90.193667676861907, 38.636426292105568 ], [ -90.193630644747785, 38.63653506196043 ], [ -90.193610345170612, 38.636530826194551 ], [ -90.193259271548769, 38.636457566852322 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10263000102", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193296304186092, 38.636348797115673 ], [ -90.193337691401993, 38.636227239844651 ], [ -90.19368878143699, 38.636300445862595 ], [ -90.193695548709357, 38.636301857169123 ], [ -90.193709082113827, 38.636304678899364 ], [ -90.193667676861907, 38.636426292105568 ], [ -90.193647377313297, 38.6364220563187 ], [ -90.193296304186092, 38.636348797115673 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10264000012", "numunits (2020)": 48, "numunits (2018)": 49 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193576491908487, 38.635525838205062 ], [ -90.193666434731057, 38.635261657842698 ], [ -90.194017484331482, 38.635334972665575 ], [ -90.194058080540302, 38.635343450361248 ], [ -90.194406528266725, 38.635416220304649 ], [ -90.194491103904269, 38.635433882386593 ], [ -90.194279338890269, 38.636055895605814 ], [ -90.194252277951605, 38.63605023425027 ], [ -90.194194774192241, 38.636038202755927 ], [ -90.193846366717665, 38.635965304386474 ], [ -90.193805775990555, 38.635956811309946 ], [ -90.193542197581849, 38.635901660772959 ], [ -90.193580835732249, 38.635788173602442 ], [ -90.193493406052767, 38.635769879984473 ], [ -90.193576491908487, 38.635525838205062 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10273008021", "numunits (2020)": 186, "numunits (2018)": 176 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193786508892174, 38.629663165453302 ], [ -90.194025062433468, 38.629060869646331 ], [ -90.194459638350096, 38.629170093849531 ], [ -90.19443296476102, 38.629236566555974 ], [ -90.194218231250545, 38.629771700227046 ], [ -90.193786508892174, 38.629663165453302 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10274008015", "numunits (2020)": 18, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.194356175271707, 38.628971029811623 ], [ -90.194471878680304, 38.628682427722957 ], [ -90.194639096500211, 38.628723398865034 ], [ -90.194522740127013, 38.629012834558829 ], [ -90.194356175271707, 38.628971029811623 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10279000035", "numunits (2020)": 17, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19490438898967, 38.629101091850636 ], [ -90.195004715806903, 38.628808133140254 ], [ -90.195185553216902, 38.628848747003296 ], [ -90.195087075302297, 38.62913918460071 ], [ -90.19490438898967, 38.629101091850636 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10280008031", "numunits (2020)": 20, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.194418454006296, 38.629821468308315 ], [ -90.194531688578166, 38.629539278577838 ], [ -90.194790767064802, 38.629594575552282 ], [ -90.194697380489842, 38.629879217107927 ], [ -90.194418454006296, 38.629821468308315 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10281008040", "numunits (2020)": 31, "numunits (2018)": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.194144311304981, 38.630528921690036 ], [ -90.194245671616528, 38.630258891210723 ], [ -90.194660670093626, 38.630344682090943 ], [ -90.194641109094036, 38.63039862849724 ], [ -90.194559848692066, 38.630614717926626 ], [ -90.194144311304981, 38.630528921690036 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10292000025", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.184351037303088, 38.645634805904059 ], [ -90.184292671148626, 38.645430579204472 ], [ -90.184214794283946, 38.645158086022342 ], [ -90.184117988709602, 38.644819354896711 ], [ -90.18410359742677, 38.644769000970797 ], [ -90.184097776442385, 38.644748630745781 ], [ -90.184094694537663, 38.644737847911955 ], [ -90.184135629373287, 38.644730537478637 ], [ -90.184645482216354, 38.644639481013854 ], [ -90.184713760789393, 38.64462728623819 ], [ -90.185223612185979, 38.644536227246185 ], [ -90.185264544497997, 38.644528916410479 ], [ -90.185272909297112, 38.644558185105716 ], [ -90.18551107087778, 38.645391476035329 ], [ -90.185532211384398, 38.645465443788744 ], [ -90.185532452391271, 38.645466286737971 ], [ -90.185559534613759, 38.645460606232817 ], [ -90.185607812111812, 38.64545047898801 ], [ -90.185764170721114, 38.645986153488188 ], [ -90.185679017612415, 38.646004016179063 ], [ -90.186009984432687, 38.64666953426665 ], [ -90.18600518074102, 38.646671019608384 ], [ -90.185961125025997, 38.646684643836501 ], [ -90.184943617361824, 38.64699930243691 ], [ -90.184933853441748, 38.647002322120763 ], [ -90.1848947575061, 38.647014412437386 ], [ -90.184590227450087, 38.646399380158833 ], [ -90.184515119139988, 38.646247689533141 ], [ -90.18452557090572, 38.646245496928657 ], [ -90.184495116138123, 38.646138935286395 ], [ -90.184485926654887, 38.646106782399642 ], [ -90.184393760770746, 38.645784295233227 ], [ -90.184387634120867, 38.645762860279284 ], [ -90.184372417683633, 38.645709615932297 ], [ -90.184351037303088, 38.645634805904059 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10324000120", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.188051482574679, 38.646217526673666 ], [ -90.188505123624907, 38.646077225749167 ], [ -90.18851563840748, 38.646073973533362 ], [ -90.188566932174425, 38.646176177829638 ], [ -90.188102780379836, 38.646319730247349 ], [ -90.188051482574679, 38.646217526673666 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10329000105", "numunits (2020)": 4, "numunits (2018)": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.190005723623898, 38.650169691252444 ], [ -90.190095527390469, 38.650348324604089 ], [ -90.190105800758687, 38.650368760305071 ], [ -90.189617508024256, 38.650520510574708 ], [ -90.189607233625495, 38.650500073922665 ], [ -90.189517111953393, 38.650320805142286 ], [ -90.18997966482803, 38.650177751093302 ], [ -90.190005723623898, 38.650169691252444 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10333000100", "numunits (2020)": 58, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.191560482287045, 38.653224772261744 ], [ -90.192030115088315, 38.65307881715853 ], [ -90.19213250520194, 38.653283290340873 ], [ -90.192234895894458, 38.653487762550192 ], [ -90.192337286017249, 38.653692234634683 ], [ -90.191868726597392, 38.653837855062292 ], [ -90.191765977530721, 38.653633494213587 ], [ -90.191663230193029, 38.653429133272937 ], [ -90.191560482287045, 38.653224772261744 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10359000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.194280004012853, 38.651495083398537 ], [ -90.194338646627472, 38.651476881498162 ], [ -90.194479883911725, 38.651765272798094 ], [ -90.194421241096833, 38.651783474767605 ], [ -90.194280004012853, 38.651495083398537 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10359000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.194361405173723, 38.651469817451783 ], [ -90.194387487073527, 38.651461722455394 ], [ -90.194528724524602, 38.651750113697773 ], [ -90.194502642532228, 38.651758208724914 ], [ -90.194479883911725, 38.651765272798094 ], [ -90.194338646627472, 38.651476881498162 ], [ -90.194361405173723, 38.651469817451783 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10359000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.194387487073527, 38.651461722455394 ], [ -90.194442807426171, 38.651444551478519 ], [ -90.194584045062655, 38.651732942655684 ], [ -90.194528724524602, 38.651750113697773 ], [ -90.194387487073527, 38.651461722455394 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10363000110", "numunits (2020)": 18, "numunits (2018)": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.192082419076939, 38.645852748095145 ], [ -90.192180236434467, 38.64582252407051 ], [ -90.192198712492029, 38.645855182662842 ], [ -90.192503865709412, 38.646394566907958 ], [ -90.192522339777724, 38.646427221844078 ], [ -90.192521506970863, 38.646427480907867 ], [ -90.19248510053319, 38.646438804267866 ], [ -90.1924246175071, 38.646457615739209 ], [ -90.192261731535226, 38.646508278031106 ], [ -90.192180362656572, 38.64653358584976 ], [ -90.192098992572554, 38.646558893608479 ], [ -90.192017622431536, 38.646584201337703 ], [ -90.191936252233702, 38.646609508982536 ], [ -90.191854883127419, 38.64663481657346 ], [ -90.191773513964236, 38.646660124107427 ], [ -90.191692143595574, 38.646685431608937 ], [ -90.191610774322058, 38.646710739029054 ], [ -90.19152940498816, 38.64673604639222 ], [ -90.19142850592354, 38.646767427482565 ], [ -90.191284687191313, 38.646479101202686 ], [ -90.191275120882153, 38.6464599223807 ], [ -90.191610365205733, 38.646355654109065 ], [ -90.191600798825803, 38.646336475313014 ], [ -90.191456049708108, 38.646046281931255 ], [ -90.191465820115113, 38.646043262597743 ], [ -90.191547261587644, 38.64601809959639 ], [ -90.191628701854995, 38.645992936562436 ], [ -90.191710143217819, 38.645967773447026 ], [ -90.191791584524339, 38.645942609368412 ], [ -90.191873024621927, 38.645917446135911 ], [ -90.191954465811349, 38.645892282849395 ], [ -90.192082419076939, 38.645852748095145 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10364000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.191063626879838, 38.645282138291854 ], [ -90.191145066479564, 38.645256975561324 ], [ -90.191155270409453, 38.64527743352081 ], [ -90.191278358179574, 38.645524203669957 ], [ -90.191288562192199, 38.645544660711082 ], [ -90.191207122315745, 38.645569823539191 ], [ -90.191196918322916, 38.645549366463648 ], [ -90.191073830790046, 38.645302596258283 ], [ -90.191063626879838, 38.645282138291854 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10365000035", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.191234702661092, 38.644978440270336 ], [ -90.19119934136809, 38.644915890836586 ], [ -90.191152630484439, 38.644833266930526 ], [ -90.191216112790642, 38.644819860289374 ], [ -90.191257287722166, 38.644897986827623 ], [ -90.191275014563161, 38.644931621963117 ], [ -90.191267859514326, 38.644933941831042 ], [ -90.191283384907194, 38.644963398292056 ], [ -90.191291012568556, 38.644977872116364 ], [ -90.191298694474639, 38.644975381546828 ], [ -90.191315900614683, 38.645008027937195 ], [ -90.191342270087461, 38.64501896730178 ], [ -90.191270203114129, 38.645041233262788 ], [ -90.191234702661092, 38.644978440270336 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10372000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202492603526792, 38.608329524645193 ], [ -90.202539501082839, 38.608263680338496 ], [ -90.202992571007371, 38.608389815165488 ], [ -90.202958694983707, 38.608459284429557 ], [ -90.202924828165834, 38.608528733001975 ], [ -90.202484418551762, 38.608406122701723 ], [ -90.202445719744034, 38.608395349169086 ], [ -90.202492603526792, 38.608329524645193 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10372000142", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201926465790891, 38.608957403469134 ], [ -90.201988083740204, 38.608890706656105 ], [ -90.202186287740147, 38.609003814114601 ], [ -90.202124669872717, 38.609070511031028 ], [ -90.201926465790891, 38.608957403469134 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10372000225", "numunits (2020)": 4, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201897768876123, 38.608242797036809 ], [ -90.201908971788995, 38.608230731030979 ], [ -90.201960928268292, 38.60826038048846 ], [ -90.202303992829627, 38.608456156805225 ], [ -90.202242309109096, 38.608522815784987 ], [ -90.201847151586321, 38.608297312874818 ], [ -90.201897768876123, 38.608242797036809 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10372000240", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201908971788995, 38.608230731030979 ], [ -90.201957912124413, 38.608178021704035 ], [ -90.202236842263773, 38.608337197218447 ], [ -90.202323408896277, 38.608386597955523 ], [ -90.202352825358489, 38.608403384874244 ], [ -90.202303992829627, 38.608456156805225 ], [ -90.201960928268292, 38.60826038048846 ], [ -90.201908971788995, 38.608230731030979 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10372000250", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201957912124413, 38.608178021704035 ], [ -90.201999640980205, 38.608133078619666 ], [ -90.202361365659868, 38.608339502876966 ], [ -90.202392004316735, 38.608356986555648 ], [ -90.202379275991177, 38.60837480093938 ], [ -90.202377767491654, 38.608376431320956 ], [ -90.202352825358489, 38.608403384874244 ], [ -90.202323408896277, 38.608386597955523 ], [ -90.202236842263773, 38.608337197218447 ], [ -90.201957912124413, 38.608178021704035 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10372008280", "numunits (2020)": 7, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201869983115429, 38.608925170468723 ], [ -90.201603831369994, 38.608773286807548 ], [ -90.201665515894859, 38.60870662817031 ], [ -90.201727200305385, 38.608639969499379 ], [ -90.20176832356367, 38.608595530376796 ], [ -90.202034475007935, 38.608747412761097 ], [ -90.201869983115429, 38.608925170468723 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10373000040", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201504973290326, 38.609637332889392 ], [ -90.201379510265298, 38.609565735705793 ], [ -90.201376679818651, 38.609564120420579 ], [ -90.20136818962699, 38.609559275473565 ], [ -90.201430333133146, 38.609492346978243 ], [ -90.201438824468767, 38.609497192829863 ], [ -90.201441653770118, 38.609498807204524 ], [ -90.201815242744047, 38.609712000089409 ], [ -90.201818073206425, 38.609713615364043 ], [ -90.20182656345014, 38.609718460278522 ], [ -90.20176442011423, 38.609785388982374 ], [ -90.201755929866877, 38.60978054406344 ], [ -90.201753099403291, 38.609778928787321 ], [ -90.201504973290326, 38.609637332889392 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10373000065", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201380684897188, 38.609771189945903 ], [ -90.201422402354567, 38.609726261468303 ], [ -90.201673357926524, 38.609869472814921 ], [ -90.201681849323137, 38.609874317742694 ], [ -90.201640133095708, 38.60991924540874 ], [ -90.201577988265072, 38.609986174007055 ], [ -90.201318541106701, 38.609838117504452 ], [ -90.201324722855389, 38.609831459444159 ], [ -90.201380684897188, 38.609771189945903 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10373000205", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201996490557264, 38.609306949371913 ], [ -90.201998598774054, 38.609304678165351 ], [ -90.202054559849614, 38.60924440742955 ], [ -90.202060741475776, 38.60923774932921 ], [ -90.20219942333263, 38.609316889127669 ], [ -90.202195910420741, 38.609320672054416 ], [ -90.2021351713245, 38.609386089215455 ], [ -90.202126681098775, 38.609381244350644 ], [ -90.201996490557264, 38.609306949371913 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10382000010", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202759932678447, 38.609739134587763 ], [ -90.202822075056488, 38.609672205350968 ], [ -90.203218310753215, 38.609898313925115 ], [ -90.203213212106178, 38.609903805474715 ], [ -90.203156168548915, 38.609965243397902 ], [ -90.203094025081157, 38.610032172806122 ], [ -90.20303188379728, 38.610099101279808 ], [ -90.203023392279377, 38.610094256449727 ], [ -90.20302056177492, 38.610092641204176 ], [ -90.202646967240213, 38.60987945215961 ], [ -90.202644137896797, 38.609877837814004 ], [ -90.202635646438381, 38.609872992049688 ], [ -90.202697790192019, 38.609806062884218 ], [ -90.202759932678447, 38.609739134587763 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10382000020", "numunits (2020)": 8, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202573503713467, 38.609939921183837 ], [ -90.202635646438381, 38.609872992049688 ], [ -90.202644137896797, 38.609877837814004 ], [ -90.202646967240213, 38.60987945215961 ], [ -90.20302056177492, 38.610092641204176 ], [ -90.203023392279377, 38.610094256449727 ], [ -90.20303188379728, 38.610099101279808 ], [ -90.202969740094773, 38.61016603061961 ], [ -90.202961249724609, 38.610161185787966 ], [ -90.202958419218803, 38.610159570568392 ], [ -90.202584824523683, 38.609946381299757 ], [ -90.202581994034901, 38.609944766043611 ], [ -90.202573503713467, 38.609939921183837 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10382000070", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201809947562182, 38.610016150944283 ], [ -90.201850839130799, 38.609972111213168 ], [ -90.201859329403348, 38.609976957031293 ], [ -90.202115466590016, 38.61012312197284 ], [ -90.202074575099715, 38.610167161795644 ], [ -90.202018612171301, 38.61022743252596 ], [ -90.202012429308013, 38.610234089740992 ], [ -90.201747802804391, 38.610083079659425 ], [ -90.201809947562182, 38.610016150944283 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10382000145", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202151381859366, 38.609648425846473 ], [ -90.202182807940247, 38.609614579870069 ], [ -90.202191298189831, 38.60961942566432 ], [ -90.202194128660793, 38.609621040023775 ], [ -90.202419075791283, 38.609749500251766 ], [ -90.202387707425117, 38.60978328517583 ], [ -90.202356989488806, 38.609816368153837 ], [ -90.202131985749617, 38.609687968925563 ], [ -90.20212915528117, 38.609686353658489 ], [ -90.202120665024211, 38.609681508765917 ], [ -90.202151381859366, 38.609648425846473 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10382000200", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20255644604201, 38.610339749976227 ], [ -90.202494746594638, 38.610304541067606 ], [ -90.202556889705349, 38.610237612887033 ], [ -90.202584820215947, 38.610207531773732 ], [ -90.202423450751752, 38.610115519816638 ], [ -90.202414956969903, 38.610110676749066 ], [ -90.202511359728419, 38.610006850308388 ], [ -90.202519851201515, 38.61001169514806 ], [ -90.202522680543638, 38.610013310402749 ], [ -90.20289627539583, 38.610226499868027 ], [ -90.202899105902731, 38.610228115116549 ], [ -90.202907597428037, 38.610232959928098 ], [ -90.20272511763072, 38.610429491947663 ], [ -90.202716627242566, 38.610424647125875 ], [ -90.202571179725012, 38.610341648518769 ], [ -90.20256722967639, 38.610345903332728 ], [ -90.20255644604201, 38.610339749976227 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10382000210", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202431394339428, 38.610473171056121 ], [ -90.202437613838427, 38.610466534671104 ], [ -90.202493920246781, 38.610406461000274 ], [ -90.20255644604201, 38.610339749976227 ], [ -90.20256722967639, 38.610345903332728 ], [ -90.202571179725012, 38.610341648518769 ], [ -90.202716627242566, 38.610424647125875 ], [ -90.20272511763072, 38.610429491947663 ], [ -90.202596880064235, 38.610567605073008 ], [ -90.202431394339428, 38.610473171056121 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10382000220", "numunits (2020)": 2, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202200642664778, 38.610341493507356 ], [ -90.202407789228133, 38.610118397234132 ], [ -90.202414956969903, 38.610110676749066 ], [ -90.202423450751752, 38.610115519816638 ], [ -90.202584820215947, 38.610207531773732 ], [ -90.202556889705349, 38.610237612887033 ], [ -90.202494746594638, 38.610304541067606 ], [ -90.20255644604201, 38.610339749976227 ], [ -90.202493920246781, 38.610406461000274 ], [ -90.202437613838427, 38.610466534671104 ], [ -90.202431394339428, 38.610473171056121 ], [ -90.202200642664778, 38.610341493507356 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10382008810", "numunits (2020)": 6, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20199637769754, 38.609815365573397 ], [ -90.20205852084122, 38.609748437624646 ], [ -90.202120665024211, 38.609681508765917 ], [ -90.20212915528117, 38.609686353658489 ], [ -90.202131985749617, 38.609687968925563 ], [ -90.202356989488806, 38.609816368153837 ], [ -90.202505577760903, 38.609901159611418 ], [ -90.20250840710213, 38.60990277396035 ], [ -90.202516898555416, 38.609907619733882 ], [ -90.202392611572819, 38.610041476958436 ], [ -90.202384121252848, 38.610036632085006 ], [ -90.202381290765061, 38.610035016824057 ], [ -90.20200769843629, 38.609821825717511 ], [ -90.202004869109558, 38.609820211356528 ], [ -90.20199637769754, 38.609815365573397 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10383000090", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203605123864733, 38.608828830352039 ], [ -90.203646337723512, 38.608784441240523 ], [ -90.204042571161011, 38.609010547982336 ], [ -90.204001358566742, 38.609054936328889 ], [ -90.203605123864733, 38.608828830352039 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10383000135", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20331663348648, 38.60913954832224 ], [ -90.203360279933278, 38.609092540254267 ], [ -90.203407179200482, 38.609119303383174 ], [ -90.203378238040443, 38.609150474911338 ], [ -90.203536062165924, 38.609240535174116 ], [ -90.203583177543649, 38.609189789912172 ], [ -90.203774688383689, 38.609299073325275 ], [ -90.203712868979153, 38.609365655267155 ], [ -90.20331663348648, 38.60913954832224 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10383000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203205652895804, 38.609585513256881 ], [ -90.203240699733229, 38.609547767170135 ], [ -90.203438803174009, 38.609660837125311 ], [ -90.203421287281969, 38.609679701651125 ], [ -90.20340377137704, 38.609698567080393 ], [ -90.203341951282297, 38.60976514969785 ], [ -90.203341018858652, 38.609764617628812 ], [ -90.203143832720087, 38.609652094864494 ], [ -90.203205652895804, 38.609585513256881 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10383000184", "numunits (2020)": 3, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203240699733229, 38.609547767170135 ], [ -90.203181768193119, 38.609514117849827 ], [ -90.203264221395699, 38.609425312060544 ], [ -90.203460361280179, 38.609537236478168 ], [ -90.203452649019141, 38.609566597684982 ], [ -90.203500793773955, 38.609594070195435 ], [ -90.203465591357343, 38.609631984429043 ], [ -90.203438803174009, 38.609660837125311 ], [ -90.203240699733229, 38.609547767170135 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10384000013", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204836056520833, 38.609060609556245 ], [ -90.204867943676362, 38.608996168924094 ], [ -90.204923081908603, 38.609011590101332 ], [ -90.204929290954198, 38.609013326397609 ], [ -90.204897464048798, 38.609077645581166 ], [ -90.204836056520833, 38.609060609556245 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10384000030", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204950239786484, 38.609250075814728 ], [ -90.205012060258866, 38.609183490527847 ], [ -90.205024444696633, 38.609190432351497 ], [ -90.205202860605752, 38.609290435630534 ], [ -90.205171950421857, 38.609323728794955 ], [ -90.205141040216645, 38.609357021017338 ], [ -90.204950239786484, 38.609250075814728 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10384000140", "numunits (2020)": 10, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204533962028393, 38.608650203357499 ], [ -90.204592913499582, 38.608520934443 ], [ -90.204886294002094, 38.608602986976109 ], [ -90.204827341836619, 38.608732256941629 ], [ -90.204533962028393, 38.608650203357499 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10384000200", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205257542281458, 38.609071206444909 ], [ -90.205404919335237, 38.608748033654656 ], [ -90.205503439331864, 38.608775587511346 ], [ -90.205357129237584, 38.609099058616167 ], [ -90.205257542281458, 38.609071206444909 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10385000010", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204516198263946, 38.609512976742764 ], [ -90.204578019370118, 38.609446390811875 ], [ -90.204902665271348, 38.609628357481519 ], [ -90.204840844313964, 38.609694942703747 ], [ -90.204825388477346, 38.609711590128384 ], [ -90.20480260584138, 38.609698820449815 ], [ -90.204523526079342, 38.609542392080279 ], [ -90.204500743546959, 38.60952962322164 ], [ -90.204516198263946, 38.609512976742764 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10386000025", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203649722068761, 38.610446214532871 ], [ -90.203711867692235, 38.610379282120988 ], [ -90.203720410040248, 38.610384070271138 ], [ -90.203723257871218, 38.610385666624062 ], [ -90.20402512304814, 38.610554865815587 ], [ -90.204027970896149, 38.610556462161099 ], [ -90.204036514430399, 38.610561251197247 ], [ -90.203974368952913, 38.610628183752581 ], [ -90.203965825407693, 38.610623395618077 ], [ -90.203962977565567, 38.610621798392387 ], [ -90.203661113404223, 38.610452599017393 ], [ -90.203658265571903, 38.610451002690432 ], [ -90.203649722068761, 38.610446214532871 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10387050300", "numunits (2020)": 8, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20225248517626, 38.611315890705839 ], [ -90.202269036002619, 38.611298173436644 ], [ -90.202417028214953, 38.61138092749389 ], [ -90.202414959219553, 38.61138314202104 ], [ -90.202436570180055, 38.611395226339219 ], [ -90.202395984885428, 38.611438670654941 ], [ -90.202398833891124, 38.611440263445665 ], [ -90.20242163510153, 38.611453013837682 ], [ -90.202252447512194, 38.611634118597422 ], [ -90.202235895456184, 38.611651835860023 ], [ -90.20223992878266, 38.611654137933016 ], [ -90.202223376718948, 38.611671855193741 ], [ -90.202177859645104, 38.611720578742641 ], [ -90.202132407103093, 38.611769231262926 ], [ -90.202115854986431, 38.611786948507934 ], [ -90.201917903236435, 38.611674053323142 ], [ -90.201934448525279, 38.611656327081946 ], [ -90.201979935732552, 38.611607635980825 ], [ -90.201995590581831, 38.611590878646112 ], [ -90.202012141538461, 38.611573160508463 ], [ -90.2020254528679, 38.611558912508215 ], [ -90.202042001517754, 38.611541193454215 ], [ -90.20205855703189, 38.611523478039842 ], [ -90.20225248517626, 38.611315890705839 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10387060022", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202452589175422, 38.61110168994125 ], [ -90.202477430825326, 38.611075099162889 ], [ -90.20258575792657, 38.611135675366334 ], [ -90.202671256542416, 38.611183485738451 ], [ -90.202756754124309, 38.611231295139092 ], [ -90.202819454028884, 38.611266356015271 ], [ -90.202794614745073, 38.611292945059169 ], [ -90.202778061745548, 38.611310664182206 ], [ -90.202715361815592, 38.611275604190162 ], [ -90.202629863061134, 38.611227794756616 ], [ -90.202544364416923, 38.611179985233193 ], [ -90.202436036136376, 38.611119409016318 ], [ -90.202452589175422, 38.61110168994125 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10387060050", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202839517822937, 38.611142701295165 ], [ -90.202754020290854, 38.611094891020855 ], [ -90.202668522875825, 38.611047080711607 ], [ -90.202560195837322, 38.610986503705419 ], [ -90.202609850136625, 38.610933350882469 ], [ -90.202951870720426, 38.61112461003632 ], [ -90.202902216543507, 38.611177762097014 ], [ -90.202839517822937, 38.611142701295165 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10387060051", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202609850136625, 38.610933350882469 ], [ -90.202651228470728, 38.610889057152811 ], [ -90.202993248955678, 38.611080316186772 ], [ -90.202951870720426, 38.61112461003632 ], [ -90.202609850136625, 38.610933350882469 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10389000010", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200943741937152, 38.612829221201316 ], [ -90.201279787362296, 38.612708732965508 ], [ -90.201387145011367, 38.612593437320811 ], [ -90.201450416446463, 38.612629523750286 ], [ -90.201473063314779, 38.612642440582007 ], [ -90.201782425851405, 38.612818880674958 ], [ -90.201872354579834, 38.612870036184447 ], [ -90.201895022358656, 38.612882930470754 ], [ -90.201598484017182, 38.613202645916402 ], [ -90.200943741937152, 38.612829221201316 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10392050051", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203414290293537, 38.612322655453085 ], [ -90.203614824260882, 38.612106211509705 ], [ -90.203835530381298, 38.61223117813136 ], [ -90.20363464611863, 38.612447999951812 ], [ -90.203625093455727, 38.612442566017599 ], [ -90.203414290293537, 38.612322655453085 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10395000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205786519059899, 38.609602337040364 ], [ -90.205824304628734, 38.609561638534537 ], [ -90.205835972997377, 38.60954907062591 ], [ -90.206160410370785, 38.609731262130097 ], [ -90.206138851952957, 38.609754483559009 ], [ -90.206110956539163, 38.609784529586598 ], [ -90.205786519059899, 38.609602337040364 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10395000100", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205269625972335, 38.609534171930051 ], [ -90.205331444092977, 38.609467588283962 ], [ -90.205655073714439, 38.60965064673492 ], [ -90.205593255733618, 38.609717230550466 ], [ -90.205269625972335, 38.609534171930051 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10395000150", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205529040115039, 38.609254759657226 ], [ -90.205564155196285, 38.609177126192357 ], [ -90.205956298276718, 38.609286387156082 ], [ -90.205921184714867, 38.609364019807927 ], [ -90.205529040115039, 38.609254759657226 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10395000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20609239654074, 38.609156758319742 ], [ -90.206180181310302, 38.608962675120189 ], [ -90.206279115189886, 38.608990240177683 ], [ -90.206191330652231, 38.609184323451458 ], [ -90.20609239654074, 38.609156758319742 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10396000010", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20658852300302, 38.60954995271333 ], [ -90.206575266324975, 38.609546259270232 ], [ -90.206610379273485, 38.609468626422171 ], [ -90.206811522005268, 38.609524667467895 ], [ -90.207009394173525, 38.609579796467592 ], [ -90.20697427471552, 38.609657428539464 ], [ -90.20658852300302, 38.60954995271333 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10399060031", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204674999306775, 38.612381406688137 ], [ -90.20477641118255, 38.612269519046485 ], [ -90.204840507724441, 38.612305503023272 ], [ -90.204737615799075, 38.612416560013102 ], [ -90.204674999306775, 38.612381406688137 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10399060032", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204622934840273, 38.612352177095779 ], [ -90.204741382931289, 38.612222840663982 ], [ -90.2047529029023, 38.612229308263267 ], [ -90.204736565538752, 38.612247148034541 ], [ -90.20477641118255, 38.612269519046485 ], [ -90.204674999306775, 38.612381406688137 ], [ -90.204622934840273, 38.612352177095779 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10399060033", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204571704398788, 38.612323415339482 ], [ -90.2046901513894, 38.6121940789562 ], [ -90.204741382931289, 38.612222840663982 ], [ -90.204622934840273, 38.612352177095779 ], [ -90.204571704398788, 38.612323415339482 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10399060034", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204520474001754, 38.612294653560788 ], [ -90.204638921032881, 38.612165317228921 ], [ -90.2046901513894, 38.6121940789562 ], [ -90.204571704398788, 38.612323415339482 ], [ -90.204520474001754, 38.612294653560788 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10399060035", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204469242494426, 38.612265891729322 ], [ -90.204540108720067, 38.612188510727869 ], [ -90.204587689569536, 38.612136555448856 ], [ -90.204638921032881, 38.612165317228921 ], [ -90.204520474001754, 38.612294653560788 ], [ -90.204469242494426, 38.612265891729322 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10399060036", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204406029421833, 38.612230402553898 ], [ -90.204525383848534, 38.61210157581661 ], [ -90.204587689569536, 38.612136555448856 ], [ -90.204540108720067, 38.612188510727869 ], [ -90.204469242494426, 38.612265891729322 ], [ -90.204406029421833, 38.612230402553898 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10404000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20610061180372, 38.612136768506666 ], [ -90.206141827191246, 38.612092376760486 ], [ -90.206153207474458, 38.612098773604814 ], [ -90.206397878275212, 38.612236311380038 ], [ -90.206409257448698, 38.612242710008914 ], [ -90.20638836840233, 38.612265208829093 ], [ -90.20636747819114, 38.612287709454804 ], [ -90.206363922681319, 38.612291538364985 ], [ -90.206352542348966, 38.612285141541157 ], [ -90.206107871470252, 38.612147603644537 ], [ -90.206096492335007, 38.612141205892534 ], [ -90.20610061180372, 38.612136768506666 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10404000100", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205853329940297, 38.612403106202706 ], [ -90.205911028207296, 38.612340961446186 ], [ -90.205922384289522, 38.612347384365776 ], [ -90.20616653882422, 38.612485478994429 ], [ -90.206177893796806, 38.612491903698675 ], [ -90.206149045882995, 38.61252297436387 ], [ -90.206120087954872, 38.612553987054923 ], [ -90.205853329940297, 38.612403106202706 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10404008051", "numunits (2020)": 4, "numunits (2018)": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206141827191246, 38.612092376760486 ], [ -90.20621454735435, 38.612014051625891 ], [ -90.206225929938455, 38.612020445778015 ], [ -90.206470657117123, 38.612157924094653 ], [ -90.206482039746774, 38.612164318221886 ], [ -90.206409257448698, 38.612242710008914 ], [ -90.206397878275212, 38.612236311380038 ], [ -90.206153207474458, 38.612098773604814 ], [ -90.206141827191246, 38.612092376760486 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10404008061", "numunits (2020)": 4, "numunits (2018)": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205535427646154, 38.612120594747488 ], [ -90.205601368398717, 38.612049573632305 ], [ -90.205612723259364, 38.612055996606564 ], [ -90.205913655348866, 38.612226208359928 ], [ -90.2059250114132, 38.612232631306782 ], [ -90.20585907195769, 38.61230365260559 ], [ -90.205847715891835, 38.612297228746243 ], [ -90.205546783659926, 38.61212701773097 ], [ -90.205535427646154, 38.612120594747488 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10404008091", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205911028207296, 38.612340961446186 ], [ -90.205951890929384, 38.61229694993618 ], [ -90.205963271227802, 38.612303346798825 ], [ -90.206207942355491, 38.612440884995131 ], [ -90.206219322692249, 38.612447282739019 ], [ -90.206177893796806, 38.612491903698675 ], [ -90.20616653882422, 38.612485478994429 ], [ -90.205922384289522, 38.612347384365776 ], [ -90.205911028207296, 38.612340961446186 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10404008101", "numunits (2020)": 6, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205535427646154, 38.612120594747488 ], [ -90.205546783659926, 38.61212701773097 ], [ -90.205847715891835, 38.612297228746243 ], [ -90.20585907195769, 38.61230365260559 ], [ -90.205796444147197, 38.61237093085898 ], [ -90.205472906228508, 38.612187933451466 ], [ -90.205535427646154, 38.612120594747488 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10405000035", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20701499064613, 38.611333789093635 ], [ -90.207076809866066, 38.611267203642242 ], [ -90.207232952140743, 38.611355517777682 ], [ -90.207216562376004, 38.611373171293366 ], [ -90.207171132988265, 38.611422103310822 ], [ -90.20701499064613, 38.611333789093635 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10409000017", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207086404245032, 38.612467672095228 ], [ -90.207125910096082, 38.61242512162665 ], [ -90.207168241021648, 38.612448698918314 ], [ -90.207216384893385, 38.612475514027587 ], [ -90.207274317060381, 38.612507780476115 ], [ -90.207479805508953, 38.612622232193132 ], [ -90.207440299760933, 38.612664782752674 ], [ -90.20723548144359, 38.612550704708383 ], [ -90.207086404245032, 38.612467672095228 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10409000019", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207044507650707, 38.612512797608744 ], [ -90.2070732963588, 38.612481789648172 ], [ -90.207086404245032, 38.612467672095228 ], [ -90.20723548144359, 38.612550704708383 ], [ -90.207440299760933, 38.612664782752674 ], [ -90.20739840441999, 38.612709907515999 ], [ -90.207194294038331, 38.612596224845227 ], [ -90.207044507650707, 38.612512797608744 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10409000030", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207163913932504, 38.612816360419338 ], [ -90.207045530674264, 38.612747996845073 ], [ -90.206902712263201, 38.612665521926523 ], [ -90.206960530928924, 38.612603247237821 ], [ -90.207314426761641, 38.612800357393979 ], [ -90.207252222401067, 38.612867356378089 ], [ -90.207163913932504, 38.612816360419338 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10409000060", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206714892446911, 38.612382806674887 ], [ -90.206776715156295, 38.612316218685656 ], [ -90.2070732963588, 38.612481789648172 ], [ -90.207044507650707, 38.612512797608744 ], [ -90.207037899492931, 38.612519915257444 ], [ -90.207011473779588, 38.612548377765279 ], [ -90.206714892446911, 38.612382806674887 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10409000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206936975986835, 38.61214360571784 ], [ -90.206945219419964, 38.61213472820679 ], [ -90.207131137167906, 38.612231378812396 ], [ -90.207151302517033, 38.612242591990331 ], [ -90.207143059089631, 38.61225147042191 ], [ -90.207123813653908, 38.612272199638845 ], [ -90.207220821515037, 38.612322893900277 ], [ -90.2072033071058, 38.612341758987888 ], [ -90.206901408538116, 38.612181914646499 ], [ -90.206906323700196, 38.612176620680394 ], [ -90.206936975986835, 38.61214360571784 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10409000160", "numunits (2020)": 1, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207125910096082, 38.61242512162665 ], [ -90.207130998247138, 38.612419640701461 ], [ -90.207133922895295, 38.612416491291469 ], [ -90.207136047185998, 38.612414202926459 ], [ -90.207160981645288, 38.61238734742475 ], [ -90.2072033071058, 38.612341758987888 ], [ -90.207220821515037, 38.612322893900277 ], [ -90.207318701117202, 38.612217469915763 ], [ -90.207326944515643, 38.612208591471656 ], [ -90.207371328511243, 38.61223327107254 ], [ -90.207375954563005, 38.612235843819114 ], [ -90.207339110660868, 38.612275527160598 ], [ -90.207335997981716, 38.612273796894627 ], [ -90.207299895572305, 38.612312682076485 ], [ -90.207295584562075, 38.612310284889283 ], [ -90.207168241021648, 38.612448698918314 ], [ -90.207125910096082, 38.61242512162665 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10409000170", "numunits (2020)": 1, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207168241021648, 38.612448698918314 ], [ -90.207295584562075, 38.612310284889283 ], [ -90.207299895572305, 38.612312682076485 ], [ -90.207335997981716, 38.612273796894627 ], [ -90.207339110660868, 38.612275527160598 ], [ -90.207375954563005, 38.612235843819114 ], [ -90.207425466436959, 38.612263374870331 ], [ -90.207375928758921, 38.612316730909839 ], [ -90.207369589979862, 38.612313206172374 ], [ -90.207346943666494, 38.612337598047347 ], [ -90.207344915896698, 38.612336470493844 ], [ -90.207216384893385, 38.612475514027587 ], [ -90.207168241021648, 38.612448698918314 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10409000180", "numunits (2020)": 1, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207216384893385, 38.612475514027587 ], [ -90.207344915896698, 38.612336470493844 ], [ -90.207346943666494, 38.612337598047347 ], [ -90.207369589979862, 38.612313206172374 ], [ -90.207375928758921, 38.612316730909839 ], [ -90.207425466436959, 38.612263374870331 ], [ -90.207475435454654, 38.612291160184597 ], [ -90.207409495168363, 38.612362183262462 ], [ -90.207345641953054, 38.612431002524552 ], [ -90.207274317060381, 38.612507780476115 ], [ -90.207216384893385, 38.612475514027587 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10434008011", "numunits (2020)": 340, "numunits (2018)": 356 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.196967563164662, 38.623557068854737 ], [ -90.19713096350803, 38.623154990526892 ], [ -90.197534339023377, 38.62325572664205 ], [ -90.197530352050478, 38.623265537825858 ], [ -90.197552236993445, 38.623270988712854 ], [ -90.197577256032915, 38.623277228711906 ], [ -90.197407158480331, 38.623695667624986 ], [ -90.197406088149506, 38.623695400024602 ], [ -90.197382189821823, 38.623689432222925 ], [ -90.197189602635788, 38.623641336606092 ], [ -90.196990283999071, 38.623591560274093 ], [ -90.196956930603505, 38.623583231086869 ], [ -90.196967563164662, 38.623557068854737 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10435000050", "numunits (2020)": 165, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197189253665428, 38.624231992833188 ], [ -90.197344398295897, 38.623850230446138 ], [ -90.197369425660298, 38.623856445303282 ], [ -90.197416073206782, 38.623868029270966 ], [ -90.197975731403332, 38.624007004526675 ], [ -90.197820196010383, 38.624389556791805 ], [ -90.197812218576985, 38.624409176502432 ], [ -90.197778864706777, 38.624400847548792 ], [ -90.19746200219889, 38.624321718621772 ], [ -90.197257134767995, 38.624270557284987 ], [ -90.197181279518787, 38.624251613388267 ], [ -90.197184908036775, 38.62424268503657 ], [ -90.197189253665428, 38.624231992833188 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10463040045", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198483879796882, 38.614848096081374 ], [ -90.19850434121976, 38.614794859308006 ], [ -90.198913209140599, 38.614877895203328 ], [ -90.198892757171421, 38.614931133884376 ], [ -90.198483879796882, 38.614848096081374 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10464040121", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198847416977287, 38.613910963977069 ], [ -90.198856810222338, 38.613899458227813 ], [ -90.198867951717176, 38.613888956642825 ], [ -90.198880669007863, 38.613879621770508 ], [ -90.198894765249918, 38.613871598100204 ], [ -90.198910022254978, 38.613865009825886 ], [ -90.198922943993182, 38.613860828456005 ], [ -90.198936332791604, 38.613857678962567 ], [ -90.198950055164886, 38.613855592745779 ], [ -90.198963974301989, 38.613854590605101 ], [ -90.19897795716598, 38.613854685374022 ], [ -90.19899185822517, 38.613855874125221 ], [ -90.199005538786196, 38.613858144998296 ], [ -90.199018862355601, 38.613861475336357 ], [ -90.199274774882326, 38.613936681095446 ], [ -90.199253362287266, 38.613992422759125 ], [ -90.199248173394409, 38.614005929985581 ], [ -90.198847416977287, 38.613910963977069 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10464040122", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198827529305319, 38.613953951115171 ], [ -90.198835725975187, 38.613932624700027 ], [ -90.198841561252181, 38.613920254254111 ], [ -90.198847416977287, 38.613910963977069 ], [ -90.199248173394409, 38.614005929985581 ], [ -90.199243894582324, 38.614017068419805 ], [ -90.199231377379263, 38.614049652115703 ], [ -90.19886161668191, 38.6139620293918 ], [ -90.198827529305319, 38.613953951115171 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10464040123", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198810625171831, 38.613997934153758 ], [ -90.198827529305319, 38.613953951115171 ], [ -90.19886161668191, 38.6139620293918 ], [ -90.199231377379263, 38.614049652115703 ], [ -90.199214481504342, 38.614093636139543 ], [ -90.198810625171831, 38.613997934153758 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10464040124", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.1987938220134, 38.614041654390171 ], [ -90.198810625171831, 38.613997934153758 ], [ -90.199214481504342, 38.614093636139543 ], [ -90.199197685447999, 38.614137358264024 ], [ -90.1987938220134, 38.614041654390171 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10464040125", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198764985535803, 38.61411668477551 ], [ -90.198779171026203, 38.614079776643486 ], [ -90.1987938220134, 38.614041654390171 ], [ -90.199197685447999, 38.614137358264024 ], [ -90.199168861971003, 38.614212391472478 ], [ -90.198764985535803, 38.61411668477551 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10464040130", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198745009731795, 38.614168659809636 ], [ -90.198764985535803, 38.61411668477551 ], [ -90.199168861971003, 38.614212391472478 ], [ -90.199166008644184, 38.614219818280993 ], [ -90.199148894462439, 38.614264368408648 ], [ -90.198745009731795, 38.614168659809636 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10464040140", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198727832698609, 38.614213352941299 ], [ -90.198745009731795, 38.614168659809636 ], [ -90.199148894462439, 38.614264368408648 ], [ -90.19913172568431, 38.614309063405152 ], [ -90.198727832698609, 38.614213352941299 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10464040150", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198710655643964, 38.614258046069999 ], [ -90.198727832698609, 38.614213352941299 ], [ -90.19913172568431, 38.614309063405152 ], [ -90.199114555740209, 38.614353758423242 ], [ -90.198710655643964, 38.614258046069999 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10464040160", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198686002686699, 38.614322192704897 ], [ -90.198710655643964, 38.614258046069999 ], [ -90.199114555740209, 38.614353758423242 ], [ -90.1991101329412, 38.614365272151197 ], [ -90.199094791284224, 38.614405209752327 ], [ -90.198686002686699, 38.614322192704897 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10465030225", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199955866213671, 38.61397045577629 ], [ -90.200071513595844, 38.613669396011126 ], [ -90.200104417643573, 38.613679014134455 ], [ -90.200153669939482, 38.613693411724626 ], [ -90.200039314806844, 38.613991111842275 ], [ -90.199989288088005, 38.613978728412185 ], [ -90.199955866213671, 38.61397045577629 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10465030235", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200039314806844, 38.613991111842275 ], [ -90.200153669939482, 38.613693411724626 ], [ -90.200186514366749, 38.613703013444336 ], [ -90.200235827482388, 38.613717428289625 ], [ -90.200122762303636, 38.61401176787335 ], [ -90.20007267475772, 38.61399936990761 ], [ -90.200039314806844, 38.613991111842275 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10475000176", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203192009319977, 38.616181468091 ], [ -90.203271202926373, 38.61609639915384 ], [ -90.203669158434508, 38.616324229290022 ], [ -90.203608650147331, 38.616419570701709 ], [ -90.203192009319977, 38.616181468091 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10482030082", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208637290228481, 38.618961877670422 ], [ -90.209079312728207, 38.619052201583244 ], [ -90.209056381200099, 38.619118485230985 ], [ -90.209047626606463, 38.619143791984918 ], [ -90.208606841130035, 38.619049286392332 ], [ -90.208614212632341, 38.61902812481592 ], [ -90.208637290228481, 38.618961877670422 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10482090025", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210198877529635, 38.618670458509605 ], [ -90.210412234060868, 38.618721203740506 ], [ -90.210390152492621, 38.618784047450021 ], [ -90.209959137814437, 38.618700561842232 ], [ -90.209987367174932, 38.618620151685775 ], [ -90.210152386480885, 38.618659400722834 ], [ -90.210198877529635, 38.618670458509605 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10482090215", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209020673847377, 38.620097198114784 ], [ -90.2091360595022, 38.619766114165223 ], [ -90.209163100420739, 38.619771815258225 ], [ -90.209335456560723, 38.619808150317134 ], [ -90.209304043852455, 38.619898284748061 ], [ -90.209291415161104, 38.619908665023296 ], [ -90.209273745666295, 38.619925086531985 ], [ -90.209257712457514, 38.619942510865869 ], [ -90.209243407659457, 38.619960837908238 ], [ -90.209230913466044, 38.619979962355572 ], [ -90.209220301667912, 38.619999774322459 ], [ -90.209211633240002, 38.620020159973151 ], [ -90.209204957991176, 38.620041002175455 ], [ -90.209174099171165, 38.620129547837543 ], [ -90.209047713714526, 38.620102903734953 ], [ -90.209020673847377, 38.620097198114784 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10482090260", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209728989981784, 38.619149309120886 ], [ -90.209297437861537, 38.619055783889429 ], [ -90.209320569310748, 38.618989411500991 ], [ -90.20933331593983, 38.618952834597863 ], [ -90.209696790062338, 38.619030180898591 ], [ -90.20969807933524, 38.61903053904858 ], [ -90.209705078540196, 38.619032204056232 ], [ -90.209765645029776, 38.619044899475391 ], [ -90.209752231772967, 38.619083105381904 ], [ -90.209728989981784, 38.619149309120886 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10483030130", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20933890009438, 38.617952018374233 ], [ -90.209279390833558, 38.617937092073163 ], [ -90.209219316056476, 38.617922023778817 ], [ -90.209158605790876, 38.617906795331329 ], [ -90.209096631397642, 38.6178912501938 ], [ -90.209023091544111, 38.617872804373157 ], [ -90.20906892596571, 38.61774030725352 ], [ -90.209496386004787, 38.617846526651405 ], [ -90.209450232813666, 38.617979943852397 ], [ -90.20933890009438, 38.617952018374233 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10483030134", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209153463018794, 38.61749592834046 ], [ -90.209181641903115, 38.617414469601776 ], [ -90.209608780680853, 38.617521612976923 ], [ -90.209580603387735, 38.617603070942828 ], [ -90.209153463018794, 38.61749592834046 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10483040180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210103707804052, 38.618269735999519 ], [ -90.210111140953614, 38.618248249251849 ], [ -90.210542918809836, 38.618341527028605 ], [ -90.210535383365325, 38.61836306759097 ], [ -90.210527930392274, 38.618384371411402 ], [ -90.210096308332638, 38.618291127326991 ], [ -90.210103707804052, 38.618269735999519 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10483040261", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209695016865524, 38.617901358332496 ], [ -90.209719855100872, 38.617829558603241 ], [ -90.210151641074816, 38.617921493723401 ], [ -90.210144843470587, 38.617941142420342 ], [ -90.21012680323706, 38.617993293517237 ], [ -90.209695016865524, 38.617901358332496 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10483040266", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209719855100872, 38.617829558603241 ], [ -90.209720786870633, 38.617826864558872 ], [ -90.209737746869862, 38.617777838720968 ], [ -90.209743763843136, 38.617760445751145 ], [ -90.210175549434553, 38.617852380755252 ], [ -90.210151641074816, 38.617921493723401 ], [ -90.209719855100872, 38.617829558603241 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10483040275", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209743763843136, 38.617760445751145 ], [ -90.209789600333806, 38.617627943846657 ], [ -90.210221385188035, 38.617719878708357 ], [ -90.210213070329459, 38.617743916382764 ], [ -90.210175549434553, 38.617852380755252 ], [ -90.209743763843136, 38.617760445751145 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10483040285", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20981251793603, 38.617561693337997 ], [ -90.209823976722916, 38.617528568095359 ], [ -90.210255762182257, 38.617620501898898 ], [ -90.210244303578648, 38.617653627211446 ], [ -90.210221385188035, 38.617719878708357 ], [ -90.209789600333806, 38.617627943846657 ], [ -90.20981251793603, 38.617561693337997 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10483040331", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209904190237083, 38.617296689470223 ], [ -90.209961223384738, 38.617131819237756 ], [ -90.209963776979649, 38.617124437339939 ], [ -90.210395560197938, 38.617216371559003 ], [ -90.210380995167, 38.617258477364018 ], [ -90.210351736106205, 38.617343059814317 ], [ -90.210335974409062, 38.617388623882647 ], [ -90.209904190237083, 38.617296689470223 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10484000033", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212371782814287, 38.618044328163087 ], [ -90.212503073057846, 38.617724236289583 ], [ -90.212628063282253, 38.617755650671569 ], [ -90.212496945145958, 38.618075325095482 ], [ -90.212371782814287, 38.618044328163087 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10484000043", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212246618294955, 38.618013331118881 ], [ -90.21237808065068, 38.617692820890056 ], [ -90.212503073057846, 38.617724236289583 ], [ -90.212371782814287, 38.618044328163087 ], [ -90.212246618294955, 38.618013331118881 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10484000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211650054538183, 38.617452169426905 ], [ -90.211782803557725, 38.617074099861235 ], [ -90.211848698728744, 38.617093226119714 ], [ -90.211717117712709, 38.617469025643054 ], [ -90.211681198340969, 38.617459997079898 ], [ -90.211650054538183, 38.617452169426905 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10484000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211717117712709, 38.617469025643054 ], [ -90.211848698728744, 38.617093226119714 ], [ -90.211905184263372, 38.617109621165476 ], [ -90.211914595083087, 38.617112352316511 ], [ -90.211783839071032, 38.617485795419555 ], [ -90.211717117712709, 38.617469025643054 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10484000200", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212136082881031, 38.617574328974811 ], [ -90.212262543494774, 38.617213345048427 ], [ -90.2123528130805, 38.617239545892694 ], [ -90.212188704840145, 38.617587555025423 ], [ -90.212162393856403, 38.617580942003087 ], [ -90.212136082881031, 38.617574328974811 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10484000210", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212188704840145, 38.617587555025423 ], [ -90.2123528130805, 38.617239545892694 ], [ -90.212429346661153, 38.617261759975101 ], [ -90.212505359571608, 38.61728382228474 ], [ -90.21234375457442, 38.617626526097013 ], [ -90.212266494103233, 38.617607107465858 ], [ -90.212188704840145, 38.617587555025423 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10484000220", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212421015090953, 38.617645944704691 ], [ -90.212581372528859, 38.617305884545118 ], [ -90.212656278704557, 38.617327626017513 ], [ -90.212709266356342, 38.61734300494642 ], [ -90.212551006726159, 38.617678614623614 ], [ -90.212497149146429, 38.617665079433074 ], [ -90.212421015090953, 38.617645944704691 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10484000230", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212551006726159, 38.617678614623614 ], [ -90.212709266356342, 38.61734300494642 ], [ -90.212731184929211, 38.617349366563346 ], [ -90.212806090054954, 38.617371107031069 ], [ -90.212880996366934, 38.617392848387325 ], [ -90.212725553853133, 38.61772248511204 ], [ -90.212649419675472, 38.61770335053199 ], [ -90.212573284390643, 38.617684214993531 ], [ -90.212551006726159, 38.617678614623614 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10484000250", "numunits (2020)": 1, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212813107775389, 38.617717405562203 ], [ -90.212955902724502, 38.617414589668265 ], [ -90.213030807986556, 38.617436330019849 ], [ -90.213128511662404, 38.617464687132696 ], [ -90.213226988474787, 38.617493269513453 ], [ -90.213170863473906, 38.617655939988431 ], [ -90.213051131536986, 38.617628784921791 ], [ -90.213002059632444, 38.61761765529085 ], [ -90.212986044979246, 38.617614023443167 ], [ -90.212978689401425, 38.617630094422253 ], [ -90.212943805340501, 38.617620831831474 ], [ -90.212926993636685, 38.617616368296225 ], [ -90.212876200648807, 38.617602881298488 ], [ -90.212809814497902, 38.61774366379484 ], [ -90.212801689219532, 38.617741620524143 ], [ -90.212813107775389, 38.617717405562203 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10484008401", "numunits (2020)": 6, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211738510449578, 38.617887494463787 ], [ -90.211785546014724, 38.617753456898122 ], [ -90.211853122685241, 38.617560877782587 ], [ -90.212117265941245, 38.617627267682764 ], [ -90.212002968403155, 38.61795298989562 ], [ -90.211738510449578, 38.617887494463787 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10485000280", "numunits (2020)": 30, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212819883137698, 38.618680083457519 ], [ -90.212702319705613, 38.61865096940781 ], [ -90.212618655627494, 38.618630249742324 ], [ -90.212534991594197, 38.618609530044566 ], [ -90.212451327612996, 38.618588810259681 ], [ -90.212367664824598, 38.618568091351456 ], [ -90.212284785606528, 38.618547566186741 ], [ -90.212201907587669, 38.618527040938787 ], [ -90.212113655077516, 38.618505185385395 ], [ -90.212017316163198, 38.618481327092795 ], [ -90.211928484442652, 38.618459327631804 ], [ -90.21205867721558, 38.618139556098875 ], [ -90.212147508582788, 38.618161555460908 ], [ -90.212243847113939, 38.618185413646117 ], [ -90.212334867404323, 38.618207955163037 ], [ -90.212417745098733, 38.618228480289254 ], [ -90.212500623985122, 38.618249005387106 ], [ -90.212583805775381, 38.618269605911031 ], [ -90.212666988757988, 38.618290206406193 ], [ -90.212750170647681, 38.618310805905914 ], [ -90.212833353726054, 38.618331406283033 ], [ -90.212930753858629, 38.618355526864903 ], [ -90.212819883137698, 38.618680083457519 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10497000011", "numunits (2020)": 208, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203675912389571, 38.629435613067088 ], [ -90.203677224767745, 38.629431780404026 ], [ -90.2039916578412, 38.629497430754753 ], [ -90.203926636287434, 38.629687773537157 ], [ -90.20391848168444, 38.629711645344692 ], [ -90.203892546188072, 38.629787566970037 ], [ -90.203878954765159, 38.629827352742332 ], [ -90.203779843351327, 38.63011748706051 ], [ -90.203464994575853, 38.630051771142348 ], [ -90.20356430113867, 38.629761666413785 ], [ -90.203577917963727, 38.629721887057528 ], [ -90.203603904264426, 38.629645974636261 ], [ -90.203612073875405, 38.629622107391683 ], [ -90.203675912389571, 38.629435613067088 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10497000013", "numunits (2020)": 208, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204361070019772, 38.629885372597819 ], [ -90.204460175269347, 38.629595251294106 ], [ -90.204775080260418, 38.629660998014359 ], [ -90.204675784595096, 38.62995106956825 ], [ -90.204662174068773, 38.629990849973481 ], [ -90.204562883223034, 38.630280922332418 ], [ -90.204248373822679, 38.630215278737538 ], [ -90.204347478832972, 38.629925158452238 ], [ -90.204361070019772, 38.629885372597819 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10498000025", "numunits (2020)": 208, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202163558907088, 38.629426618414804 ], [ -90.202262886102361, 38.629136467067148 ], [ -90.202726324564381, 38.629233234852627 ], [ -90.202753387105275, 38.629238885249542 ], [ -90.202654066395667, 38.629529021705352 ], [ -90.202640449098084, 38.629568800953564 ], [ -90.202541129785246, 38.629858932796346 ], [ -90.202514065872975, 38.629853284159466 ], [ -90.202050613256503, 38.62975654524061 ], [ -90.202149941355145, 38.629466397605633 ], [ -90.202163558907088, 38.629426618414804 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10503008141", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.196556394146583, 38.629444972479952 ], [ -90.196649421249475, 38.629169648162694 ], [ -90.196904629860796, 38.629222983672669 ], [ -90.196911226829386, 38.629224330402387 ], [ -90.196978979751265, 38.629238160840714 ], [ -90.196983460585969, 38.629224888841527 ], [ -90.197094507533265, 38.628895973712218 ], [ -90.197432540723511, 38.628966190761091 ], [ -90.197224684829536, 38.629583904879993 ], [ -90.196886309530271, 38.62951356023185 ], [ -90.196818634323662, 38.629499491184404 ], [ -90.196556394146583, 38.629444972479952 ] ] ], [ [ [ -90.196340319067545, 38.62904843697585 ], [ -90.196387296691029, 38.628909719343405 ], [ -90.196603259000113, 38.62895471454479 ], [ -90.196556338654304, 38.629093285560451 ], [ -90.196340319067545, 38.62904843697585 ] ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10504000011", "numunits (2020)": 230, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197765440486634, 38.629590680548397 ], [ -90.197944019645647, 38.629069748855166 ], [ -90.19828229970237, 38.629140373992641 ], [ -90.198349955107275, 38.629154498901215 ], [ -90.198593517076972, 38.629205347678017 ], [ -90.198644258720677, 38.629215940775282 ], [ -90.198725446527774, 38.629232890248367 ], [ -90.19877618821063, 38.629243483288541 ], [ -90.199111087126425, 38.629313400035279 ], [ -90.199010643976479, 38.629606416032573 ], [ -90.1989970085761, 38.629646193928373 ], [ -90.1989342143968, 38.629829379374307 ], [ -90.198171969307992, 38.629673707510946 ], [ -90.19810421462897, 38.62965986963124 ], [ -90.197765440486634, 38.629590680548397 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10506000030", "numunits (2020)": 36, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200549416697172, 38.629926873873238 ], [ -90.200649492821043, 38.629634556492064 ], [ -90.200882909600992, 38.629683282814263 ], [ -90.200903206530725, 38.629687519126662 ], [ -90.200803175532684, 38.629979708879354 ], [ -90.200782875041028, 38.629975482453332 ], [ -90.200549416697172, 38.629926873873238 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10507000016", "numunits (2020)": 152, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201896776679234, 38.630207401224666 ], [ -90.201996615231877, 38.629915762283225 ], [ -90.202004351706606, 38.629917377365778 ], [ -90.202280776574582, 38.629975077418138 ], [ -90.202180987916776, 38.630266573500748 ], [ -90.202167370216102, 38.630306352687363 ], [ -90.202104655817465, 38.630489549967109 ], [ -90.20182044376503, 38.630430377477232 ], [ -90.201883158829403, 38.630247181284197 ], [ -90.201889967758149, 38.630227290787886 ], [ -90.201896776679234, 38.630207401224666 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10508008021", "numunits (2020)": 145, "numunits (2018)": 434 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.204975759527983, 38.630848396396253 ], [ -90.20496222553848, 38.630845578657045 ], [ -90.204959048713391, 38.630854860592599 ], [ -90.204955417401379, 38.630865468426975 ], [ -90.204875904920854, 38.630848916663936 ], [ -90.204605223095015, 38.630792568704784 ], [ -90.20460885445469, 38.630781960908799 ], [ -90.204612031325397, 38.630772678049169 ], [ -90.204612939163965, 38.630770026333536 ], [ -90.204616570525033, 38.630759417631104 ], [ -90.204699465762488, 38.630776674436831 ], [ -90.204784053649135, 38.630794283179675 ], [ -90.204868641577434, 38.630811891861434 ], [ -90.204953230692226, 38.630829500485049 ], [ -90.205047992095487, 38.630552657663905 ], [ -90.205061524859531, 38.630555481678343 ], [ -90.205813306851425, 38.630712381545834 ], [ -90.205812387454699, 38.630715062073939 ], [ -90.205713946577717, 38.631002060090815 ], [ -90.204975759527983, 38.630848396396253 ] ] ], [ [ [ -90.204066710133091, 38.630659155904276 ], [ -90.204166166245997, 38.630368608731594 ], [ -90.20418646356552, 38.63037284447541 ], [ -90.204508416418747, 38.630440041154472 ], [ -90.204409020861661, 38.630730416682887 ], [ -90.204402212583091, 38.630750306420467 ], [ -90.204395404300783, 38.630770196130108 ], [ -90.204332694003213, 38.630953394607175 ], [ -90.204010684380108, 38.630886359450152 ], [ -90.20399038345235, 38.630882130888644 ], [ -90.204053093393583, 38.630698935311472 ], [ -90.204066710133091, 38.630659155904276 ] ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10512008010", "numunits (2020)": 200, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202688383202513, 38.631695214584283 ], [ -90.202227420792653, 38.631598837618938 ], [ -90.202367079756215, 38.631187564517617 ], [ -90.202832551804249, 38.63128488386694 ], [ -90.202825325225916, 38.631306107537796 ], [ -90.202706121125345, 38.631656151143595 ], [ -90.202692524646224, 38.631696080911276 ], [ -90.202688383202513, 38.631695214584283 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10516008011", "numunits (2020)": 19, "numunits (2018)": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.195597072755987, 38.629719468885995 ], [ -90.195693537641148, 38.629436026463125 ], [ -90.195838464390931, 38.629466157239243 ], [ -90.195741726732493, 38.629749318909631 ], [ -90.195734931076259, 38.629769210866719 ], [ -90.195871768479918, 38.629797447716044 ], [ -90.195865132354513, 38.629817373428999 ], [ -90.195770717599103, 38.630100837514568 ], [ -90.19550998955954, 38.630047452796404 ], [ -90.195487063798808, 38.630042706039838 ], [ -90.195583529557879, 38.629759263726598 ], [ -90.195597072755987, 38.629719468885995 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10519008031", "numunits (2020)": 126, "numunits (2018)": 250 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197450216758426, 38.632402793936201 ], [ -90.197424487956127, 38.632397438573996 ], [ -90.196733794796643, 38.632253666709531 ], [ -90.196737551242094, 38.632242557671361 ], [ -90.196856726787402, 38.631890047242877 ], [ -90.197547416713817, 38.632033818377657 ], [ -90.197574484559752, 38.632039452849945 ], [ -90.197567306850772, 38.632060686229686 ], [ -90.197451557073506, 38.632403073077825 ], [ -90.197450216758426, 38.632402793936201 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10522040040", "numunits (2020)": 26, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202674251055697, 38.633484268158604 ], [ -90.202796504021165, 38.633127610008763 ], [ -90.202998698226622, 38.633169797356103 ], [ -90.202876446188398, 38.633526455718282 ], [ -90.202674251055697, 38.633484268158604 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10526008030", "numunits (2020)": 28, "numunits (2018)": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200537175954594, 38.6340561083734 ], [ -90.19994816621012, 38.633930644134487 ], [ -90.200079587993471, 38.633545660547114 ], [ -90.200088643168471, 38.633519135487575 ], [ -90.200097697184731, 38.633492611330404 ], [ -90.200229117354581, 38.633107627567725 ], [ -90.200244526545006, 38.633062488392326 ], [ -90.200251753845663, 38.633041317144801 ], [ -90.200613236721466, 38.633117277502102 ], [ -90.200800335849621, 38.633156593263507 ], [ -90.200925382760985, 38.633182869858082 ], [ -90.200918192229807, 38.633204081797565 ], [ -90.200902892582434, 38.633249211427454 ], [ -90.200772014525612, 38.63363527750672 ], [ -90.200763018116874, 38.633661814466237 ], [ -90.200754021697904, 38.633688351424894 ], [ -90.200677328003749, 38.633914583500406 ], [ -90.200673729188324, 38.633925197566271 ], [ -90.200658604801589, 38.633969812281428 ], [ -90.20065620643048, 38.63396930166369 ], [ -90.200620743648088, 38.634073909402659 ], [ -90.200550690592195, 38.634058987835317 ], [ -90.200537175954594, 38.6340561083734 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10528000020", "numunits (2020)": 48, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197129361397131, 38.632925668485306 ], [ -90.197138426755998, 38.632899146397399 ], [ -90.197618869200639, 38.632999252935399 ], [ -90.197785096273194, 38.633033889220592 ], [ -90.197906254919843, 38.63305913294586 ], [ -90.197897189819074, 38.633085655999693 ], [ -90.197895996799346, 38.633089146570391 ], [ -90.197828387446322, 38.633286949283502 ], [ -90.197770884792718, 38.633455180315131 ], [ -90.197741372549928, 38.633448112579494 ], [ -90.197709598792727, 38.633440502108876 ], [ -90.197650918562218, 38.633426447693317 ], [ -90.197618137406124, 38.633418596781631 ], [ -90.197582797564678, 38.633410132043018 ], [ -90.197514675450009, 38.633393816350164 ], [ -90.197375036179608, 38.633360370696153 ], [ -90.197289901736411, 38.633339979580462 ], [ -90.197218377732, 38.633322848639402 ], [ -90.19714685376178, 38.633305717682163 ], [ -90.1970787318497, 38.633289401735979 ], [ -90.197010611113626, 38.633273085725712 ], [ -90.197129361397131, 38.632925668485306 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10552000060", "numunits (2020)": 39, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201152775472252, 38.637835161134774 ], [ -90.201210802998858, 38.637665894800065 ], [ -90.201237854644233, 38.637671583326927 ], [ -90.201586320049913, 38.63774484543854 ], [ -90.20168776742814, 38.637766173949281 ], [ -90.201789213725903, 38.637787501463173 ], [ -90.201812886869448, 38.637792478602201 ], [ -90.203060699656078, 38.638054811104269 ], [ -90.203053428846488, 38.638076024739576 ], [ -90.202919806538958, 38.638465828249657 ], [ -90.202901626998823, 38.638518862359668 ], [ -90.202760730897225, 38.638929879298708 ], [ -90.202749597612311, 38.638927538550519 ], [ -90.201489231811308, 38.638662567317873 ], [ -90.20128633356066, 38.63861990983095 ], [ -90.20093786538763, 38.638546646851779 ], [ -90.200910812278835, 38.638540960037069 ], [ -90.201051718156492, 38.638129944430865 ], [ -90.201060344067074, 38.638104783074184 ], [ -90.201060588234213, 38.638104069294727 ], [ -90.201060807984433, 38.638103427533025 ], [ -90.201065087796266, 38.638090944963409 ], [ -90.20106989895757, 38.638076910609769 ], [ -90.201137163144182, 38.637880700749918 ], [ -90.201141325503301, 38.637868559330897 ], [ -90.201141721973002, 38.637867402695505 ], [ -90.201152775472252, 38.637835161134774 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10558000010", "numunits (2020)": 144, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.188596544950613, 38.636184323472051 ], [ -90.188623704468171, 38.636104519461412 ], [ -90.18904582913764, 38.63619381212839 ], [ -90.189113432295699, 38.636208112503063 ], [ -90.189535950659149, 38.636297485503071 ], [ -90.189508895183735, 38.63637708457847 ], [ -90.189481839651847, 38.63645668274016 ], [ -90.189454782907362, 38.636536281797362 ], [ -90.189427726102622, 38.636615880819548 ], [ -90.189400670389574, 38.636695478958515 ], [ -90.189373613460418, 38.636775077992993 ], [ -90.189346557622713, 38.636854677022953 ], [ -90.189319501728477, 38.636934275139197 ], [ -90.189292444621685, 38.637013874150995 ], [ -90.189265388602891, 38.637093473130783 ], [ -90.189238332527523, 38.637173071224339 ], [ -90.189211275239543, 38.6372526702134 ], [ -90.189184217891153, 38.637332269194886 ], [ -90.189168813850699, 38.637377587042273 ], [ -90.189166127394799, 38.637377019575048 ], [ -90.188746289621946, 38.637288212681348 ], [ -90.188678685525346, 38.637273912120811 ], [ -90.18825614416788, 38.637184531441115 ], [ -90.18827062942843, 38.637141969805583 ], [ -90.188297788527038, 38.637062165883442 ], [ -90.188324948716499, 38.636982361984188 ], [ -90.188352107693404, 38.636902558074247 ], [ -90.188379267761334, 38.636822754159724 ], [ -90.188406427764988, 38.636742950237569 ], [ -90.188433587711359, 38.636663146307789 ], [ -90.188460747593439, 38.636583342370393 ], [ -90.188487907418292, 38.636503538425352 ], [ -90.188515066026611, 38.636423735375786 ], [ -90.18854222572989, 38.636343931415503 ], [ -90.188569385368879, 38.636264127447568 ], [ -90.188596544950613, 38.636184323472051 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10572000012", "numunits (2020)": 145, "numunits (2018)": 200 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19729545309697, 38.639636742704695 ], [ -90.197403664856836, 38.639659499552955 ], [ -90.197298818547523, 38.639964411873564 ], [ -90.197288761275061, 38.639962688680903 ], [ -90.197279149797581, 38.639961484650527 ], [ -90.19725962456738, 38.63996043752995 ], [ -90.197240076538378, 38.639961178134435 ], [ -90.197220770907208, 38.639963696416629 ], [ -90.197201969582096, 38.639967958212459 ], [ -90.19718392762978, 38.639973905704629 ], [ -90.197166889815151, 38.639981458206933 ], [ -90.197151087280744, 38.639990513258965 ], [ -90.197136734411046, 38.64000094801596 ], [ -90.197124025923912, 38.640012620915506 ], [ -90.197113134229141, 38.640025373597901 ], [ -90.197104207089311, 38.640039033054535 ], [ -90.197097365615164, 38.640053413975053 ], [ -90.197092702622612, 38.640068321261225 ], [ -90.197090281373349, 38.640083552673822 ], [ -90.197090134716603, 38.640098901576167 ], [ -90.197092264643473, 38.640114159737614 ], [ -90.197096642259737, 38.640129120158413 ], [ -90.197103208177822, 38.640143579877922 ], [ -90.197111873322399, 38.64015734272818 ], [ -90.197122520138805, 38.640170221995227 ], [ -90.197135004187729, 38.640182042952141 ], [ -90.197149156104715, 38.640192645229469 ], [ -90.197164783897946, 38.640201884991022 ], [ -90.197181675552741, 38.640209636885118 ], [ -90.197199601907968, 38.64021579574532 ], [ -90.197218319765, 38.64022027801709 ], [ -90.197237575187003, 38.640223022891412 ], [ -90.197257106944221, 38.64022399312978 ], [ -90.197265814491189, 38.640223821881946 ], [ -90.197280701782461, 38.640222732210226 ], [ -90.197295406432659, 38.640220608085905 ], [ -90.197309811822535, 38.640217466354947 ], [ -90.197323803706311, 38.640213331933644 ], [ -90.197332430507473, 38.640210229005326 ], [ -90.197344162727106, 38.640206650522053 ], [ -90.197356522325549, 38.640204777495981 ], [ -90.197369109795289, 38.640204670470204 ], [ -90.197375453046575, 38.640205290848108 ], [ -90.197381697729114, 38.640206362338844 ], [ -90.19882590220152, 38.640509657707383 ], [ -90.198853350143182, 38.640560952357156 ], [ -90.198706288038295, 38.640991849821305 ], [ -90.19863975205385, 38.641030163970186 ], [ -90.197203243631392, 38.640728952780272 ], [ -90.197191381988063, 38.640725540117302 ], [ -90.197180495368556, 38.64072051125865 ], [ -90.197170938213517, 38.640714029931232 ], [ -90.19716302167933, 38.64070630715073 ], [ -90.197156671141144, 38.640699363885695 ], [ -90.197147143659578, 38.640690417593987 ], [ -90.19713664603853, 38.640682166150832 ], [ -90.19712526030969, 38.640674674035353 ], [ -90.197113075444591, 38.640667999792988 ], [ -90.197096097487588, 38.640660637020879 ], [ -90.197078150092111, 38.640654859130365 ], [ -90.197059472793342, 38.640650743236058 ], [ -90.19704031486792, 38.640648344270737 ], [ -90.19702093200705, 38.640647694252209 ], [ -90.197001582904051, 38.64064880185591 ], [ -90.196982525801673, 38.640651652299212 ], [ -90.196964015045509, 38.640656207538683 ], [ -90.196946297689479, 38.6406624067778 ], [ -90.196929610198595, 38.640670167278401 ], [ -90.196914175292889, 38.640679385464907 ], [ -90.196900198975015, 38.640689938306664 ], [ -90.196887867780816, 38.640701684959993 ], [ -90.196877346289696, 38.640714468647921 ], [ -90.196868774928049, 38.640728118752591 ], [ -90.196862268094975, 38.640742453092308 ], [ -90.196857912635451, 38.640757280353242 ], [ -90.196855766681225, 38.640772402642519 ], [ -90.196855858874784, 38.640787618129615 ], [ -90.196858187987075, 38.640802723739974 ], [ -90.196862722933801, 38.640817517865379 ], [ -90.196869403190263, 38.640831803054795 ], [ -90.196878139599036, 38.640845388649581 ], [ -90.196888815559859, 38.640858093328227 ], [ -90.196901288585877, 38.640869747526374 ], [ -90.196915392205227, 38.640880195699921 ], [ -90.196930938182888, 38.640889298401028 ], [ -90.19694771903302, 38.640896934139349 ], [ -90.196965510788147, 38.640903001003501 ], [ -90.196984075988411, 38.640907418021243 ], [ -90.197003166850919, 38.64091012624025 ], [ -90.197022528576838, 38.640911089514908 ], [ -90.197029607091466, 38.640910990664914 ], [ -90.19704439924584, 38.640910024253095 ], [ -90.197059024336824, 38.64090803505546 ], [ -90.197073367622366, 38.640905038678348 ], [ -90.197087316571341, 38.640901058630057 ], [ -90.197097910434252, 38.640897303150659 ], [ -90.197109685213675, 38.640893709294666 ], [ -90.197122091765237, 38.640891833454958 ], [ -90.19713472615895, 38.640891736704731 ], [ -90.197147177046872, 38.640893422193955 ], [ -90.198583621945502, 38.641194619461629 ], [ -90.198619049096166, 38.641247459850142 ], [ -90.198403364425729, 38.64187940573165 ], [ -90.198401579328248, 38.641884635269477 ], [ -90.198358734084053, 38.641903973518438 ], [ -90.198356891989789, 38.641909372276182 ], [ -90.196407931915104, 38.641500631471978 ], [ -90.196409755358047, 38.641495329077564 ], [ -90.19638504970608, 38.641461736103672 ], [ -90.19639234348584, 38.641440526554575 ], [ -90.196391048392528, 38.641423188401454 ], [ -90.197139882364198, 38.639245537215089 ], [ -90.197146645343267, 38.639246959129544 ], [ -90.197189578027746, 38.63922755939987 ], [ -90.197487157310391, 38.639290141420958 ], [ -90.197379494366203, 38.639603244626905 ], [ -90.197311863073878, 38.639589021037672 ], [ -90.19729545309697, 38.639636742704695 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10572000013", "numunits (2020)": 60, "numunits (2018)": 100 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198264925753776, 38.639453706039873 ], [ -90.199132716491292, 38.639636193978575 ], [ -90.199157481222585, 38.639669827064296 ], [ -90.19909265628867, 38.6398597700301 ], [ -90.199090264278169, 38.639866778164588 ], [ -90.199076685482936, 38.639906566055856 ], [ -90.198975338849237, 38.640203522329443 ], [ -90.198935618401464, 38.64031990480548 ], [ -90.198927917913593, 38.640323177781674 ], [ -90.198878062619698, 38.640344370272224 ], [ -90.198502518581762, 38.640265504581826 ], [ -90.19845179011142, 38.640254851111195 ], [ -90.198020590665593, 38.640164296115636 ], [ -90.197966479072662, 38.640152931937848 ], [ -90.197919131727687, 38.640142988729345 ], [ -90.197871784396057, 38.640133045474229 ], [ -90.197817672850391, 38.640121681255231 ], [ -90.197437845855688, 38.640041911948991 ], [ -90.197425986040528, 38.640038495612124 ], [ -90.197415102062806, 38.640033463368667 ], [ -90.197405548282759, 38.640026979058376 ], [ -90.197397635751827, 38.640019253797291 ], [ -90.197392503336687, 38.640013557795385 ], [ -90.197383078331441, 38.640004481836002 ], [ -90.197372662933461, 38.639996098159564 ], [ -90.197361339439752, 38.63998847300924 ], [ -90.197349197322552, 38.639981666634732 ], [ -90.197336126542623, 38.639975646648132 ], [ -90.197322417047985, 38.639970575297177 ], [ -90.197310763411025, 38.63996715064004 ], [ -90.197298818547523, 38.639964411873564 ], [ -90.197403664856836, 38.639659499552955 ], [ -90.19729545309697, 38.639636742704695 ], [ -90.197311863073878, 38.639589021037672 ], [ -90.197379494366203, 38.639603244626905 ], [ -90.197487157310391, 38.639290141420958 ], [ -90.198062029546904, 38.639411036683313 ], [ -90.198116134796365, 38.639422415189799 ], [ -90.198163478194104, 38.639432371846333 ], [ -90.198210820456993, 38.639442327574635 ], [ -90.198264925753776, 38.639453706039873 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10614000125", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193460760519244, 38.643439205780844 ], [ -90.193566790196272, 38.643129822790314 ], [ -90.193600612367078, 38.643136918140605 ], [ -90.193634435689276, 38.643144014362804 ], [ -90.193528406281402, 38.643453397387546 ], [ -90.193460760519244, 38.643439205780844 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10616000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.195960824823729, 38.644147175624695 ], [ -90.19604332200224, 38.644122214036919 ], [ -90.196168126676767, 38.644410508828223 ], [ -90.196085865840217, 38.644436017080849 ], [ -90.195960824823729, 38.644147175624695 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10620000070", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.196350172555228, 38.644909663592308 ], [ -90.196431279630204, 38.644884638664429 ], [ -90.196557615068627, 38.645176462147035 ], [ -90.196476500869863, 38.645201474538787 ], [ -90.196447179200248, 38.645210516578736 ], [ -90.196320836018074, 38.644918714569279 ], [ -90.196350172555228, 38.644909663592308 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10622000050", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197180399532371, 38.646428053106931 ], [ -90.197261122210875, 38.64640298966102 ], [ -90.197405883609278, 38.646691353428274 ], [ -90.197325201120165, 38.64671635578766 ], [ -90.197180399532371, 38.646428053106931 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10622000085", "numunits (2020)": 37, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.196774121301274, 38.64655419492555 ], [ -90.197010735414736, 38.646480730596444 ], [ -90.197029349347801, 38.646517773373922 ], [ -90.197017512438265, 38.646664081351794 ], [ -90.197081698232097, 38.646791814677535 ], [ -90.196918877665823, 38.646842270102482 ], [ -90.196774121301274, 38.64655419492555 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10631000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.194015626639953, 38.646460648173203 ], [ -90.194477884638175, 38.646314964685565 ], [ -90.194511551315728, 38.646381919415745 ], [ -90.194047424306902, 38.646523722578813 ], [ -90.194015626639953, 38.646460648173203 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10633000124", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.195354272914813, 38.647502857490963 ], [ -90.195382182789942, 38.647494330080775 ], [ -90.195439099863677, 38.647476940231464 ], [ -90.195449298428898, 38.647497399609229 ], [ -90.195571043747691, 38.64774163379365 ], [ -90.195581242387505, 38.647762093159287 ], [ -90.195496415148796, 38.647788010519491 ], [ -90.195486216529588, 38.647767551146607 ], [ -90.19536447145947, 38.647523316875969 ], [ -90.195354272914813, 38.647502857490963 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10633000125", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.195439099863677, 38.647476940231464 ], [ -90.195463611858926, 38.647469450806589 ], [ -90.195523926755328, 38.64745102291009 ], [ -90.195534125341055, 38.647471482280615 ], [ -90.195655872053891, 38.647715715475634 ], [ -90.195666070710402, 38.647736175740199 ], [ -90.195581242387505, 38.647762093159287 ], [ -90.195571043747691, 38.64774163379365 ], [ -90.195449298428898, 38.647497399609229 ], [ -90.195439099863677, 38.647476940231464 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10636000070", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.195271667430632, 38.650675681870034 ], [ -90.195297740642502, 38.650667647879956 ], [ -90.195319875919708, 38.650712844940969 ], [ -90.195321332698583, 38.650715818927623 ], [ -90.195295259471933, 38.650723852895375 ], [ -90.19489112488067, 38.650848377456455 ], [ -90.194865051561962, 38.650856411327773 ], [ -90.194863594795635, 38.65085343733557 ], [ -90.19484145976638, 38.650808240217707 ], [ -90.194867533070294, 38.650800206324092 ], [ -90.195271667430632, 38.650675681870034 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10636000090", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.195203410943833, 38.650536312982396 ], [ -90.195229484112517, 38.650528279034631 ], [ -90.195251861912055, 38.650573970395875 ], [ -90.19525961504776, 38.650589800994304 ], [ -90.195274928825768, 38.650621070729507 ], [ -90.195248856776828, 38.650629104717574 ], [ -90.19484472263585, 38.650753630000821 ], [ -90.194818649346445, 38.650761663862028 ], [ -90.194803335733994, 38.650730394095987 ], [ -90.194773205135192, 38.650668871994128 ], [ -90.194799278399429, 38.650660838142791 ], [ -90.195203410943833, 38.650536312982396 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10638000205", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19471311673604, 38.64869872657183 ], [ -90.194807718746944, 38.648669401010082 ], [ -90.194952285039889, 38.648957000534814 ], [ -90.194857822997733, 38.648986565303503 ], [ -90.19471311673604, 38.64869872657183 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10638000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.194807718746944, 38.648669401010082 ], [ -90.19481775973324, 38.648666288438982 ], [ -90.194889074967378, 38.648644181435039 ], [ -90.195033522937422, 38.648931574254441 ], [ -90.194952285039889, 38.648957000534814 ], [ -90.194807718746944, 38.648669401010082 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10641000010", "numunits (2020)": 26, "numunits (2018)": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19363085606858, 38.646177004602173 ], [ -90.19364425987996, 38.646172909937491 ], [ -90.193656784825507, 38.646196955644498 ], [ -90.19366134485999, 38.646206000689475 ], [ -90.193683229170915, 38.646249410983401 ], [ -90.193688378155528, 38.646259625091368 ], [ -90.193735262469247, 38.646352625714584 ], [ -90.193992192513647, 38.646862271840476 ], [ -90.193977451992666, 38.646866775686519 ], [ -90.193535417381526, 38.647001806567438 ], [ -90.193470163151588, 38.647021740344393 ], [ -90.193012472698683, 38.647161551703292 ], [ -90.192711007366725, 38.646563548146055 ], [ -90.192703516449228, 38.646548688290558 ], [ -90.192683391454793, 38.646508767073072 ], [ -90.192681448604532, 38.646505333214854 ], [ -90.192662968740166, 38.646472669282453 ], [ -90.19363085606858, 38.646177004602173 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10642000010", "numunits (2020)": 26, "numunits (2018)": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.192638802880708, 38.646429954651502 ], [ -90.192620323054868, 38.646397290712102 ], [ -90.192619399400158, 38.646397572961263 ], [ -90.192522339777724, 38.646427221844078 ], [ -90.192503865709412, 38.646394566907958 ], [ -90.192198712492029, 38.645855182662842 ], [ -90.192180236434467, 38.64582252407051 ], [ -90.192278053709856, 38.645792300897227 ], [ -90.192368669114202, 38.64576430195175 ], [ -90.192450111111143, 38.645739137442462 ], [ -90.192531551899279, 38.645713973751825 ], [ -90.192612993786568, 38.645688809100996 ], [ -90.19269443446143, 38.64566364529631 ], [ -90.192775876231963, 38.645638480531424 ], [ -90.192857317945737, 38.645613315736988 ], [ -90.19293875845068, 38.64558815176116 ], [ -90.193020200054818, 38.645562986825198 ], [ -90.193101640446514, 38.645537822735328 ], [ -90.193183081933867, 38.645512657685288 ], [ -90.19327374149502, 38.645484644642004 ], [ -90.193291433491709, 38.645517545181207 ], [ -90.19342814210421, 38.645771771903455 ], [ -90.193448676752325, 38.645809957178088 ], [ -90.193597636460112, 38.646086963862317 ], [ -90.193603078750385, 38.64609708417094 ], [ -90.193626217902761, 38.646140113077955 ], [ -90.19364425987996, 38.646172909937491 ], [ -90.19363085606858, 38.646177004602173 ], [ -90.192662968740166, 38.646472669282453 ], [ -90.192644488895979, 38.646440005347038 ], [ -90.192638802880708, 38.646429954651502 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10659000023", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201903344466118, 38.606527892524916 ], [ -90.201914376283185, 38.606512429740171 ], [ -90.202031740773535, 38.606347921532731 ], [ -90.202160135293184, 38.606167950416229 ], [ -90.202288530313922, 38.605987979153767 ], [ -90.202406431219117, 38.605822716072339 ], [ -90.202414103570561, 38.605811961798864 ], [ -90.202806793531863, 38.605940911938006 ], [ -90.202831986946279, 38.605949184560998 ], [ -90.202858782117843, 38.605957982871864 ], [ -90.203029453842234, 38.606014027246665 ], [ -90.203039130731867, 38.606018191911154 ], [ -90.203047483939812, 38.606023852212445 ], [ -90.203054144176008, 38.606030757912386 ], [ -90.203058816995238, 38.606038603714524 ], [ -90.203061295814521, 38.606047042761041 ], [ -90.20306147104607, 38.606055701966987 ], [ -90.203059334942139, 38.60606419851419 ], [ -90.203054981937839, 38.606072156775411 ], [ -90.202898420004118, 38.606291393185046 ], [ -90.202769930856121, 38.606471318025271 ], [ -90.202641439913123, 38.60665124274103 ], [ -90.202563488647272, 38.606760398008426 ], [ -90.202512949477949, 38.606831167283175 ], [ -90.202284020020556, 38.606717277077934 ], [ -90.202247588997864, 38.606699152561454 ], [ -90.201972308275813, 38.606562202206753 ], [ -90.201903344466118, 38.606527892524916 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10663000170", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203661831437373, 38.607618635577971 ], [ -90.203739788377277, 38.607444945332823 ], [ -90.203824218613349, 38.60725685441826 ], [ -90.203906557069104, 38.607279784216047 ], [ -90.203744086418254, 38.60764157066059 ], [ -90.203661831437373, 38.607618635577971 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10663000270", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204482788355151, 38.607847543028974 ], [ -90.204646516052776, 38.607485847887453 ], [ -90.204728853887232, 38.607508777104904 ], [ -90.204564994545947, 38.607870463929167 ], [ -90.204482788355151, 38.607847543028974 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10663000280", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204564994545947, 38.607870463929167 ], [ -90.204728853887232, 38.607508777104904 ], [ -90.204811192922236, 38.607531706267409 ], [ -90.204647199645152, 38.607893384741402 ], [ -90.204564994545947, 38.607870463929167 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10666000255", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205158361323001, 38.608501835497279 ], [ -90.205321729406208, 38.608139739454622 ], [ -90.205455098003725, 38.608176924797327 ], [ -90.205538451724948, 38.608200164988823 ], [ -90.205503583561111, 38.608277613482031 ], [ -90.205438306641454, 38.608422603729252 ], [ -90.205375361811022, 38.608562416075088 ], [ -90.205291900041743, 38.608539116020772 ], [ -90.205158361323001, 38.608501835497279 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10666008191", "numunits (2020)": 6, "numunits (2018)": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205382516715815, 38.608098405077918 ], [ -90.205547122539997, 38.607736639742022 ], [ -90.205629006802624, 38.607759441947792 ], [ -90.205710889969609, 38.607782243214785 ], [ -90.205627340414111, 38.607966868360442 ], [ -90.205547054160746, 38.608144280989748 ], [ -90.205464785410086, 38.608121343515776 ], [ -90.205382516715815, 38.608098405077918 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10667000110", "numunits (2020)": 5, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205842433990981, 38.608520135808369 ], [ -90.205936356663713, 38.60831110529378 ], [ -90.206058704687862, 38.608345217360707 ], [ -90.205895686262565, 38.608707672048631 ], [ -90.205773496144246, 38.60867356111428 ], [ -90.205842433990981, 38.608520135808369 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10667000141", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205959629263845, 38.60825931197347 ], [ -90.206061631614105, 38.608032297321841 ], [ -90.206160650256109, 38.608059869888464 ], [ -90.206058563171894, 38.608286895260044 ], [ -90.205959629263845, 38.60825931197347 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10667000142", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206061631614105, 38.608032297321841 ], [ -90.206122487898881, 38.607896856794916 ], [ -90.20622154881157, 38.607924441141215 ], [ -90.206160650256109, 38.608059869888464 ], [ -90.206061631614105, 38.608032297321841 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10667000150", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206160650256109, 38.608059869888464 ], [ -90.20622154881157, 38.607924441141215 ], [ -90.206319785220344, 38.60795179540402 ], [ -90.206156672568724, 38.608314249340843 ], [ -90.206058563171894, 38.608286895260044 ], [ -90.206160650256109, 38.608059869888464 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10670000120", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207310980618502, 38.608636071799637 ], [ -90.207475103664265, 38.608273495353863 ], [ -90.207557609610646, 38.608296468031838 ], [ -90.207393450100625, 38.608659064327092 ], [ -90.207310980618502, 38.608636071799637 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10671000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208525670294719, 38.608930888893696 ], [ -90.208543850000439, 38.60889083543519 ], [ -90.208919141249311, 38.608996633885887 ], [ -90.208901426506642, 38.609035603890668 ], [ -90.208895935532311, 38.609047683813749 ], [ -90.208521432646933, 38.608940225115703 ], [ -90.208525670294719, 38.608930888893696 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10671000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208496266229204, 38.608995672734231 ], [ -90.208521432646933, 38.608940225115703 ], [ -90.208895935532311, 38.609047683813749 ], [ -90.2088717902963, 38.609100798944553 ], [ -90.208496266229204, 38.608995672734231 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10671000060", "numunits (2020)": 6, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208378651731351, 38.609254807058093 ], [ -90.208408054861792, 38.609190023247898 ], [ -90.208436212574981, 38.609127986783768 ], [ -90.208437459086753, 38.609125239459701 ], [ -90.208438684751499, 38.609122538022987 ], [ -90.208814305166072, 38.609227261967071 ], [ -90.20881306795502, 38.609229983204536 ], [ -90.208783614611761, 38.60929477687737 ], [ -90.208754161218735, 38.609359569663162 ], [ -90.208378651731351, 38.609254807058093 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10671000170", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208131715188316, 38.608751589732876 ], [ -90.208162468372933, 38.6086837274283 ], [ -90.208538314616064, 38.608788443789472 ], [ -90.20850891177966, 38.60885322491945 ], [ -90.208131715188316, 38.608751589732876 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10671000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208221176827792, 38.608554178572199 ], [ -90.208250530401472, 38.608489404610836 ], [ -90.208626522813361, 38.608594098537445 ], [ -90.208597120132893, 38.608658880598455 ], [ -90.208221176827792, 38.608554178572199 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10673010082", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209243721229925, 38.608941960037541 ], [ -90.209256700153645, 38.608913407874851 ], [ -90.209286092660804, 38.60884874993264 ], [ -90.20931548511831, 38.608784092009579 ], [ -90.209547014258007, 38.608850359281718 ], [ -90.209517621987501, 38.608915016384209 ], [ -90.209493791183135, 38.608967441440754 ], [ -90.209507796385154, 38.608971449878169 ], [ -90.209502236012241, 38.608983682825446 ], [ -90.209489173773932, 38.60901241768704 ], [ -90.209243721229925, 38.608941960037541 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10679000180", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210537327710298, 38.608340815782753 ], [ -90.210619733323995, 38.608363876149106 ], [ -90.210502964480924, 38.608622730967411 ], [ -90.210420559753871, 38.608599671427832 ], [ -90.210537327710298, 38.608340815782753 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10679000190", "numunits (2020)": 100, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21065476335464, 38.608286219317222 ], [ -90.210162331055258, 38.608148417188488 ], [ -90.20966990179862, 38.608010612966801 ], [ -90.209665908450503, 38.608009495011224 ], [ -90.209735970134858, 38.607854182810044 ], [ -90.210230396276756, 38.607992545697343 ], [ -90.210724824332218, 38.608130906527045 ], [ -90.21065476335464, 38.608286219317222 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10680000030", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209010537004772, 38.607870769004784 ], [ -90.2090398810669, 38.60780611461734 ], [ -90.20941297663137, 38.607910231325405 ], [ -90.209383603136502, 38.60797485418226 ], [ -90.209010537004772, 38.607870769004784 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10680000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20898119404103, 38.607935423386813 ], [ -90.209010537004772, 38.607870769004784 ], [ -90.209383603136502, 38.60797485418226 ], [ -90.209354228444312, 38.60803947614933 ], [ -90.20898119404103, 38.607935423386813 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10680000210", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208614035040256, 38.607687266107156 ], [ -90.208643349679974, 38.607622574811991 ], [ -90.208863160292864, 38.607683929754494 ], [ -90.209016474590186, 38.607726723475217 ], [ -90.208987130529067, 38.607791380548662 ], [ -90.208614035040256, 38.607687266107156 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10681000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208386885562987, 38.607696757301397 ], [ -90.20835756373215, 38.60776145933221 ], [ -90.207951467564527, 38.607648170880843 ], [ -90.20798077605896, 38.607583438273402 ], [ -90.208386885562987, 38.607696757301397 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10681000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20832824299616, 38.607826161357636 ], [ -90.207922157865866, 38.607712903449709 ], [ -90.207951467564527, 38.607648170880843 ], [ -90.20835756373215, 38.60776145933221 ], [ -90.20832824299616, 38.607826161357636 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10681000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207716989649541, 38.608166033098357 ], [ -90.207746299715666, 38.608101300559774 ], [ -90.208152317471615, 38.608214371524433 ], [ -90.208122996364793, 38.608279073492092 ], [ -90.207716989649541, 38.608166033098357 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10681000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207404719426833, 38.607714456323862 ], [ -90.207434017077361, 38.607649694116951 ], [ -90.207840086243706, 38.607762929322611 ], [ -90.207810776401246, 38.607827661889246 ], [ -90.207404719426833, 38.607714456323862 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10681000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20746331467501, 38.607584931874349 ], [ -90.207492612226616, 38.607520168772275 ], [ -90.207898705776628, 38.607633463313398 ], [ -90.207869396040252, 38.607698195869069 ], [ -90.20746331467501, 38.607584931874349 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10682000050", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206566131937578, 38.607845570089061 ], [ -90.2067327466563, 38.607477474817976 ], [ -90.20684841100622, 38.607509726154078 ], [ -90.206681832530691, 38.607877787437474 ], [ -90.206566131937578, 38.607845570089061 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10682000110", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205919926893841, 38.607665628602874 ], [ -90.206086747340478, 38.60729734196854 ], [ -90.206202411108592, 38.60732959394192 ], [ -90.20603562690556, 38.607697846588962 ], [ -90.205919926893841, 38.607665628602874 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10682000150", "numunits (2020)": 5, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20577223027712, 38.60720963867896 ], [ -90.205605311600195, 38.607578020097769 ], [ -90.205476133225858, 38.607542048140381 ], [ -90.205643095115363, 38.607173629146473 ], [ -90.20577223027712, 38.60720963867896 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10682000160", "numunits (2020)": 17, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205079448318941, 38.607431584094364 ], [ -90.205246535303914, 38.607063047050239 ], [ -90.205395245231301, 38.607104515950368 ], [ -90.205477861423589, 38.607127553446759 ], [ -90.205560477669152, 38.607150590857479 ], [ -90.205643095115363, 38.607173629146473 ], [ -90.205476133225858, 38.607542048140381 ], [ -90.205393491201235, 38.607519034907767 ], [ -90.205310848081879, 38.607496021614033 ], [ -90.205228205015658, 38.607473008262041 ], [ -90.205079448318941, 38.607431584094364 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10682000205", "numunits (2020)": 18, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206138052287869, 38.607265022086558 ], [ -90.206304861454896, 38.606896744998188 ], [ -90.206387482163606, 38.606919815199966 ], [ -90.20647010292204, 38.606942885343521 ], [ -90.206552723737346, 38.606965955401378 ], [ -90.206635344602077, 38.606989026334638 ], [ -90.206717965520312, 38.607012096276044 ], [ -90.206551289575415, 38.607380250879949 ], [ -90.206468641784099, 38.60735720505599 ], [ -90.206385994042506, 38.60733415917376 ], [ -90.206303347501688, 38.607311114142291 ], [ -90.206220699866435, 38.607288068143532 ], [ -90.206138052287869, 38.607265022086558 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10682000230", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206905455159202, 38.607303444177028 ], [ -90.207001487002572, 38.607091263101097 ], [ -90.207004988277347, 38.607092240290555 ], [ -90.207081499115461, 38.607113604679945 ], [ -90.207164121468651, 38.607136675243439 ], [ -90.207137147832952, 38.607196283799368 ], [ -90.207106654596274, 38.607263668133342 ], [ -90.207076162449951, 38.607331052488689 ], [ -90.207068103804758, 38.607348860084258 ], [ -90.206985474360167, 38.607325787650971 ], [ -90.206905455159202, 38.607303444177028 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10682008910", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206137774807402, 38.607726290981176 ], [ -90.206304525137739, 38.607358067815859 ], [ -90.206461761860794, 38.607401912508131 ], [ -90.20629506064688, 38.60777008826706 ], [ -90.206137774807402, 38.607726290981176 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10684000162", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204799391971363, 38.606619168797721 ], [ -90.204717476265728, 38.606596293849819 ], [ -90.204715143652294, 38.606595642064732 ], [ -90.204773774980467, 38.606469201900239 ], [ -90.204856864892875, 38.606492404985438 ], [ -90.204875217319938, 38.606497529389692 ], [ -90.204817743278525, 38.606624293235562 ], [ -90.204799391971363, 38.606619168797721 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10684008157", "numunits (2020)": 3, "numunits (2018)": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204553595703572, 38.606550530148347 ], [ -90.204611070160084, 38.606423763741248 ], [ -90.204693001686522, 38.606446644213229 ], [ -90.204756528098287, 38.606464384725768 ], [ -90.204769115489242, 38.606467900104079 ], [ -90.204772616702854, 38.606468878266369 ], [ -90.204715143652294, 38.606595642064732 ], [ -90.204711642436834, 38.606594663900722 ], [ -90.204699055019432, 38.606591149422364 ], [ -90.204635527359045, 38.606573409754446 ], [ -90.204553595703572, 38.606550530148347 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10685000025", "numunits (2020)": 3, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203389274048945, 38.606738237697535 ], [ -90.203462506595301, 38.606575067969857 ], [ -90.203531880667342, 38.606594093262416 ], [ -90.203614468569668, 38.606616741918636 ], [ -90.203697056527972, 38.606639389610542 ], [ -90.203779644534762, 38.606662038150439 ], [ -90.203617041673724, 38.607024335852742 ], [ -90.203534593509403, 38.60700137492946 ], [ -90.203464981714376, 38.606981988665304 ], [ -90.203554313405917, 38.606783841993405 ], [ -90.203541108874546, 38.606780193397803 ], [ -90.203471793699279, 38.606761040327598 ], [ -90.203458590324161, 38.606757391725587 ], [ -90.203389274048945, 38.606738237697535 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10704000071", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19781938878053, 38.609878631906966 ], [ -90.197821153495667, 38.609876718453748 ], [ -90.197849524198816, 38.60989279572059 ], [ -90.197894077958168, 38.609918043311986 ], [ -90.198253674081315, 38.610121818906272 ], [ -90.198251904791348, 38.610123729663208 ], [ -90.198204705927736, 38.610174724789736 ], [ -90.197845539283676, 38.609970630362326 ], [ -90.19780105109092, 38.609945350492104 ], [ -90.197772708054615, 38.609929244452736 ], [ -90.19781938878053, 38.609878631906966 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10778000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205116785217456, 38.606243899721015 ], [ -90.205145914606177, 38.606179648445682 ], [ -90.205409174951399, 38.606253163835163 ], [ -90.205380064442892, 38.606317902595414 ], [ -90.205116785217456, 38.606243899721015 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10778000101", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204668419174212, 38.606206609847206 ], [ -90.20483242363801, 38.605844868216955 ], [ -90.204915046362331, 38.605867877297719 ], [ -90.204751015620687, 38.606229675734866 ], [ -90.204668419174212, 38.606206609847206 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10778000150", "numunits (2020)": 36, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204393305664837, 38.605664303287256 ], [ -90.204343838459437, 38.605650526735594 ], [ -90.204304892017859, 38.6057364284869 ], [ -90.204303646552589, 38.605739175771035 ], [ -90.204118039857903, 38.605657358138103 ], [ -90.203905781403336, 38.605563792074399 ], [ -90.204170335013472, 38.605194279599971 ], [ -90.204508047166527, 38.605288336479099 ], [ -90.204557517591596, 38.605302114782319 ], [ -90.204606982307936, 38.605315889453102 ], [ -90.205696768247506, 38.605619367680355 ], [ -90.20553255894832, 38.605981571315198 ], [ -90.204442772885642, 38.605678079845525 ], [ -90.204393305664837, 38.605664303287256 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10780000010", "numunits (2020)": 8, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207400801186608, 38.606969595107088 ], [ -90.207565016910806, 38.606606603338555 ], [ -90.207669851883438, 38.60663583506814 ], [ -90.207505636458151, 38.606998867513077 ], [ -90.207400801186608, 38.606969595107088 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10780000260", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206350241489247, 38.606005448446297 ], [ -90.206432394205379, 38.605824219192804 ], [ -90.206511777682806, 38.605846324460138 ], [ -90.206347477785826, 38.606208815484493 ], [ -90.206268089505173, 38.606186677637858 ], [ -90.206350241489247, 38.606005448446297 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10780000280", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206426866119173, 38.606230953249913 ], [ -90.20659116120207, 38.605868430579854 ], [ -90.206690391536213, 38.605896062709895 ], [ -90.206526102465617, 38.606258625184211 ], [ -90.206426866119173, 38.606230953249913 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10780008400", "numunits (2020)": 8, "numunits (2018)": 48 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205819497166885, 38.605799259249295 ], [ -90.205878152803351, 38.605669878052836 ], [ -90.206300283870448, 38.605787429997207 ], [ -90.206241605725239, 38.605916861762296 ], [ -90.206212266571271, 38.605981577646176 ], [ -90.206182987613929, 38.606046159452113 ], [ -90.205760921257649, 38.605928464023087 ], [ -90.205790169271182, 38.605863948915257 ], [ -90.205819497166885, 38.605799259249295 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10781000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20790874310191, 38.606600299129944 ], [ -90.207914658291841, 38.606587223919952 ], [ -90.208321121594608, 38.606700507107341 ], [ -90.208315191456322, 38.606713603938395 ], [ -90.20829769064062, 38.60675225636637 ], [ -90.207891245430687, 38.606638978525233 ], [ -90.20790874310191, 38.606600299129944 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10781000207", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208026051380941, 38.606340982398287 ], [ -90.208055378027481, 38.606276153420538 ], [ -90.208461990456399, 38.606389374353029 ], [ -90.208432630762033, 38.606454220456918 ], [ -90.208026051380941, 38.606340982398287 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10783000145", "numunits (2020)": 13, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210123094043666, 38.606999356210352 ], [ -90.210152535447236, 38.606934711685525 ], [ -90.210178903581948, 38.606942091060859 ], [ -90.210587624151501, 38.607056468333838 ], [ -90.210613992375869, 38.607063847611322 ], [ -90.210584551331991, 38.607128492252194 ], [ -90.210555111386469, 38.607193135981433 ], [ -90.210525670236208, 38.607257780633127 ], [ -90.210499300802383, 38.607250401332934 ], [ -90.210090580428499, 38.607136022848273 ], [ -90.210064212232126, 38.607128643453052 ], [ -90.210093652590629, 38.607063999820703 ], [ -90.210123094043666, 38.606999356210352 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10783000190", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210996587685528, 38.607121353547967 ], [ -90.211006008202716, 38.607100667081696 ], [ -90.211088411408696, 38.607123726209089 ], [ -90.211170814660633, 38.607146786184686 ], [ -90.211005948118498, 38.607508793997923 ], [ -90.210923544506869, 38.607485733906252 ], [ -90.21084114094117, 38.60746267466282 ], [ -90.210850562695967, 38.607441988213438 ], [ -90.210996587685528, 38.607121353547967 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10783000200", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210774920901798, 38.607911701245378 ], [ -90.210784341587285, 38.607891014800394 ], [ -90.210930816058365, 38.607569397570323 ], [ -90.210940236650274, 38.607548711111228 ], [ -90.210982396113138, 38.607560509277732 ], [ -90.210817080545723, 38.607923499471418 ], [ -90.210774920901798, 38.607911701245378 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10784000045", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211209989390341, 38.607565891421977 ], [ -90.211203718394373, 38.607564136386848 ], [ -90.211294393917868, 38.607365032127326 ], [ -90.211409759201231, 38.607397315155524 ], [ -90.211322616779071, 38.607588662517053 ], [ -90.211319083951224, 38.607596419504389 ], [ -90.211209989390341, 38.607565891421977 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10784000055", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211294393917868, 38.607365032127326 ], [ -90.211368582921864, 38.607202129171007 ], [ -90.211456538258403, 38.607226742192999 ], [ -90.211483947978564, 38.607234412126083 ], [ -90.211480415185648, 38.607242169118905 ], [ -90.211409759201231, 38.607397315155524 ], [ -90.211294393917868, 38.607365032127326 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10787000065", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211782464740395, 38.606578677715071 ], [ -90.211811981322455, 38.606514054560762 ], [ -90.211908405565978, 38.606302944244611 ], [ -90.211972977114954, 38.60632101313459 ], [ -90.211876805338349, 38.606532194418122 ], [ -90.211847365649078, 38.606596838481458 ], [ -90.211782464740395, 38.606578677715071 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10787000080", "numunits (2020)": 3, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211930663291113, 38.606547265919978 ], [ -90.212026836074784, 38.606336084622477 ], [ -90.212139281341706, 38.606367549869937 ], [ -90.21204310884427, 38.606578731287264 ], [ -90.212013670432455, 38.606643375395251 ], [ -90.211901224791532, 38.606611910027141 ], [ -90.211930663291113, 38.606547265919978 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10788000110", "numunits (2020)": 14, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210510043241044, 38.606149719604531 ], [ -90.210518113176846, 38.60613200007603 ], [ -90.210606218494434, 38.605938540349882 ], [ -90.211067669880066, 38.606067674487399 ], [ -90.210971495801701, 38.606278854121143 ], [ -90.210945126679135, 38.60627147492135 ], [ -90.21053641112627, 38.606157098871876 ], [ -90.210510043241044, 38.606149719604531 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10789000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209868915860028, 38.605978633895482 ], [ -90.209871840748107, 38.605972184454174 ], [ -90.210245855755559, 38.606076292670821 ], [ -90.210243159113318, 38.606082233673867 ], [ -90.21021655180617, 38.606140839374149 ], [ -90.210187247803844, 38.606205386975397 ], [ -90.209813285005012, 38.606101284990046 ], [ -90.209842562902935, 38.606036734726217 ], [ -90.209868915860028, 38.605978633895482 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10789008081", "numunits (2020)": 4, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209616149256973, 38.606535914775556 ], [ -90.209663604904691, 38.606431289272827 ], [ -90.209666894716662, 38.606424036240647 ], [ -90.210040725859628, 38.606528122136751 ], [ -90.210037675890149, 38.606534839741101 ], [ -90.209989934999896, 38.606639995310942 ], [ -90.209616149256973, 38.606535914775556 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10790000182", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208425073437127, 38.60545890195111 ], [ -90.208446691107838, 38.605411112076766 ], [ -90.208450369154846, 38.605402981650002 ], [ -90.208850702046163, 38.605514419924681 ], [ -90.208847267336978, 38.60552200590265 ], [ -90.208825385956828, 38.605570334824222 ], [ -90.208425073437127, 38.60545890195111 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10790008011", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209058431764277, 38.605600293805232 ], [ -90.209095405209425, 38.605518521558075 ], [ -90.209108812671232, 38.605522253808161 ], [ -90.209342758278424, 38.605587374370224 ], [ -90.209305711673167, 38.605669128500693 ], [ -90.209058431764277, 38.605600293805232 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10791000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207879746299994, 38.605448018499992 ], [ -90.207891376384296, 38.605422236053741 ], [ -90.207981247495084, 38.605447254639735 ], [ -90.208033127027093, 38.605461697828019 ], [ -90.208182232348307, 38.605503207426217 ], [ -90.208153105392967, 38.605567594601254 ], [ -90.208146582138696, 38.60558201513205 ], [ -90.207987564844487, 38.605537725049828 ], [ -90.207993724503098, 38.605523223415872 ], [ -90.207882110868113, 38.605492149934442 ], [ -90.207899542663156, 38.605453509086274 ], [ -90.207879746299994, 38.605448018499992 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10791000100", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20705708533562, 38.605823352511223 ], [ -90.207102995322188, 38.605721866500758 ], [ -90.207107589900801, 38.605711710515529 ], [ -90.207509930284999, 38.605823759264666 ], [ -90.207505518789176, 38.605833512099217 ], [ -90.207459432059707, 38.605935387911039 ], [ -90.20705708533562, 38.605823352511223 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10791000155", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207214823094617, 38.605474668256548 ], [ -90.20724932273454, 38.605398405683168 ], [ -90.207253287062699, 38.605389641783354 ], [ -90.207655609655959, 38.605501727830017 ], [ -90.207651846952743, 38.605510044468581 ], [ -90.207617150736027, 38.605586743628059 ], [ -90.207214823094617, 38.605474668256548 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10792000080", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212150288570356, 38.600290950440744 ], [ -90.212163465352134, 38.600272273927324 ], [ -90.212172601238962, 38.60025932439634 ], [ -90.212188427678015, 38.600236892242705 ], [ -90.212469934715045, 38.600316000417585 ], [ -90.212482740359732, 38.600319598374867 ], [ -90.212535095909004, 38.600334311900554 ], [ -90.212543081810836, 38.600336555743603 ], [ -90.212546580513774, 38.600337539049917 ], [ -90.212549899179962, 38.600338471500592 ], [ -90.212574638956241, 38.600345423815568 ], [ -90.212589600479944, 38.600349627952092 ], [ -90.212601165361448, 38.60035287780903 ], [ -90.212615249629692, 38.600356835656733 ], [ -90.212655627523986, 38.600368182907168 ], [ -90.212630464352799, 38.600403884922962 ], [ -90.212617519662402, 38.600422249433549 ], [ -90.212150288570356, 38.600290950440744 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10793000075", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212005923583675, 38.601403741855243 ], [ -90.212031564310834, 38.601367349289589 ], [ -90.212499215268465, 38.601497249789801 ], [ -90.212473428355082, 38.601533787139005 ], [ -90.212005923583675, 38.601403741855243 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10793000076", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211980174297409, 38.601440290007233 ], [ -90.212005923583675, 38.601403741855243 ], [ -90.212473428355082, 38.601533787139005 ], [ -90.212447641411998, 38.601570324482239 ], [ -90.211980174297409, 38.601440290007233 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10793000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211928783028398, 38.601513230698195 ], [ -90.211980174297409, 38.601440290007233 ], [ -90.212447641411998, 38.601570324482239 ], [ -90.212428196420035, 38.60159787476745 ], [ -90.212396066306297, 38.601643399175323 ], [ -90.212344492243659, 38.601716472913566 ], [ -90.212157646762108, 38.601664351066376 ], [ -90.212164851310206, 38.601654121993988 ], [ -90.211884598530304, 38.601575943221974 ], [ -90.211901723221445, 38.601551637763272 ], [ -90.211928783028398, 38.601513230698195 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10793000100", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211773164154721, 38.60190072270268 ], [ -90.211821457910744, 38.601832515864416 ], [ -90.211873083612375, 38.601759601941012 ], [ -90.211905609533744, 38.601713664234765 ], [ -90.211924710357195, 38.601686687062752 ], [ -90.212082714221495, 38.601730826105097 ], [ -90.21193103561329, 38.601945050790192 ], [ -90.211773164154721, 38.60190072270268 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10793000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211444529188825, 38.601291287348822 ], [ -90.211492337747174, 38.601223525412145 ], [ -90.211494137725779, 38.601220973986372 ], [ -90.211962966748771, 38.601351211971476 ], [ -90.21196116907538, 38.601353764288774 ], [ -90.211913310852424, 38.601421690252948 ], [ -90.211444529188825, 38.601291287348822 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10793000180", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211494137725779, 38.601220973986372 ], [ -90.211495855729979, 38.60121853859404 ], [ -90.211497655708229, 38.601215987195665 ], [ -90.211531002023307, 38.6011687237052 ], [ -90.211999866853546, 38.601298838174728 ], [ -90.211964685909592, 38.601348771165675 ], [ -90.211962966748771, 38.601351211971476 ], [ -90.211494137725779, 38.601220973986372 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10796000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205716529045091, 38.604402990418869 ], [ -90.20588162965349, 38.604037874275974 ], [ -90.205933644454618, 38.604052297124859 ], [ -90.205949593448807, 38.604078561924943 ], [ -90.205792877498695, 38.604424248048801 ], [ -90.205716529045091, 38.604402990418869 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10796000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206018354411938, 38.604049778545743 ], [ -90.20601959977887, 38.604047031242203 ], [ -90.206047808792775, 38.603984806206164 ], [ -90.20637756575573, 38.604076697301963 ], [ -90.206349464735155, 38.604138683929321 ], [ -90.206348219372003, 38.604141432142512 ], [ -90.206018354411938, 38.604049778545743 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10796000201", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205987363824249, 38.604118140655906 ], [ -90.205989020460123, 38.604114485373756 ], [ -90.206318872935327, 38.604206166947328 ], [ -90.20631715260086, 38.604209961704711 ], [ -90.206289526441836, 38.604270902677463 ], [ -90.206271801751782, 38.604310000222334 ], [ -90.205942106426363, 38.60421796844917 ], [ -90.205959685307434, 38.604179192218098 ], [ -90.205987363824249, 38.604118140655906 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10796000280", "numunits (2020)": 3, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205871680668324, 38.604373314489244 ], [ -90.205876856813589, 38.604361896966978 ], [ -90.20620664770847, 38.604453718357504 ], [ -90.206201484354892, 38.604465108000262 ], [ -90.206172136505103, 38.604529842788303 ], [ -90.205842345303623, 38.60443802130051 ], [ -90.205871680668324, 38.604373314489244 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10796008231", "numunits (2020)": 2, "numunits (2018)": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205930350094533, 38.604243899960309 ], [ -90.205942106426363, 38.60421796844917 ], [ -90.206271801751782, 38.604310000222334 ], [ -90.206260178751194, 38.604335637490323 ], [ -90.20623184815129, 38.60439812892583 ], [ -90.205901014835817, 38.60430860678813 ], [ -90.205930350094533, 38.604243899960309 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10797000045", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206995908467746, 38.604399723556931 ], [ -90.207027407067486, 38.604330168771298 ], [ -90.207028345424462, 38.604328096379191 ], [ -90.207029589613725, 38.604325348155889 ], [ -90.20703340326618, 38.604316928031849 ], [ -90.207462253201399, 38.604435197051181 ], [ -90.207457000752939, 38.604446807244564 ], [ -90.207455917592313, 38.604449201814859 ], [ -90.207424268445507, 38.604519164438102 ], [ -90.206995908467746, 38.604399723556931 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10797000050", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206956981701936, 38.604485683954991 ], [ -90.206992194421161, 38.604407926808442 ], [ -90.206993194178551, 38.604405718537066 ], [ -90.206994438373997, 38.60440297031419 ], [ -90.206995908467746, 38.604399723556931 ], [ -90.207424268445507, 38.604519164438102 ], [ -90.207421882017641, 38.604524438617737 ], [ -90.207420716603806, 38.604527014954733 ], [ -90.207385516689982, 38.604604828113033 ], [ -90.206956981701936, 38.604485683954991 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10797000080", "numunits (2020)": 12, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206435473849069, 38.604440538300068 ], [ -90.206440239802518, 38.604430026923765 ], [ -90.20657206312994, 38.604466784632748 ], [ -90.206670931287391, 38.604494352804892 ], [ -90.206769799524309, 38.604521920921137 ], [ -90.206868667833945, 38.60454948892658 ], [ -90.20686423436203, 38.604559279550394 ], [ -90.206798584817577, 38.604704247209391 ], [ -90.206699682884249, 38.604676714181558 ], [ -90.206600782174746, 38.60464918107315 ], [ -90.206501880393475, 38.604621647878446 ], [ -90.206380724040542, 38.604587918533511 ], [ -90.206370011858553, 38.604584935944715 ], [ -90.206435473849069, 38.604440538300068 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10798000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208104405293469, 38.605067808838449 ], [ -90.208123944806275, 38.605024613788835 ], [ -90.208127816333018, 38.605016054143924 ], [ -90.208371866201588, 38.605083997205234 ], [ -90.20836813950433, 38.605092236494635 ], [ -90.208348454166881, 38.605135751918255 ], [ -90.208104405293469, 38.605067808838449 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10798000143", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207649141375398, 38.604514575695447 ], [ -90.207653838902601, 38.604504192004185 ], [ -90.207898943356611, 38.604572290034021 ], [ -90.208062876405748, 38.604617835698015 ], [ -90.208058328365738, 38.604627890019984 ], [ -90.208027649337595, 38.60469571021558 ], [ -90.207992422192774, 38.604773584721251 ], [ -90.207979461496166, 38.604802235030718 ], [ -90.207570537772696, 38.60468833730615 ], [ -90.207583420991554, 38.604659858029187 ], [ -90.207618629985362, 38.604582025008888 ], [ -90.207649141375398, 38.604514575695447 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10798000160", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207653838902601, 38.604504192004185 ], [ -90.207684258710174, 38.604436944250125 ], [ -90.207689047746925, 38.60442635808139 ], [ -90.207933158949601, 38.604494152671215 ], [ -90.207898943356611, 38.604572290034021 ], [ -90.207653838902601, 38.604504192004185 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10798000190", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20776620040202, 38.604255802640189 ], [ -90.207771218783122, 38.60424470986743 ], [ -90.208180141459792, 38.604358607799931 ], [ -90.208175387256659, 38.60436911658573 ], [ -90.208168558295029, 38.604384212927826 ], [ -90.208148758348173, 38.604427982118125 ], [ -90.207739836469514, 38.604314084984978 ], [ -90.207759465195281, 38.604270692012392 ], [ -90.20776620040202, 38.604255802640189 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10799000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209088771551436, 38.605136233465771 ], [ -90.209094359686546, 38.605123891585734 ], [ -90.209123780790492, 38.605058907606804 ], [ -90.209149193776312, 38.605002776663753 ], [ -90.209153201841232, 38.604993922713376 ], [ -90.209560394562871, 38.605107081834035 ], [ -90.209556542959717, 38.605115581220424 ], [ -90.20953093583536, 38.605172093755648 ], [ -90.209501477050907, 38.605237105668948 ], [ -90.209495884389071, 38.605249446623468 ], [ -90.209088771551436, 38.605136233465771 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10799000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208709492711819, 38.604830148889704 ], [ -90.208736254536163, 38.604770988074762 ], [ -90.208740634519216, 38.604761305354167 ], [ -90.20914788514898, 38.604874421901293 ], [ -90.209143638463516, 38.604883802257191 ], [ -90.209116720746422, 38.604943259172799 ], [ -90.208709492711819, 38.604830148889704 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10799000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208774102375912, 38.604687318103345 ], [ -90.208794782421791, 38.604641600565763 ], [ -90.208799395234919, 38.60463140221502 ], [ -90.209206722366048, 38.604744463802852 ], [ -90.209202211586899, 38.604754426383103 ], [ -90.209181515711819, 38.604800139422196 ], [ -90.208774102375912, 38.604687318103345 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10799000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208799395234919, 38.60463140221502 ], [ -90.208818192826072, 38.604589845726949 ], [ -90.20882320179976, 38.604578773617909 ], [ -90.208967021813791, 38.604618679921394 ], [ -90.209230563232211, 38.60469180634886 ], [ -90.209225642381853, 38.604702676017226 ], [ -90.209206722366048, 38.604744463802852 ], [ -90.208799395234919, 38.60463140221502 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10799008016", "numunits (2020)": 6, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209295626397591, 38.604679338701949 ], [ -90.209300307444991, 38.604668999964268 ], [ -90.209707688549571, 38.604782022103777 ], [ -90.209703088676079, 38.604792172770679 ], [ -90.209680208585965, 38.604842666935461 ], [ -90.209648771575814, 38.604912046022008 ], [ -90.209241465824135, 38.604798968919759 ], [ -90.209272848976113, 38.604729650163733 ], [ -90.209285614437817, 38.604701453291582 ], [ -90.209295626397591, 38.604679338701949 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10800000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209669912155661, 38.60535717185985 ], [ -90.209695922354243, 38.605299769296998 ], [ -90.209699377793797, 38.605292142815202 ], [ -90.210073645156498, 38.605396225193026 ], [ -90.210070365850058, 38.605403456626114 ], [ -90.210044139531178, 38.605461278561258 ], [ -90.209669912155661, 38.60535717185985 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10800000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209728844522658, 38.605227114643782 ], [ -90.209744187168823, 38.605193255696328 ], [ -90.209748965450601, 38.605182711787229 ], [ -90.210123097537476, 38.605287193644095 ], [ -90.210119353740325, 38.605295449175429 ], [ -90.210103150728401, 38.605331171788983 ], [ -90.209728844522658, 38.605227114643782 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10800000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209784776486217, 38.605103680547408 ], [ -90.21015915811202, 38.605207687231271 ], [ -90.210154847892767, 38.605217191801806 ], [ -90.210140258491776, 38.605249357195632 ], [ -90.209766111668998, 38.605144871732172 ], [ -90.209780332983527, 38.605113486551261 ], [ -90.209784776486217, 38.605103680547408 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10801000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211227094120417, 38.605864488003085 ], [ -90.211256534065399, 38.605799843182616 ], [ -90.211724466483957, 38.60593078882529 ], [ -90.21169504411003, 38.605995437402797 ], [ -90.211665571219015, 38.606060073271863 ], [ -90.211197655273764, 38.605929131911907 ], [ -90.211227094120417, 38.605864488003085 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10801000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210794633746616, 38.605524818644433 ], [ -90.210824073938142, 38.605460173929984 ], [ -90.211292115748705, 38.605591152218793 ], [ -90.211262675922043, 38.60565579705095 ], [ -90.211233237193639, 38.605720440971467 ], [ -90.210765194653419, 38.605589462447249 ], [ -90.210794633746616, 38.605524818644433 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10801000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21134161396354, 38.605167708968651 ], [ -90.211371591372384, 38.605103214974264 ], [ -90.211437512664389, 38.605121662267919 ], [ -90.211407535303181, 38.60518615627916 ], [ -90.211385424568178, 38.605233724776923 ], [ -90.211390529054412, 38.605235153523076 ], [ -90.211383048856263, 38.605252187178344 ], [ -90.211354546207744, 38.605317092895412 ], [ -90.211326043507569, 38.605381998604621 ], [ -90.21126012201016, 38.605363551275659 ], [ -90.211288624762332, 38.605298645555038 ], [ -90.21131712746633, 38.605233738947881 ], [ -90.211323630947021, 38.605218928105174 ], [ -90.211318477147941, 38.605217485724999 ], [ -90.21134161396354, 38.605167708968651 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10802000061", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212214502582469, 38.606213682993868 ], [ -90.212243940640136, 38.606149037923224 ], [ -90.212272591025425, 38.606086126004762 ], [ -90.212389602712463, 38.606118868859681 ], [ -90.212360952415935, 38.606181781685436 ], [ -90.212331514452998, 38.606246425906832 ], [ -90.212214502582469, 38.606213682993868 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10802000062", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212097489678229, 38.606180939055157 ], [ -90.212126927823462, 38.606116294920099 ], [ -90.212156367067024, 38.606051649873351 ], [ -90.212167354210337, 38.606027523933513 ], [ -90.212401378548563, 38.60609301155165 ], [ -90.212390391477044, 38.606117136579869 ], [ -90.212389602712463, 38.606118868859681 ], [ -90.212272591025425, 38.606086126004762 ], [ -90.212243940640136, 38.606149037923224 ], [ -90.212214502582469, 38.606213682993868 ], [ -90.212097489678229, 38.606180939055157 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10802000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212693906509074, 38.605887217309721 ], [ -90.212861115481132, 38.605520036209015 ], [ -90.212902317622422, 38.605531565569741 ], [ -90.212922653208821, 38.605537255730816 ], [ -90.212755444509114, 38.605904436946858 ], [ -90.212735108832632, 38.605898746756743 ], [ -90.212693906509074, 38.605887217309721 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10803000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213003744903801, 38.605303232532279 ], [ -90.213029410080267, 38.605246461699863 ], [ -90.213165370869703, 38.605284520275738 ], [ -90.213175270385932, 38.605287263313471 ], [ -90.213145959668907, 38.605351944088042 ], [ -90.213116648906052, 38.605416623948216 ], [ -90.213106760945507, 38.605413857483661 ], [ -90.212980412602477, 38.605378501596952 ], [ -90.213009661544476, 38.605313804512534 ], [ -90.213003744903801, 38.605303232532279 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10804000090", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211619265156074, 38.604997607425652 ], [ -90.211648515161073, 38.604932910681306 ], [ -90.212116556220479, 38.60506388567994 ], [ -90.212087306581012, 38.605128582541226 ], [ -90.211619265156074, 38.604997607425652 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10804000142", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211332493476263, 38.604334295329764 ], [ -90.211347024661691, 38.604302153033572 ], [ -90.211815061073054, 38.604433130140734 ], [ -90.211800528925025, 38.604465272464736 ], [ -90.21177127924507, 38.60452996928089 ], [ -90.211756560564993, 38.604562524648841 ], [ -90.211288524570449, 38.604431547310647 ], [ -90.211303243434415, 38.604398992001535 ], [ -90.211332493476263, 38.604334295329764 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10805000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210636157752575, 38.604284649560263 ], [ -90.210652740668607, 38.604247970163073 ], [ -90.211028318446282, 38.604350072564955 ], [ -90.211011173911913, 38.60438799206247 ], [ -90.21100306439476, 38.604405928652874 ], [ -90.210627487510607, 38.604303826172753 ], [ -90.210636157752575, 38.604284649560263 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10805000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210627487510607, 38.604303826172753 ], [ -90.21100306439476, 38.604405928652874 ], [ -90.210981923556432, 38.604452689558308 ], [ -90.210978096410713, 38.604461153026435 ], [ -90.210602518123707, 38.604359051369492 ], [ -90.210606905952275, 38.604349346959538 ], [ -90.210627487510607, 38.604303826172753 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10805000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210577655253971, 38.60441404347474 ], [ -90.210602518123707, 38.604359051369492 ], [ -90.210978096410713, 38.604461153026435 ], [ -90.210952673155248, 38.60451738526109 ], [ -90.21092625834865, 38.604510106855763 ], [ -90.210604068838379, 38.60442132195579 ], [ -90.210577655253971, 38.60441404347474 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10805000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210897007866834, 38.604574804328557 ], [ -90.210574816956608, 38.604486019345231 ], [ -90.210548404499278, 38.604478740860444 ], [ -90.210577655253971, 38.60441404347474 ], [ -90.210604068838379, 38.60442132195579 ], [ -90.21092625834865, 38.604510106855763 ], [ -90.210952673155248, 38.60451738526109 ], [ -90.210923421542773, 38.60458208273765 ], [ -90.210897007866834, 38.604574804328557 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10805000121", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210200477807817, 38.604601136513082 ], [ -90.210229728928098, 38.604536439217071 ], [ -90.210253703627274, 38.604483414340855 ], [ -90.210461048973215, 38.604540552732445 ], [ -90.210437074403444, 38.6045935776786 ], [ -90.21040782344889, 38.604658275026431 ], [ -90.210400089268504, 38.604656143363151 ], [ -90.210200477807817, 38.604601136513082 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10805000122", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21011366568095, 38.604577213653158 ], [ -90.210145117615468, 38.604513122697576 ], [ -90.210176569493697, 38.604449032611299 ], [ -90.21020802246349, 38.604384941639822 ], [ -90.210469163712759, 38.604456905334317 ], [ -90.210495577301771, 38.604464183839809 ], [ -90.210466326452888, 38.604528881204082 ], [ -90.210461048973215, 38.604540552732445 ], [ -90.210253703627274, 38.604483414340855 ], [ -90.210229728928098, 38.604536439217071 ], [ -90.210200477807817, 38.604601136513082 ], [ -90.21011366568095, 38.604577213653158 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10805000123", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210120561496481, 38.604360839687914 ], [ -90.210146975014524, 38.604368118299419 ], [ -90.21020802246349, 38.604384941639822 ], [ -90.210176569493697, 38.604449032611299 ], [ -90.210145117615468, 38.604513122697576 ], [ -90.21011366568095, 38.604577213653158 ], [ -90.210032806763067, 38.604554930593359 ], [ -90.210062059158886, 38.604490233342084 ], [ -90.210091310350592, 38.604425536958438 ], [ -90.210120561496481, 38.604360839687914 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10806000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209487102117464, 38.604259031174749 ], [ -90.209516354880478, 38.60419433405805 ], [ -90.209922461426061, 38.604306248720391 ], [ -90.209893210125117, 38.604370945941426 ], [ -90.209487102117464, 38.604259031174749 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10809000145", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206575683553339, 38.602833099790381 ], [ -90.206587474448909, 38.602807023254584 ], [ -90.206917210512501, 38.60289894881597 ], [ -90.206905508926965, 38.602924827407215 ], [ -90.20686391093146, 38.603016823358409 ], [ -90.206534085191251, 38.602925095624315 ], [ -90.206575683553339, 38.602833099790381 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10811000010", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213994822474149, 38.600608629679165 ], [ -90.214071707294977, 38.600499191990856 ], [ -90.214099020181465, 38.600506968282168 ], [ -90.214126334218093, 38.600514745448606 ], [ -90.214208567634259, 38.600538159638823 ], [ -90.214277326974994, 38.60055773656223 ], [ -90.214290801107637, 38.60056157289268 ], [ -90.214397705504382, 38.60059201080999 ], [ -90.214346769952726, 38.600706675723082 ], [ -90.214239605942012, 38.600676821789207 ], [ -90.21415717311784, 38.600653857576511 ], [ -90.214074740343079, 38.600630893305834 ], [ -90.213994822474149, 38.600608629679165 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10811000110", "numunits (2020)": 6, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213479410801554, 38.60134225427494 ], [ -90.213522295596107, 38.601281213644711 ], [ -90.214029956575942, 38.601417533441278 ], [ -90.213999919966312, 38.60148202442064 ], [ -90.213969883309829, 38.601546513579102 ], [ -90.213436525937666, 38.601403294009835 ], [ -90.213479410801554, 38.60134225427494 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10811000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212969414282497, 38.602234796821669 ], [ -90.213107253755524, 38.601938856899793 ], [ -90.213112761954505, 38.601940336093541 ], [ -90.213151098029499, 38.601950629574276 ], [ -90.213190036188522, 38.601961086686138 ], [ -90.213221109435679, 38.601969430001652 ], [ -90.213082781728517, 38.602266418381603 ], [ -90.213051841537578, 38.602257787966849 ], [ -90.212969414282497, 38.602234796821669 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10811000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212657720614374, 38.601612719040546 ], [ -90.21268127687307, 38.60157934281645 ], [ -90.213146715860177, 38.601704892127024 ], [ -90.213123360060507, 38.60173813561952 ], [ -90.212657720614374, 38.601612719040546 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10811000370", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213081895059446, 38.601011706182589 ], [ -90.213107744977194, 38.600975078755674 ], [ -90.213118994704615, 38.600959138846306 ], [ -90.213120985120227, 38.600956316700859 ], [ -90.213121010513248, 38.600956281642596 ], [ -90.213121035909893, 38.600956246556834 ], [ -90.213122594529821, 38.600954036877624 ], [ -90.213125562818917, 38.600949831556761 ], [ -90.213587232246141, 38.601077881611864 ], [ -90.213582442020581, 38.601084699582891 ], [ -90.213558870724199, 38.601118249826861 ], [ -90.213541686390911, 38.601142708525167 ], [ -90.213081895059446, 38.601011706182589 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10811000380", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213125562818917, 38.600949831556761 ], [ -90.213175693557162, 38.600878794459099 ], [ -90.213634740753051, 38.601010259505479 ], [ -90.213587232246141, 38.601077881611864 ], [ -90.213125562818917, 38.600949831556761 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10812000060", "numunits (2020)": 6, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213768973592721, 38.602457816824668 ], [ -90.213909556742664, 38.602155980930178 ], [ -90.214011875203155, 38.602184519769786 ], [ -90.2138712924245, 38.602486355787121 ], [ -90.213768973592721, 38.602457816824668 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10813000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215865796217059, 38.60129983482129 ], [ -90.215982460317292, 38.601040392973772 ], [ -90.216046836897021, 38.601058643846315 ], [ -90.216064737763077, 38.601063718590446 ], [ -90.21607296230124, 38.601066050144389 ], [ -90.215956299628232, 38.601325492990973 ], [ -90.215948073920174, 38.601323160519911 ], [ -90.215865796217059, 38.60129983482129 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10814000090", "numunits (2020)": 10, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207258963983676, 38.602602824401849 ], [ -90.207301181400155, 38.602543074468862 ], [ -90.207314546874571, 38.602546809539376 ], [ -90.207664194157474, 38.602644522148417 ], [ -90.207677615861769, 38.602648272639598 ], [ -90.207633374244864, 38.602707560008085 ], [ -90.207589131403751, 38.602766847356129 ], [ -90.207552730968473, 38.602815625510985 ], [ -90.207181961651131, 38.602711803228374 ], [ -90.207216746500677, 38.602662573412594 ], [ -90.207258963983676, 38.602602824401849 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10814000100", "numunits (2020)": 6, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207343398739084, 38.602483325453356 ], [ -90.207363557085927, 38.602454795829409 ], [ -90.207376929473909, 38.602458521876002 ], [ -90.207729650898955, 38.60255680593162 ], [ -90.207743079513492, 38.602560547398454 ], [ -90.207721858560575, 38.602588984350234 ], [ -90.207677615861769, 38.602648272639598 ], [ -90.207664194157474, 38.602644522148417 ], [ -90.207314546874571, 38.602546809539376 ], [ -90.207301181400155, 38.602543074468862 ], [ -90.207343398739084, 38.602483325453356 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10815000065", "numunits (2020)": 4, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208991832553977, 38.60312814389151 ], [ -90.209003489843326, 38.603102254162927 ], [ -90.20923663553549, 38.603167614393008 ], [ -90.209224979466953, 38.603193503241478 ], [ -90.209192237727777, 38.603266221298831 ], [ -90.209190006601474, 38.603271175177163 ], [ -90.208956860617647, 38.603205815760347 ], [ -90.208991832553977, 38.60312814389151 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10815000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208433135635431, 38.602787818689379 ], [ -90.20846461058467, 38.60271791478732 ], [ -90.208474496825943, 38.602720686143726 ], [ -90.208861004645854, 38.602829040573226 ], [ -90.208870889770012, 38.602831811893346 ], [ -90.208839414012189, 38.602901716807935 ], [ -90.208433135635431, 38.602787818689379 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10815000120", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208499583958243, 38.602640243063114 ], [ -90.208517069466922, 38.602601407660543 ], [ -90.208923348080845, 38.602715304557059 ], [ -90.208905861614809, 38.602754140044937 ], [ -90.208895976499932, 38.602751368727766 ], [ -90.20850946904244, 38.602643014413694 ], [ -90.208499583958243, 38.602640243063114 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10815000130", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208517069466922, 38.602601407660543 ], [ -90.208534556104567, 38.602562571351761 ], [ -90.208544442330862, 38.602565342674787 ], [ -90.208930948274528, 38.602673697776687 ], [ -90.208940834527866, 38.602676469093737 ], [ -90.208923348080845, 38.602715304557059 ], [ -90.208517069466922, 38.602601407660543 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10816000025", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210228881929737, 38.602979188148907 ], [ -90.210243418498635, 38.602946900984072 ], [ -90.210329038936464, 38.602970059590312 ], [ -90.210492853145169, 38.603015230401056 ], [ -90.21050275803627, 38.603017961981017 ], [ -90.210488058240955, 38.603050610028511 ], [ -90.210458915769308, 38.603115336506313 ], [ -90.210449135569377, 38.603137058969772 ], [ -90.210189957842715, 38.60306563612248 ], [ -90.210199738107391, 38.603043913653202 ], [ -90.210228881929737, 38.602979188148907 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10816000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210022023129355, 38.603067697375472 ], [ -90.210041385669513, 38.603024693436751 ], [ -90.210189957842715, 38.60306563612248 ], [ -90.210449135569377, 38.603137058969772 ], [ -90.210429773241472, 38.603180062975966 ], [ -90.210419993020253, 38.603201786342822 ], [ -90.210012242804424, 38.60308942070828 ], [ -90.210022023129355, 38.603067697375472 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10816000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209905451213345, 38.603326604578591 ], [ -90.2099119903977, 38.603312080351948 ], [ -90.210319741712439, 38.603424446335744 ], [ -90.210313202603359, 38.603438970557718 ], [ -90.210296427952983, 38.603476227839032 ], [ -90.209888676382661, 38.603363861773992 ], [ -90.209905451213345, 38.603326604578591 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10817000040", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21048215795102, 38.603558289181798 ], [ -90.210499643770646, 38.603519452582539 ], [ -90.210874655764073, 38.603622794613727 ], [ -90.210857170120761, 38.603661631269006 ], [ -90.210828027725967, 38.603726357832358 ], [ -90.210453015265912, 38.603623015651806 ], [ -90.21048215795102, 38.603558289181798 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10817008100", "numunits (2020)": 6, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211055706634795, 38.603352552400175 ], [ -90.211113990653516, 38.60322309914104 ], [ -90.21112389560416, 38.603225828883694 ], [ -90.211479095871084, 38.603323710425151 ], [ -90.211489000846143, 38.603326440109498 ], [ -90.211484829643808, 38.603335704531453 ], [ -90.211430717415084, 38.603455893555363 ], [ -90.211420812424478, 38.603453163866057 ], [ -90.211065611600958, 38.603355282147767 ], [ -90.211055706634795, 38.603352552400175 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10818000041", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21172172785586, 38.603468980806561 ], [ -90.21175073266447, 38.603404556361575 ], [ -90.211753458231613, 38.603398502781673 ], [ -90.211763342377225, 38.60340127923704 ], [ -90.212097750198396, 38.60349520074827 ], [ -90.212095164810336, 38.603500943869243 ], [ -90.212093343921438, 38.603504988015011 ], [ -90.212207055453348, 38.603536809462128 ], [ -90.212216943118307, 38.603539576002476 ], [ -90.212189759556708, 38.603599956415785 ], [ -90.212179871888125, 38.60359718896698 ], [ -90.211731615496234, 38.603471747360423 ], [ -90.21172172785586, 38.603468980806561 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10818000056", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212010634470488, 38.603412545902977 ], [ -90.212053763618357, 38.60331675012273 ], [ -90.212057260606429, 38.603308982200481 ], [ -90.212291276031721, 38.603374470007971 ], [ -90.212244650188367, 38.603478033831131 ], [ -90.212234762530755, 38.603475267293099 ], [ -90.212010634470488, 38.603412545902977 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10818000110", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212242494966674, 38.603614714218516 ], [ -90.21226474751569, 38.603565285560244 ], [ -90.212358157482882, 38.603591425673883 ], [ -90.212451830137582, 38.603617638436191 ], [ -90.212545502857211, 38.603643852029833 ], [ -90.21263917564896, 38.603670064642444 ], [ -90.212732781992571, 38.603696259004387 ], [ -90.212710528575187, 38.603745687748791 ], [ -90.212681524483855, 38.603810112403238 ], [ -90.212671636763787, 38.603807345023334 ], [ -90.212223378195759, 38.603681906202979 ], [ -90.212213490514586, 38.603679138784464 ], [ -90.212242494966674, 38.603614714218516 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10818000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212184484859122, 38.603743563312058 ], [ -90.212213490514586, 38.603679138784464 ], [ -90.212223378195759, 38.603681906202979 ], [ -90.212671636763787, 38.603807345023334 ], [ -90.212681524483855, 38.603810112403238 ], [ -90.212652520340299, 38.603874537077033 ], [ -90.212642632616109, 38.603871769667265 ], [ -90.212194373699305, 38.603746330735817 ], [ -90.212184484859122, 38.603743563312058 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10818000130", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212155480299288, 38.603807987834372 ], [ -90.212184484859122, 38.603743563312058 ], [ -90.212194373699305, 38.603746330735817 ], [ -90.212642632616109, 38.603871769667265 ], [ -90.212652520340299, 38.603874537077033 ], [ -90.212623516148142, 38.603938961715301 ], [ -90.212594510748957, 38.604003387248802 ], [ -90.212584623005768, 38.604000619861573 ], [ -90.21213636339138, 38.603875180708059 ], [ -90.212126474539303, 38.603872413279397 ], [ -90.212155480299288, 38.603807987834372 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10818008011", "numunits (2020)": 14, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211523377403864, 38.60392126487276 ], [ -90.211518689291623, 38.603919953361817 ], [ -90.211605705804274, 38.603726679323906 ], [ -90.211615593471734, 38.603729446821163 ], [ -90.21206385125889, 38.603854888844467 ], [ -90.21207373896533, 38.603857655396936 ], [ -90.211986723541699, 38.604050929782694 ], [ -90.211523377403864, 38.60392126487276 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10819000090", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212966298729327, 38.6036721786813 ], [ -90.213009805528969, 38.603575541136479 ], [ -90.21340343457527, 38.603685690739134 ], [ -90.213359928235079, 38.603782328430228 ], [ -90.213350040488777, 38.603779562013706 ], [ -90.212976187586548, 38.60367494606659 ], [ -90.212966298729327, 38.6036721786813 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10819000140", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213237618417381, 38.60418590329747 ], [ -90.213266758840447, 38.604121176131692 ], [ -90.213276645461022, 38.604123947083153 ], [ -90.21363034180456, 38.604223088652994 ], [ -90.213640239920309, 38.60422586319892 ], [ -90.213614909735114, 38.60429159794046 ], [ -90.213605011604173, 38.604288825204719 ], [ -90.213247506200574, 38.604188673348084 ], [ -90.213237618417381, 38.60418590329747 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10819008061", "numunits (2020)": 4, "numunits (2018)": 13 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212850281935857, 38.603929878469415 ], [ -90.212902734632266, 38.603813369377235 ], [ -90.213296364816372, 38.603923518433696 ], [ -90.213243912670407, 38.60404002770224 ], [ -90.21323402490053, 38.604037260342324 ], [ -90.212860170823987, 38.603932645837048 ], [ -90.212850281935857, 38.603929878469415 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10832008011", "numunits (2020)": 268, "numunits (2018)": 94 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201616980333995, 38.632654146432259 ], [ -90.20175258568753, 38.632255721292253 ], [ -90.202894005859321, 38.632494814661449 ], [ -90.202758647019763, 38.632892532775401 ], [ -90.201616980333995, 38.632654146432259 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10835008022", "numunits (2020)": 3, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197607173359359, 38.63181898142583 ], [ -90.197743719649779, 38.631419090369263 ], [ -90.197744304887422, 38.631419210800587 ], [ -90.197830655460464, 38.631436933585718 ], [ -90.197694028232405, 38.631837060572636 ], [ -90.197607173359359, 38.63181898142583 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10835008080", "numunits (2020)": 16, "numunits (2018)": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197182565206589, 38.631730596969327 ], [ -90.197318720635465, 38.631331861231217 ], [ -90.19748936502441, 38.631366885898878 ], [ -90.197353053481493, 38.631766084473824 ], [ -90.1973520218544, 38.631765871012249 ], [ -90.197182565206589, 38.631730596969327 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10836008031", "numunits (2020)": 5, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.195741063278945, 38.631431690761296 ], [ -90.19587730972647, 38.63103300918106 ], [ -90.195962152151807, 38.631050820438837 ], [ -90.196046995771084, 38.63106863166567 ], [ -90.196131838284956, 38.631086441894496 ], [ -90.195995659890215, 38.6314842744179 ], [ -90.195910793927467, 38.631466746885714 ], [ -90.195825929158289, 38.631449218416378 ], [ -90.195741063278945, 38.631431690761296 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10838000290", "numunits (2020)": 8, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205612186370672, 38.604781848473927 ], [ -90.20559573564168, 38.604777268577635 ], [ -90.20558604639875, 38.604774571365105 ], [ -90.205582544100807, 38.60477359591524 ], [ -90.205676317607654, 38.604566612837395 ], [ -90.205685126089804, 38.60456906548135 ], [ -90.205689509119182, 38.604570285461776 ], [ -90.20577195751406, 38.604593241249347 ], [ -90.205854404814005, 38.604616196976082 ], [ -90.205760600795173, 38.604823170233772 ], [ -90.205678168192122, 38.604800218981609 ], [ -90.205612186370672, 38.604781848473927 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10838000320", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205519110388565, 38.604987154003119 ], [ -90.205550721595969, 38.604917426941135 ], [ -90.205553543729977, 38.604911202569589 ], [ -90.205949293580673, 38.605021388819708 ], [ -90.20594591307885, 38.605028845131393 ], [ -90.205914852490451, 38.605097359296224 ], [ -90.205519110388565, 38.604987154003119 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10838000400", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205883356276644, 38.604740802128433 ], [ -90.205930256973886, 38.60463731633444 ], [ -90.205939063181319, 38.604639768102338 ], [ -90.206101748185802, 38.60468506293261 ], [ -90.206054843119148, 38.604788546944079 ], [ -90.205883356276644, 38.604740802128433 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10838000410", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205836453141131, 38.604844289652938 ], [ -90.205883356276644, 38.604740802128433 ], [ -90.206054843119148, 38.604788546944079 ], [ -90.206052161200915, 38.604794464493082 ], [ -90.206007935603154, 38.604892034553245 ], [ -90.205836453141131, 38.604844289652938 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10838000420", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205760600795173, 38.604823170233772 ], [ -90.205854404814005, 38.604616196976082 ], [ -90.20586321101635, 38.604618648722216 ], [ -90.205930256973886, 38.60463731633444 ], [ -90.205883356276644, 38.604740802128433 ], [ -90.205836453141131, 38.604844289652938 ], [ -90.205760600795173, 38.604823170233772 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10838008123", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204596398302385, 38.605138112878727 ], [ -90.204737147609393, 38.60482766350033 ], [ -90.204819593683695, 38.60485062354919 ], [ -90.204678844685702, 38.605161073026785 ], [ -90.204596398302385, 38.605138112878727 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10840000035", "numunits (2020)": 127, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206831901929334, 38.602197279753995 ], [ -90.206789049176948, 38.602257381993816 ], [ -90.206746306042874, 38.602317329511322 ], [ -90.206703563985201, 38.602377277015187 ], [ -90.206660848418736, 38.60243718585145 ], [ -90.206618133932594, 38.602497093740517 ], [ -90.206575418227359, 38.60255700163767 ], [ -90.206532703598654, 38.602616909521252 ], [ -90.206511053925851, 38.602610873538424 ], [ -90.206476629352863, 38.602601276827826 ], [ -90.206078749243432, 38.602490351865889 ], [ -90.20658395833884, 38.601781790175039 ], [ -90.206981420815808, 38.601893297953644 ], [ -90.207037435741341, 38.601909012251639 ], [ -90.20743109242791, 38.60201945048793 ], [ -90.207227514460527, 38.602307570384895 ], [ -90.20720748311598, 38.602335920115515 ], [ -90.2070003224201, 38.602244232684171 ], [ -90.206846854307543, 38.60217630923146 ], [ -90.206831901929334, 38.602197279753995 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10842000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207873732997612, 38.601737850027362 ], [ -90.207916209910508, 38.601677837476181 ], [ -90.208245685071475, 38.601770119005359 ], [ -90.20820320837376, 38.601830131676024 ], [ -90.207873732997612, 38.601737850027362 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10848000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210913748116653, 38.600921121190026 ], [ -90.210956069593223, 38.600861042254671 ], [ -90.211376087932621, 38.601048151893686 ], [ -90.211333715115359, 38.601108209215369 ], [ -90.210913748116653, 38.600921121190026 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10848000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210662984701926, 38.601588993111037 ], [ -90.210819920869113, 38.601233097327103 ], [ -90.210859279861396, 38.601244071549687 ], [ -90.210793896879906, 38.601392328654114 ], [ -90.210789939247022, 38.601401303473843 ], [ -90.210872266260068, 38.60142425988213 ], [ -90.21095459332588, 38.6014472153539 ], [ -90.211071529708988, 38.601479821511447 ], [ -90.211069729709052, 38.60148237290305 ], [ -90.211016870411953, 38.601557293342601 ], [ -90.211005077446302, 38.601574008284402 ], [ -90.210939686083478, 38.601666689514992 ], [ -90.210925187657068, 38.60166261877076 ], [ -90.210866804085398, 38.601646224842341 ], [ -90.210784549708791, 38.60162312807347 ], [ -90.210702296536454, 38.601600031249724 ], [ -90.210662984701926, 38.601588993111037 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10848000290", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209942025460492, 38.601375736848908 ], [ -90.210171041733233, 38.601052163609829 ], [ -90.210200596947118, 38.601060404882567 ], [ -90.210282932555728, 38.601083363539495 ], [ -90.210315903969146, 38.601092557336472 ], [ -90.210159467284001, 38.601447603244026 ], [ -90.210126521217333, 38.601438351801605 ], [ -90.210044268465623, 38.601415255422374 ], [ -90.209959044550757, 38.601391323728507 ], [ -90.209935637121745, 38.601384762396528 ], [ -90.209942025460492, 38.601375736848908 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10877000040", "numunits (2020)": 6, "numunits (2018)": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211688777088199, 38.60255308783394 ], [ -90.21182125574083, 38.602588564698877 ], [ -90.211797843553867, 38.602640320127811 ], [ -90.211762823089657, 38.60271773686226 ], [ -90.211630757744246, 38.602681343864553 ], [ -90.21154821811929, 38.602658598274658 ], [ -90.211465677398976, 38.602635852623862 ], [ -90.211383136731087, 38.602613106914923 ], [ -90.211300596115635, 38.602590361147897 ], [ -90.211334167988738, 38.602516149980701 ], [ -90.211357580463797, 38.602464394617115 ], [ -90.21144038040552, 38.602486568018008 ], [ -90.21152317924728, 38.60250874135761 ], [ -90.211605978143922, 38.602530914611272 ], [ -90.211688777088199, 38.60255308783394 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10877000100", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211148534451112, 38.601900758908826 ], [ -90.211230814728637, 38.601923802324038 ], [ -90.211067359367973, 38.602285126669798 ], [ -90.211043946744056, 38.602336881070187 ], [ -90.210961550782088, 38.602314815583121 ], [ -90.210984916436473, 38.602263048479763 ], [ -90.21105475532336, 38.602108212239187 ], [ -90.211148534451112, 38.601900758908826 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10878180010", "numunits (2020)": 52, "numunits (2018)": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213364075812052, 38.603499759194008 ], [ -90.213281676004101, 38.603476701640275 ], [ -90.213199276252709, 38.603453643149926 ], [ -90.213116875406456, 38.603430585505016 ], [ -90.213106454459222, 38.603427669101897 ], [ -90.213102175760937, 38.603426471291563 ], [ -90.213135548935284, 38.603389496489363 ], [ -90.21332261957906, 38.603182235840478 ], [ -90.213392375123902, 38.603104951134412 ], [ -90.213407156010391, 38.603088574786582 ], [ -90.213434459923604, 38.603058324616811 ], [ -90.213467593032163, 38.60306760441518 ], [ -90.213549985472014, 38.603090679834345 ], [ -90.213632376817287, 38.603113755165317 ], [ -90.213714769363278, 38.60313683046865 ], [ -90.213747944975907, 38.603146121988829 ], [ -90.213797167758329, 38.603159892190874 ], [ -90.213879569685375, 38.603182944857004 ], [ -90.213995756331826, 38.60321544897463 ], [ -90.21397224917078, 38.603267176677676 ], [ -90.213809861603863, 38.603624502025816 ], [ -90.213693676708232, 38.603591990535094 ], [ -90.213611275547336, 38.603568932331527 ], [ -90.213528875580181, 38.603545874978963 ], [ -90.213446475666032, 38.603522817568518 ], [ -90.213364075812052, 38.603499759194008 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10878180021", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212896770809678, 38.603368991850665 ], [ -90.212872144534415, 38.60336210021115 ], [ -90.212798694630493, 38.60334154616929 ], [ -90.212889305335537, 38.603141555708433 ], [ -90.212960712216514, 38.602983951055791 ], [ -90.212984156925287, 38.602932207145898 ], [ -90.213020260103249, 38.602942317744947 ], [ -90.21305733690501, 38.602952702776271 ], [ -90.213102800186505, 38.602965436181755 ], [ -90.21322909035166, 38.603000806219384 ], [ -90.213187080401028, 38.603047350853096 ], [ -90.212943838840843, 38.6033168435401 ], [ -90.212896770809678, 38.603368991850665 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10878180130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212285785779841, 38.602218342891852 ], [ -90.212325331089531, 38.602229424277418 ], [ -90.212417602751813, 38.602255282272786 ], [ -90.212496692310111, 38.602277445845004 ], [ -90.212379635149389, 38.602536218340489 ], [ -90.212300545344178, 38.602514054689202 ], [ -90.212168727964354, 38.602477114242873 ], [ -90.212285785779841, 38.602218342891852 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10896000030", "numunits (2020)": 104, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205924321876608, 38.631022856039984 ], [ -90.206016749297774, 38.630753389343091 ], [ -90.206101127227257, 38.630771016434068 ], [ -90.206185505202043, 38.630788643436816 ], [ -90.206269883214887, 38.630806270406275 ], [ -90.206354261276616, 38.630823896408863 ], [ -90.206355023235631, 38.63082405595619 ], [ -90.206349566249528, 38.630839965482778 ], [ -90.2062608105267, 38.631098730070178 ], [ -90.206255353498605, 38.631114639591459 ], [ -90.206254502025345, 38.631114461779035 ], [ -90.206170137320271, 38.631096863664183 ], [ -90.20608577380149, 38.631079265491501 ], [ -90.206001409179521, 38.631061667282694 ], [ -90.205917045743973, 38.63104406898853 ], [ -90.205924321876608, 38.631022856039984 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10902000015", "numunits (2020)": 87, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207356997800659, 38.630862867783058 ], [ -90.207489158984657, 38.630477533310291 ], [ -90.207492796789197, 38.630466927251973 ], [ -90.207594279858725, 38.630488126410299 ], [ -90.208296537330099, 38.630634818757628 ], [ -90.20830017502422, 38.630624211740482 ], [ -90.208373245990401, 38.630411153596576 ], [ -90.208816441004387, 38.630503729045984 ], [ -90.208717011748533, 38.630793645128684 ], [ -90.20870337115835, 38.630833419610966 ], [ -90.208603834263542, 38.631123312796767 ], [ -90.20860351639098, 38.631123246243746 ], [ -90.207458481386638, 38.63088406708718 ], [ -90.207356997800659, 38.630862867783058 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10918000010", "numunits (2020)": 94, "numunits (2018)": 96 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211523293725676, 38.634183830987332 ], [ -90.211663958870915, 38.633772327753555 ], [ -90.212002301435859, 38.633842834064211 ], [ -90.211861663648889, 38.634254262998404 ], [ -90.211523293725676, 38.634183830987332 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10919008001", "numunits (2020)": 49, "numunits (2018)": 164 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212967019078107, 38.634484335559065 ], [ -90.213107567341169, 38.63407315013032 ], [ -90.213514668484436, 38.634157978300706 ], [ -90.213532508113872, 38.634161695607965 ], [ -90.213361922114032, 38.634433892687646 ], [ -90.213288653420236, 38.634550804582091 ], [ -90.213288389877562, 38.634551224666041 ], [ -90.213236944433149, 38.63454051727846 ], [ -90.212967019078107, 38.634484335559065 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10930000016", "numunits (2020)": 60, "numunits (2018)": 62 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213172697029719, 38.635460199957819 ], [ -90.213184333584053, 38.635430660411743 ], [ -90.213210835148345, 38.635366708166472 ], [ -90.213238915146746, 38.635303171662677 ], [ -90.213268562983856, 38.635240074865251 ], [ -90.213544295306392, 38.63523026132178 ], [ -90.213572274041226, 38.635229265595584 ], [ -90.213741877584638, 38.635223228728698 ], [ -90.214821700658263, 38.635428789531801 ], [ -90.214714164913232, 38.635745665980316 ], [ -90.214707861535587, 38.635764240430547 ], [ -90.214707091043422, 38.635766511507398 ], [ -90.214700657508857, 38.635785468502256 ], [ -90.214269213912658, 38.635696632173826 ], [ -90.214203011716918, 38.635683001092204 ], [ -90.213195980584416, 38.63547564210316 ], [ -90.213168872105626, 38.635470059803197 ], [ -90.213172697029719, 38.635460199957819 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10931000013", "numunits (2020)": 10, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214527711301471, 38.63704159512681 ], [ -90.214635391657524, 38.636726323731956 ], [ -90.214802829440259, 38.636766361194574 ], [ -90.214889063188807, 38.636786980990884 ], [ -90.214784261351781, 38.637095799378471 ], [ -90.21469726721709, 38.637077419055942 ], [ -90.214527711301471, 38.63704159512681 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10938000210", "numunits (2020)": 65, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208801559758527, 38.635793941887314 ], [ -90.208934345268005, 38.635408248186756 ], [ -90.208952598759964, 38.635355228609889 ], [ -90.209085381485181, 38.634969535633871 ], [ -90.209715884014244, 38.635101835574353 ], [ -90.209732815825092, 38.635105387286458 ], [ -90.209600718072309, 38.635491203396036 ], [ -90.209588778279411, 38.635488703661473 ], [ -90.209570526387097, 38.635541719743813 ], [ -90.209437731240087, 38.635927452855263 ], [ -90.209422729540606, 38.635924307683574 ], [ -90.20942082104996, 38.635923907469746 ], [ -90.208920123029898, 38.635818914599362 ], [ -90.208801559758527, 38.635793941887314 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10939000020", "numunits (2020)": 120, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207975041019779, 38.63420668292877 ], [ -90.208070036309266, 38.634226552062245 ], [ -90.208214823383997, 38.634256834738196 ], [ -90.208459397290838, 38.634307988012381 ], [ -90.208335268432222, 38.634670010352394 ], [ -90.208312537862639, 38.634736302271342 ], [ -90.208565132208307, 38.634789306757462 ], [ -90.208553767589422, 38.634822452741027 ], [ -90.208549140610273, 38.634835948217187 ], [ -90.208542402959992, 38.634855598723234 ], [ -90.208409341480305, 38.635243665133558 ], [ -90.208309031021599, 38.635222193007515 ], [ -90.208299904055949, 38.635248703199018 ], [ -90.208290777090653, 38.635275212483499 ], [ -90.208158798461653, 38.635658554334675 ], [ -90.208091616379718, 38.635644402971622 ], [ -90.208024434324344, 38.63563025244877 ], [ -90.207658721168002, 38.63555321887376 ], [ -90.207326413193044, 38.635483220465225 ], [ -90.207450211466721, 38.635122183989765 ], [ -90.207458805668523, 38.635097119353404 ], [ -90.207467897342454, 38.635070602851222 ], [ -90.207476990158014, 38.635044086323589 ], [ -90.207814724311334, 38.635116382451585 ], [ -90.207946985626435, 38.634730655220999 ], [ -90.207608798672553, 38.634659687142253 ], [ -90.207609909841167, 38.634656445816724 ], [ -90.207620163699758, 38.634626541251166 ], [ -90.207631528716362, 38.634593395358721 ], [ -90.207654259862721, 38.634527103572694 ], [ -90.207748909204128, 38.634251067448609 ], [ -90.207778385396239, 38.63416555129956 ], [ -90.207975041019779, 38.63420668292877 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10943000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20437418705319, 38.634861307048737 ], [ -90.204505988421147, 38.634475321285059 ], [ -90.204609943778905, 38.634497261686171 ], [ -90.204477899799485, 38.634883156862713 ], [ -90.20437418705319, 38.634861307048737 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10944000015", "numunits (2020)": 75, "numunits (2018)": 69 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204191739145458, 38.635926280773084 ], [ -90.204318580602234, 38.635554831194533 ], [ -90.204322203069978, 38.635544221581668 ], [ -90.204325443054458, 38.635534733530498 ], [ -90.204528811481779, 38.635577577892562 ], [ -90.204543685999198, 38.635534017005945 ], [ -90.204674147330508, 38.635151958292894 ], [ -90.205575136803134, 38.635341765673751 ], [ -90.205567629737615, 38.635363705944116 ], [ -90.205294410234842, 38.636158574808285 ], [ -90.20528421146355, 38.636156425838223 ], [ -90.204621133089447, 38.636016740946744 ], [ -90.204573797991785, 38.636006768907336 ], [ -90.204205263587028, 38.635929131005298 ], [ -90.204191739145458, 38.635926280773084 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "10975000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214690248101064, 38.643046065939679 ], [ -90.214734038940364, 38.643045492142548 ], [ -90.214738543517825, 38.64337156623089 ], [ -90.214694750286696, 38.643372113004006 ], [ -90.214677129375545, 38.643372333258228 ], [ -90.214672626075043, 38.643046297009505 ], [ -90.214690248101064, 38.643046065939679 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10980050140", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21418717489577, 38.638956863613274 ], [ -90.214624551097288, 38.638951906447666 ], [ -90.214626274395812, 38.639090624295626 ], [ -90.214188915735392, 38.639095580602984 ], [ -90.214188226162563, 38.639040589870937 ], [ -90.21418717489577, 38.638956863613274 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10985000050", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216362121975394, 38.634194941962065 ], [ -90.216369274855865, 38.634173703745319 ], [ -90.216471769426903, 38.634194951709205 ], [ -90.216522825079167, 38.634205535997275 ], [ -90.21651508121046, 38.634226652087214 ], [ -90.216400204461223, 38.634539881894675 ], [ -90.216392460520069, 38.634560997975051 ], [ -90.21635132477148, 38.634552469964689 ], [ -90.21624886301376, 38.634531228263327 ], [ -90.216362121975394, 38.634194941962065 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10987000040", "numunits (2020)": 252, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218221223484775, 38.633005830680389 ], [ -90.218257821526151, 38.632898823898266 ], [ -90.218319258749688, 38.632719185145383 ], [ -90.218338415622057, 38.632663173503033 ], [ -90.218347352139332, 38.632637048541014 ], [ -90.218352022564986, 38.632623390600848 ], [ -90.218389028014172, 38.632515189290267 ], [ -90.218671620204333, 38.632573614048837 ], [ -90.218874725735475, 38.632615604975534 ], [ -90.219746203253862, 38.632795773372024 ], [ -90.21971016191911, 38.632901971142182 ], [ -90.219696653219927, 38.632941774261184 ], [ -90.219646147939073, 38.633090591708374 ], [ -90.219579723933791, 38.633286313538306 ], [ -90.219525691927231, 38.633445522341411 ], [ -90.219409347738647, 38.633788331329384 ], [ -90.219400342102389, 38.633814866111159 ], [ -90.219395838707612, 38.633828133500337 ], [ -90.219329615498793, 38.634023260165165 ], [ -90.219325462886374, 38.634032243225889 ], [ -90.219319389139258, 38.634040526254317 ], [ -90.219311577903113, 38.634047858804088 ], [ -90.21930226535882, 38.634054019167507 ], [ -90.219291733081064, 38.634058821079165 ], [ -90.219280299524826, 38.634062119347952 ], [ -90.21926831039633, 38.634063814247007 ], [ -90.2192561282003, 38.634063854529153 ], [ -90.219244121279132, 38.634062238976441 ], [ -90.218508927356552, 38.63390958039863 ], [ -90.218497464218729, 38.633906317703513 ], [ -90.21848689591944, 38.633901545482104 ], [ -90.218477542587337, 38.633895408291849 ], [ -90.218469687547739, 38.633888092036919 ], [ -90.218463568740461, 38.633879818336993 ], [ -90.218459371512111, 38.633870837814065 ], [ -90.218457223001806, 38.633861422500644 ], [ -90.218457188290103, 38.633851857599559 ], [ -90.218459268427623, 38.633842432844759 ], [ -90.21852523291011, 38.6336473564917 ], [ -90.218529720381696, 38.633634086379217 ], [ -90.218538695330267, 38.633607545274948 ], [ -90.218637078894403, 38.633316591437122 ], [ -90.218641975206836, 38.63329928719395 ], [ -90.21864505534846, 38.633281727310163 ], [ -90.218646298785131, 38.633264028858207 ], [ -90.218646292612831, 38.633260014496848 ], [ -90.218645060087624, 38.633240311881814 ], [ -90.218642413969107, 38.633224665260435 ], [ -90.218639486818802, 38.633213049446937 ], [ -90.218637090978135, 38.633205383488153 ], [ -90.218629543744811, 38.633186565745376 ], [ -90.218625924679642, 38.633179201349719 ], [ -90.218621966374315, 38.6331719442476 ], [ -90.218617674528076, 38.633164805244036 ], [ -90.218605536306356, 38.633147527828513 ], [ -90.218600121590399, 38.633140874438617 ], [ -90.218585270963956, 38.633124953535201 ], [ -90.218583989395029, 38.633123721673108 ], [ -90.218582078418734, 38.633121902711736 ], [ -90.21856747138203, 38.633109210067666 ], [ -90.218551635979779, 38.633097458616376 ], [ -90.218534670470504, 38.63308672127507 ], [ -90.218526483168688, 38.633082131457819 ], [ -90.218511665631013, 38.633074670073562 ], [ -90.218496273143955, 38.633067962915526 ], [ -90.218487245411637, 38.633064474660344 ], [ -90.218485464232344, 38.633063831667137 ], [ -90.218482669122537, 38.633062833999553 ], [ -90.218473411285473, 38.633059741590522 ], [ -90.218456892539635, 38.633054956879768 ], [ -90.218440019291606, 38.633051005867287 ], [ -90.218221223484775, 38.633005830680389 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10995000010", "numunits (2020)": 16, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218112434405597, 38.637475439224488 ], [ -90.218119170689206, 38.637455534118814 ], [ -90.218911619902613, 38.637621045396052 ], [ -90.218938684564833, 38.637626698339993 ], [ -90.218931945049803, 38.637646602578677 ], [ -90.218820823830725, 38.637974782047785 ], [ -90.218718342577461, 38.637953569514849 ], [ -90.218633647217089, 38.637936039050579 ], [ -90.218548951898214, 38.637918508552588 ], [ -90.218464255476135, 38.637900977084456 ], [ -90.218379560244088, 38.637883446436568 ], [ -90.218294865050012, 38.63786591575488 ], [ -90.21821016989766, 38.637848384984544 ], [ -90.218125474790284, 38.637830854180457 ], [ -90.218040779721122, 38.637813323287702 ], [ -90.21800086875227, 38.63780506185666 ], [ -90.218008054798602, 38.637783830853856 ], [ -90.218093999982187, 38.637529903909979 ], [ -90.218112434405597, 38.637475439224488 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10997000070", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217598095292715, 38.638959403820451 ], [ -90.217611395896014, 38.638946652253466 ], [ -90.217679106737293, 38.638990152058341 ], [ -90.217746816508765, 38.63903365179381 ], [ -90.217733515916564, 38.639046403403526 ], [ -90.217494096367759, 38.639275937117844 ], [ -90.217480795686029, 38.639288688670547 ], [ -90.21741308583394, 38.639245188755218 ], [ -90.217345374918892, 38.639201688797968 ], [ -90.217358675608352, 38.639188937260514 ], [ -90.217598095292715, 38.638959403820451 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10998000010", "numunits (2020)": 100, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215929662550352, 38.639793177961486 ], [ -90.215928830134629, 38.6397245339789 ], [ -90.215927998868494, 38.639655889998288 ], [ -90.215927166455174, 38.639587246014088 ], [ -90.215926335194894, 38.639518602031877 ], [ -90.215925502784017, 38.639449958018645 ], [ -90.215924670374235, 38.639381314032057 ], [ -90.215923837965647, 38.639312670044696 ], [ -90.215922846926091, 38.639230928604292 ], [ -90.215922647610014, 38.639214453677937 ], [ -90.215922099622418, 38.639169259464254 ], [ -90.215921569100004, 38.639125464411343 ], [ -90.215921020252267, 38.639080198142437 ], [ -90.215920820933377, 38.639063724094349 ], [ -90.215920026613105, 38.638998243198756 ], [ -90.215919287076204, 38.638937228121208 ], [ -90.215966987543808, 38.638936686709279 ], [ -90.216066446787167, 38.638935558718963 ], [ -90.216167997791658, 38.638934406894052 ], [ -90.216270702079882, 38.638933241510962 ], [ -90.21637555211818, 38.638932051535626 ], [ -90.216440538048076, 38.638931313843912 ], [ -90.216453120125237, 38.638931726232059 ], [ -90.216465565376978, 38.638933235050864 ], [ -90.216477718967909, 38.638935821528612 ], [ -90.216490496950911, 38.638939835086731 ], [ -90.216502557238272, 38.638945038386318 ], [ -90.216513720567292, 38.638951354086196 ], [ -90.216589895526852, 38.63900029285746 ], [ -90.216657606938682, 38.639043794159981 ], [ -90.216725318436048, 38.639087295395861 ], [ -90.216793030011686, 38.639130797526121 ], [ -90.216860741672804, 38.63917429871104 ], [ -90.21692845341596, 38.639217799829275 ], [ -90.216996164089053, 38.639261300932979 ], [ -90.217063875995933, 38.639304802000289 ], [ -90.217131587984852, 38.639348303000901 ], [ -90.217199300052002, 38.639391804895915 ], [ -90.217267012204744, 38.63943530581809 ], [ -90.217334724439297, 38.63947880672854 ], [ -90.21740243675228, 38.639522307599769 ], [ -90.21745660505961, 38.639557107539758 ], [ -90.217456788924579, 38.639578791344725 ], [ -90.217458695954889, 38.63980338908555 ], [ -90.217283934733516, 38.639807979315826 ], [ -90.21724579189096, 38.639783835695447 ], [ -90.217177681617258, 38.639740723887215 ], [ -90.21710710031293, 38.639809313008371 ], [ -90.21709390716461, 38.639822133257447 ], [ -90.217080714011615, 38.639834954383673 ], [ -90.217060850478745, 38.639854256626784 ], [ -90.217062692915576, 38.639855428621665 ], [ -90.217089847088616, 38.639872703628114 ], [ -90.217110314416814, 38.639885724748481 ], [ -90.217135721270935, 38.639901888334037 ], [ -90.217006583427434, 38.639903480854791 ], [ -90.216985580436258, 38.639903739248744 ], [ -90.216878068181643, 38.639905064820937 ], [ -90.21642126109127, 38.639910696989915 ], [ -90.216368750153677, 38.639911344083288 ], [ -90.215931159750312, 38.639916737855764 ], [ -90.215930493818831, 38.639861821940499 ], [ -90.215929662550352, 38.639793177961486 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "10998000085", "numunits (2020)": 21, "numunits (2018)": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21730296251144, 38.639954749429272 ], [ -90.217459964688999, 38.63995281282083 ], [ -90.217460831873268, 38.640054894091321 ], [ -90.217461333497013, 38.640113933835181 ], [ -90.217461354609654, 38.640116462668146 ], [ -90.217461466133344, 38.640129634774212 ], [ -90.217462721371817, 38.640277520627215 ], [ -90.217457804873106, 38.640277580881303 ], [ -90.217357701273841, 38.640278815701414 ], [ -90.217270184139764, 38.640279895136125 ], [ -90.21718266815175, 38.640280974535607 ], [ -90.217095151013268, 38.640282053839371 ], [ -90.217007633872413, 38.640283133105143 ], [ -90.216920116729511, 38.640284212277926 ], [ -90.216885675958608, 38.640284637373952 ], [ -90.216832600736126, 38.640285291415502 ], [ -90.216829846892338, 38.639960584483852 ], [ -90.216879169042912, 38.639959976370207 ], [ -90.216917362494328, 38.6399595053743 ], [ -90.217004879246161, 38.639958425268432 ], [ -90.217092395992054, 38.639957346030691 ], [ -90.217179912735872, 38.639956266700011 ], [ -90.217218493297651, 38.639955791128422 ], [ -90.21730296251144, 38.639954749429272 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11001000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215962637077993, 38.642539300869728 ], [ -90.216067937835007, 38.642537878014714 ], [ -90.216071998510273, 38.642863275330974 ], [ -90.216019338343813, 38.642863932695107 ], [ -90.215966677024596, 38.642864590938892 ], [ -90.215964023037117, 38.642650874174997 ], [ -90.215962637077993, 38.642539300869728 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11004000332", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219263867792421, 38.643841645020835 ], [ -90.219369952712427, 38.643840212063864 ], [ -90.219376675439534, 38.644165498459962 ], [ -90.219271468297748, 38.644166768683853 ], [ -90.219263867792421, 38.643841645020835 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11004000334", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219585054217632, 38.643837305108711 ], [ -90.219585604482845, 38.643837297415772 ], [ -90.219590588882866, 38.644162915694267 ], [ -90.219518496343909, 38.644163785889639 ], [ -90.219477221996499, 38.644164284615371 ], [ -90.219474780868524, 38.643838794928584 ], [ -90.219585054217632, 38.643837305108711 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11004000335", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219585604482845, 38.643837297415772 ], [ -90.21969215924365, 38.643835857160354 ], [ -90.219695254938244, 38.644161652020024 ], [ -90.219590588882866, 38.644162915694267 ], [ -90.219585604482845, 38.643837297415772 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11004000336", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21969215924365, 38.643835857160354 ], [ -90.219841497876473, 38.643833838697461 ], [ -90.219843279397466, 38.644071085260528 ], [ -90.219843945503129, 38.644159856320975 ], [ -90.219695254938244, 38.644161652020024 ], [ -90.21969215924365, 38.643835857160354 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11005000021", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219699209164361, 38.643346829252664 ], [ -90.219736202884263, 38.643346349066725 ], [ -90.219837828487016, 38.643345029379063 ], [ -90.219839213788546, 38.643529602137271 ], [ -90.219840260767214, 38.64366907854032 ], [ -90.219789791690104, 38.643669760839813 ], [ -90.219739323760436, 38.643670443147741 ], [ -90.219702375747417, 38.64367094236276 ], [ -90.219699209164361, 38.643346829252664 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11005000022", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219561323898162, 38.643348619923167 ], [ -90.219648763392399, 38.643347484527624 ], [ -90.219699209164361, 38.643346829252664 ], [ -90.219702375747417, 38.64367094236276 ], [ -90.21965190666802, 38.643671624602767 ], [ -90.219564489576641, 38.643672805992473 ], [ -90.219561323898162, 38.643348619923167 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11006000090", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218940495196819, 38.642502193576469 ], [ -90.219027946818628, 38.642501221751516 ], [ -90.219030983802284, 38.642826273297942 ], [ -90.218943616313993, 38.642827366969293 ], [ -90.218940495196819, 38.642502193576469 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11006000130", "numunits (2020)": 8, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218590687544832, 38.642506079396043 ], [ -90.218678140322837, 38.642505107835312 ], [ -90.218681516132477, 38.642830647597272 ], [ -90.218594149787194, 38.642831740982864 ], [ -90.218506782287662, 38.642832834327947 ], [ -90.21841941593425, 38.642833927610489 ], [ -90.218415784279429, 38.642508022381705 ], [ -90.21850323591309, 38.642507050921552 ], [ -90.218590687544832, 38.642506079396043 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11011000010", "numunits (2020)": 48, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219019244492287, 38.638016185812234 ], [ -90.21913093562064, 38.637688035444384 ], [ -90.219248902018066, 38.637712565650055 ], [ -90.219333770250614, 38.637730213195148 ], [ -90.219418638525141, 38.637747860678807 ], [ -90.21950350569692, 38.637765508070785 ], [ -90.219588374055348, 38.637783155431499 ], [ -90.219673242455855, 38.637800802703289 ], [ -90.21975811089824, 38.637818449941065 ], [ -90.21984297823434, 38.637836097993336 ], [ -90.219927846760626, 38.637853745108202 ], [ -90.220012715325453, 38.63787139304025 ], [ -90.220097583935669, 38.637889040032171 ], [ -90.220182451439626, 38.637906686932411 ], [ -90.220267320133772, 38.63792433470752 ], [ -90.220352188869981, 38.637941981487614 ], [ -90.220437057644517, 38.637959629139779 ], [ -90.220489669261696, 38.637970568547424 ], [ -90.220521925316334, 38.637977275794185 ], [ -90.220606794181791, 38.637994922417299 ], [ -90.220691663085844, 38.638012568951488 ], [ -90.220809630552381, 38.638037097585922 ], [ -90.220698949526323, 38.638366666334072 ], [ -90.220580910728756, 38.638342037440829 ], [ -90.220495991199897, 38.638324319505145 ], [ -90.220411071716612, 38.638306600629235 ], [ -90.220326152278957, 38.6382888816918 ], [ -90.22024123287656, 38.63827116357151 ], [ -90.220156313519709, 38.63825344451098 ], [ -90.220071393056699, 38.638235725386167 ], [ -90.219986473780793, 38.638218007081257 ], [ -90.219901554546908, 38.638200288742247 ], [ -90.219816635358697, 38.63818256943555 ], [ -90.219731716212749, 38.63816485003985 ], [ -90.219646797105341, 38.638147131516227 ], [ -90.219561876895284, 38.638129412022181 ], [ -90.219476957872303, 38.638111693348023 ], [ -90.219392038894895, 38.638093973733625 ], [ -90.219307119956099, 38.638076254963856 ], [ -90.219246493112905, 38.638063603981173 ], [ -90.219222201063104, 38.638058535198901 ], [ -90.219137282212131, 38.638040816306059 ], [ -90.219019244492287, 38.638016185812234 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11011000090", "numunits (2020)": 48, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219144481112039, 38.63764824154616 ], [ -90.219266082055753, 38.637290970183692 ], [ -90.219383928464524, 38.637315481954204 ], [ -90.21946871016813, 38.6373331165642 ], [ -90.219553491913487, 38.637350751140318 ], [ -90.219638272556054, 38.637368384718798 ], [ -90.219723054388709, 38.637386018266092 ], [ -90.219807836259847, 38.637403652630752 ], [ -90.219892618172864, 38.637421286934035 ], [ -90.219977400131299, 38.637438920269858 ], [ -90.220062182127975, 38.637456554477936 ], [ -90.220146963021861, 38.637474187688341 ], [ -90.220231745105849, 38.637491820867588 ], [ -90.220316527228292, 38.637509454864187 ], [ -90.220347137268703, 38.637515821318274 ], [ -90.220401309396166, 38.637527087893318 ], [ -90.220474498775857, 38.637542310465058 ], [ -90.220486091602282, 38.637544721794683 ], [ -90.220570873850377, 38.637562355607258 ], [ -90.220655654995568, 38.637579988449616 ], [ -90.220740437327436, 38.637597622139516 ], [ -90.220825219704622, 38.637615254889361 ], [ -90.220943067184123, 38.637639765091869 ], [ -90.220823006471164, 38.637997268850192 ], [ -90.220705050541483, 38.637972742041441 ], [ -90.220620190860643, 38.637955097323676 ], [ -90.22053533122525, 38.637937452544449 ], [ -90.220450470479889, 38.637919807728501 ], [ -90.220365610928397, 38.637902162826371 ], [ -90.220280751415359, 38.63788451786278 ], [ -90.220195890799474, 38.637866871928864 ], [ -90.220111031373833, 38.637849226842384 ], [ -90.220026171986646, 38.637831581694435 ], [ -90.219941311496626, 38.637813935576148 ], [ -90.219856452196836, 38.637796290305317 ], [ -90.21977159293553, 38.63777864497299 ], [ -90.219686732574758, 38.637760998697836 ], [ -90.219601873397323, 38.637743353242627 ], [ -90.219517014261868, 38.637725707725956 ], [ -90.219432154027047, 38.637708061238968 ], [ -90.21934729497552, 38.63769041559938 ], [ -90.219262435969412, 38.637672769898359 ], [ -90.219144481112039, 38.63764824154616 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11013000012", "numunits (2020)": 25, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220580772438254, 38.635986248830086 ], [ -90.220701468863652, 38.635626845828853 ], [ -90.221558720523475, 38.635806484899504 ], [ -90.221438126825333, 38.636165596227201 ], [ -90.221431438633402, 38.636185511528936 ], [ -90.22057408402992, 38.636006164082595 ], [ -90.220580772438254, 38.635986248830086 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11021040080", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224098514543229, 38.636167115045545 ], [ -90.2241999853495, 38.635864648773882 ], [ -90.224223121358236, 38.635869462450266 ], [ -90.224281247739299, 38.635881556330141 ], [ -90.224179584439156, 38.636183982596513 ], [ -90.224120003718213, 38.636171586167471 ], [ -90.224098514543229, 38.636167115045545 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11022030051", "numunits (2020)": 58, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221516572863365, 38.636578832511574 ], [ -90.221628099061945, 38.636246726188148 ], [ -90.222239506188018, 38.636375717086949 ], [ -90.222188644354546, 38.636527177884091 ], [ -90.222224909778888, 38.636534755396106 ], [ -90.222164232173881, 38.636714171763714 ], [ -90.221516572863365, 38.636578832511574 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11023030010", "numunits (2020)": 36, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221540008798343, 38.637593468050135 ], [ -90.221660374619105, 38.637234973280606 ], [ -90.22167863554624, 38.637238763329535 ], [ -90.22174547943284, 38.637252637651308 ], [ -90.221830585437132, 38.637270302841635 ], [ -90.221915689183305, 38.637287967992144 ], [ -90.222000794123517, 38.637305633056108 ], [ -90.22208589910224, 38.637323298085725 ], [ -90.222171004123183, 38.637340963026077 ], [ -90.222256109189658, 38.63735862793208 ], [ -90.222341214294815, 38.637376292748797 ], [ -90.222426319449013, 38.637393956625047 ], [ -90.222511424638327, 38.637411621345585 ], [ -90.222596528725035, 38.637429285068031 ], [ -90.222681634002072, 38.637446949664991 ], [ -90.222766739321216, 38.63746461329395 ], [ -90.222851844682609, 38.637482277739821 ], [ -90.222731407898124, 38.637841243822749 ], [ -90.222688857950089, 38.637832394916607 ], [ -90.222646308016209, 38.637823545967557 ], [ -90.222561207028264, 38.637805848020371 ], [ -90.222476107230733, 38.637788150041558 ], [ -90.222414786692397, 38.637775397270367 ], [ -90.222391007475395, 38.63777045200095 ], [ -90.222305907762376, 38.637752753871069 ], [ -90.222234990219292, 38.637738005388726 ], [ -90.222220806943113, 38.637735055704127 ], [ -90.222135707314465, 38.637717357450654 ], [ -90.222050607727923, 38.63769965916282 ], [ -90.22200805794877, 38.637690809981976 ], [ -90.22196550703535, 38.637681960783027 ], [ -90.221880407533178, 38.637664262371565 ], [ -90.221795308073297, 38.637646563870859 ], [ -90.221710208652027, 38.637628866241975 ], [ -90.221625108131619, 38.637611166736257 ], [ -90.221540008798343, 38.637593468050135 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11025000010", "numunits (2020)": 36, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220689041294847, 38.639036967494846 ], [ -90.220704441875938, 38.638991667113423 ], [ -90.220789081092292, 38.639009315747806 ], [ -90.220873721502315, 38.639026964323818 ], [ -90.220958363099044, 38.639044613747522 ], [ -90.221043002440965, 38.639062262198493 ], [ -90.221127642976541, 38.639079910591057 ], [ -90.221212283550486, 38.639097558922494 ], [ -90.221296925314746, 38.639115208074202 ], [ -90.221381564827539, 38.639132856280632 ], [ -90.221466205527037, 38.639150504428642 ], [ -90.221550846268414, 38.639168153421657 ], [ -90.2216354870516, 38.639185801447411 ], [ -90.221720127876665, 38.639203450318135 ], [ -90.221804768743553, 38.639221098221626 ], [ -90.221889409655816, 38.639238746063945 ], [ -90.221974049461593, 38.639256393842402 ], [ -90.222058691598875, 38.6392740424713 ], [ -90.222143331488326, 38.639291690127486 ], [ -90.222227972560987, 38.639309338631392 ], [ -90.222158137541442, 38.639517474162282 ], [ -90.222130318460714, 38.639600384302106 ], [ -90.222107456347018, 38.639668523574976 ], [ -90.222065100680354, 38.639659672184585 ], [ -90.222022745024162, 38.639650820778897 ], [ -90.221938034884758, 38.639633118802976 ], [ -90.221853323642435, 38.639615415884386 ], [ -90.221768613590555, 38.639597713786003 ], [ -90.221683902432233, 38.639580010744943 ], [ -90.221599192464282, 38.639562308551525 ], [ -90.22151448138662, 38.639544606266696 ], [ -90.221429771499174, 38.639526903950781 ], [ -90.221345060512519, 38.63950920063732 ], [ -90.221260349564275, 38.639491497290052 ], [ -90.221175639803008, 38.639473794762971 ], [ -90.221090928942289, 38.639456091293255 ], [ -90.221006219264922, 38.639438388671174 ], [ -90.221091310333819, 38.639187176411063 ], [ -90.221006657209813, 38.63916948562067 ], [ -90.220922005279633, 38.639151794771884 ], [ -90.220837352243052, 38.63913410385917 ], [ -90.220752700396758, 38.639116411981945 ], [ -90.220668048592444, 38.639098720949676 ], [ -90.220689041294847, 38.639036967494846 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11025000090", "numunits (2020)": 12, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221564283963744, 38.639128337358677 ], [ -90.221675836629132, 38.63879779963171 ], [ -90.221760388593609, 38.638815440162972 ], [ -90.221844941748344, 38.638833080608514 ], [ -90.221929493799948, 38.638850721017768 ], [ -90.222014045889921, 38.638868361338531 ], [ -90.222098598021574, 38.638886001625785 ], [ -90.222183151339962, 38.638903642733403 ], [ -90.222267703551722, 38.638921283804741 ], [ -90.222352255812353, 38.638938923881483 ], [ -90.222323827147832, 38.639023652453901 ], [ -90.222293368438429, 38.63911443463833 ], [ -90.222286546511285, 38.63913476588651 ], [ -90.222201949283232, 38.639117115743545 ], [ -90.22211735209018, 38.639099466418202 ], [ -90.222032753797478, 38.639081816150345 ], [ -90.222017799447428, 38.639126288940062 ], [ -90.222102283797156, 38.639144310140033 ], [ -90.222186767037783, 38.639162331248876 ], [ -90.222271251469309, 38.639180352326996 ], [ -90.222241337612076, 38.639269506091104 ], [ -90.222156705759232, 38.639251860309585 ], [ -90.222072073948127, 38.639234214494422 ], [ -90.221987442178815, 38.639216568618124 ], [ -90.221902810451496, 38.639198922653229 ], [ -90.221818178769396, 38.639181275748548 ], [ -90.221733547125623, 38.639163629688859 ], [ -90.221648915523829, 38.639145983540615 ], [ -90.221564283963744, 38.639128337358677 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11026000060", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221119409808153, 38.640441714609494 ], [ -90.221240534233416, 38.640084890690858 ], [ -90.221325251187835, 38.640102704890346 ], [ -90.221204187353692, 38.64045940742399 ], [ -90.221119409808153, 38.640441714609494 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11027000070", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220933809341176, 38.641526100493579 ], [ -90.221209861562329, 38.641248648570333 ], [ -90.221277983513147, 38.641291813904189 ], [ -90.221341095794216, 38.641331805245663 ], [ -90.221063497051176, 38.641609407875094 ], [ -90.221002121593585, 38.641569982678817 ], [ -90.220933809341176, 38.641526100493579 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11028000380", "numunits (2020)": 4, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221665287386898, 38.64272974848226 ], [ -90.221943917875208, 38.642477650069502 ], [ -90.221968223525153, 38.642493337040662 ], [ -90.222011636223158, 38.642521337437245 ], [ -90.222078681319175, 38.642564479951396 ], [ -90.222146007668954, 38.642607688856444 ], [ -90.221946055160416, 38.642788603298328 ], [ -90.221906003729231, 38.642789129199308 ], [ -90.221829278212326, 38.642790135797185 ], [ -90.221762304496394, 38.642791015022858 ], [ -90.221746236569075, 38.642780868126437 ], [ -90.221733607520505, 38.642772892428901 ], [ -90.221665287386898, 38.64272974848226 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11029000065", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221463821498091, 38.643327206470367 ], [ -90.22160382385637, 38.643325686135249 ], [ -90.221605955363785, 38.64364519772856 ], [ -90.221465986551678, 38.643647091999071 ], [ -90.221463821498091, 38.643327206470367 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11029000085", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221183817915275, 38.643330246640652 ], [ -90.221323820283331, 38.64332872664064 ], [ -90.221326018878074, 38.643648986132263 ], [ -90.221186050053319, 38.643650880067817 ], [ -90.221183817915275, 38.643330246640652 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11029000445", "numunits (2020)": 6, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221653939351214, 38.642957210991263 ], [ -90.221741467987712, 38.642956062544549 ], [ -90.221743616353663, 38.643282975849907 ], [ -90.221656103017068, 38.643283926134956 ], [ -90.221568587378172, 38.643284876376484 ], [ -90.221481072889247, 38.643285826555307 ], [ -90.221456718121587, 38.64328609131325 ], [ -90.221454523752683, 38.642959827437828 ], [ -90.221478880918994, 38.642959507712966 ], [ -90.221566409560282, 38.642958359397234 ], [ -90.221653939351214, 38.642957210991263 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11030000200", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220404702614502, 38.64432591715812 ], [ -90.220509849429774, 38.644324262032484 ], [ -90.220510623182619, 38.644394357112432 ], [ -90.220405050234803, 38.644395974291974 ], [ -90.220230353234172, 38.644398651076465 ], [ -90.220055841181221, 38.644401324443692 ], [ -90.220055316414616, 38.644331417334904 ], [ -90.220229586190598, 38.644328674029779 ], [ -90.220404702614502, 38.64432591715812 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11030000221", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22005325669096, 38.644057342016517 ], [ -90.220172866914652, 38.644055914424001 ], [ -90.220261275321789, 38.644054859247959 ], [ -90.220351887069882, 38.644053777727621 ], [ -90.220437662481515, 38.64405275398839 ], [ -90.220464363404545, 38.644052435577436 ], [ -90.220464821812612, 38.644155872508712 ], [ -90.220405781703306, 38.644156577045813 ], [ -90.220054033866589, 38.644160775204995 ], [ -90.22005325669096, 38.644057342016517 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11030000415", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221464697771935, 38.643811887618142 ], [ -90.221600735796088, 38.643810047079569 ], [ -90.221603630368818, 38.644142272813809 ], [ -90.221468744768799, 38.644143884553188 ], [ -90.221464697771935, 38.643811887618142 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11030000425", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221600735796088, 38.643810047079569 ], [ -90.221732492324378, 38.643808263817142 ], [ -90.221735085722514, 38.644140702329182 ], [ -90.221603630368818, 38.644142272813809 ], [ -90.221600735796088, 38.643810047079569 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11030000435", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221732492324378, 38.643808263817142 ], [ -90.2218663430654, 38.643806452935799 ], [ -90.22186741299025, 38.644139121185063 ], [ -90.221735085722514, 38.644140702329182 ], [ -90.221732492324378, 38.643808263817142 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11030000455", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221998786553812, 38.643804660181132 ], [ -90.222102587614174, 38.64380325536721 ], [ -90.222182492992815, 38.643802173213395 ], [ -90.222183506156611, 38.644135344019283 ], [ -90.221999531174632, 38.644137542966135 ], [ -90.221998786553812, 38.643804660181132 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11036000012", "numunits (2020)": 141, "numunits (2018)": 147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222310063336934, 38.639712062256962 ], [ -90.222430052242402, 38.639354446982459 ], [ -90.22251463369787, 38.639372104144641 ], [ -90.222599216343468, 38.639389761248474 ], [ -90.22268379788261, 38.639407418288563 ], [ -90.222768379467098, 38.639425075267575 ], [ -90.222852961089899, 38.639442732185557 ], [ -90.222937543903015, 38.639460389017714 ], [ -90.223022125612999, 38.639478045813597 ], [ -90.223106707361325, 38.639495702548395 ], [ -90.223148993085374, 38.639504529974587 ], [ -90.223191289151501, 38.63951335922215 ], [ -90.223214484735152, 38.639518201190036 ], [ -90.223237679173721, 38.63952304312317 ], [ -90.223307804588629, 38.639495059284037 ], [ -90.223420210153506, 38.639160029207453 ], [ -90.223867680760392, 38.639253653139519 ], [ -90.224009327060514, 38.639295330292953 ], [ -90.224150085228544, 38.639322691025832 ], [ -90.224186395809156, 38.639364250319439 ], [ -90.223938030676251, 38.640017630599786 ], [ -90.223883617336952, 38.640040543737683 ], [ -90.223305022576596, 38.639919763851729 ], [ -90.223166396925151, 38.639890826066875 ], [ -90.223155887127163, 38.639888631982927 ], [ -90.223071303757067, 38.639870975280452 ], [ -90.222986721577186, 38.63985331851962 ], [ -90.22290213943559, 38.639835661697717 ], [ -90.222817557339397, 38.639818004814771 ], [ -90.222732974136633, 38.639800347868039 ], [ -90.222648392120618, 38.639782690863001 ], [ -90.222563810149921, 38.639765033796877 ], [ -90.222479228220962, 38.639747376697159 ], [ -90.222394645185602, 38.639729719506235 ], [ -90.222352354830221, 38.639720890890587 ], [ -90.222310063336934, 38.639712062256962 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11042180100", "numunits (2020)": 79, "numunits (2018)": 77 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22666163800811, 38.636347949363689 ], [ -90.226743550651847, 38.636110331523213 ], [ -90.22684486511335, 38.636132040609262 ], [ -90.2276890728089, 38.63631292873665 ], [ -90.227903282928267, 38.636358826046681 ], [ -90.228129001806039, 38.636457891904669 ], [ -90.228177307804742, 38.636479093392033 ], [ -90.228103574985596, 38.636692995547655 ], [ -90.22808741089564, 38.636739886135949 ], [ -90.228188929875287, 38.636761005369806 ], [ -90.228290448918358, 38.636782123609549 ], [ -90.22828710440713, 38.636791825605989 ], [ -90.228207757881222, 38.637022013631437 ], [ -90.228136695240735, 38.637007231456124 ], [ -90.228106238521434, 38.637000895319673 ], [ -90.228075782955926, 38.636994560084126 ], [ -90.228004719225183, 38.636979776919986 ], [ -90.227835520914354, 38.636944579392541 ], [ -90.227666322770233, 38.636909381648273 ], [ -90.227497124789494, 38.636874183632195 ], [ -90.227327932720797, 38.636838986263811 ], [ -90.226649796895288, 38.636697910200724 ], [ -90.226548277312304, 38.636676790536484 ], [ -90.226643362856748, 38.636400963560078 ], [ -90.226652500435833, 38.636374456462306 ], [ -90.22666163800811, 38.636347949363689 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11047000010", "numunits (2020)": 44, "numunits (2018)": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225294204084449, 38.640678669634177 ], [ -90.225349958964998, 38.640519102941987 ], [ -90.226700601502458, 38.640801866554867 ], [ -90.226703982794788, 38.640802574405889 ], [ -90.22658284079057, 38.641157520186326 ], [ -90.226569260854617, 38.641197308558191 ], [ -90.226445850101015, 38.641558896523378 ], [ -90.22644316320374, 38.641558326313792 ], [ -90.226442800512217, 38.641558249792226 ], [ -90.226442471106708, 38.641558179663726 ], [ -90.226442108418624, 38.641558102236026 ], [ -90.226404882093888, 38.641550202168929 ], [ -90.225257082967502, 38.641306592790961 ], [ -90.225250323878299, 38.641305158094184 ], [ -90.225251799452423, 38.6409176885739 ], [ -90.225251833625748, 38.640908714940984 ], [ -90.225251854539422, 38.640903223188765 ], [ -90.225251961814251, 38.64087505368505 ], [ -90.225252169347613, 38.640820556995372 ], [ -90.225252252466433, 38.640798730575028 ], [ -90.225292352943711, 38.640683966101996 ], [ -90.225294204084449, 38.640678669634177 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11052000010", "numunits (2020)": 44, "numunits (2018)": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226648627763439, 38.641601933493277 ], [ -90.226772037578101, 38.641240344434799 ], [ -90.226785617410343, 38.641200556039294 ], [ -90.226906945488537, 38.64084506454293 ], [ -90.226910324491712, 38.640845772382661 ], [ -90.22738234563964, 38.640944586681229 ], [ -90.227409407579003, 38.64095025207439 ], [ -90.227346220242978, 38.641135394807328 ], [ -90.227343647162684, 38.641146290319568 ], [ -90.227343389431411, 38.641157369297559 ], [ -90.227345454042421, 38.641168331171123 ], [ -90.227349784984298, 38.641178878546924 ], [ -90.227356264760431, 38.641188725276749 ], [ -90.227364717576521, 38.641197604220679 ], [ -90.227374914109831, 38.641205274494538 ], [ -90.22738657773067, 38.641211528005044 ], [ -90.227399392007158, 38.641216195095517 ], [ -90.227413009290174, 38.641219149148469 ], [ -90.227416916477608, 38.64121915008203 ], [ -90.227420553771594, 38.641218030943762 ], [ -90.227423417861658, 38.641215946594407 ], [ -90.22742511242943, 38.641213185455769 ], [ -90.227439515419263, 38.641170984505621 ], [ -90.227726234499499, 38.64123100592095 ], [ -90.227711823521261, 38.641273233907306 ], [ -90.227711536952128, 38.641276296711609 ], [ -90.227712700676634, 38.641279228994513 ], [ -90.227715152954971, 38.641281623213345 ], [ -90.227718552957839, 38.641283146608124 ], [ -90.227732176445556, 38.641285869237358 ], [ -90.227746184009376, 38.641286809996522 ], [ -90.227760199371062, 38.641285943614491 ], [ -90.227773846042808, 38.641283293364424 ], [ -90.22778675744091, 38.641278930438681 ], [ -90.227798586733087, 38.641272972036369 ], [ -90.227809016155277, 38.641265578215041 ], [ -90.227817765547755, 38.64125694759111 ], [ -90.22782459988079, 38.641247312004559 ], [ -90.227829335568074, 38.641236930291008 ], [ -90.227892649515837, 38.641051412831686 ], [ -90.227919710387781, 38.641057078104332 ], [ -90.227946772412423, 38.641062743373382 ], [ -90.227863941695389, 38.641305448843305 ], [ -90.227863720185368, 38.641308886356867 ], [ -90.227865309555597, 38.641312094609106 ], [ -90.22786843213936, 38.641314513110437 ], [ -90.227871364303425, 38.641315534320412 ], [ -90.22792548739497, 38.641326864872127 ], [ -90.227888698809934, 38.641434660550573 ], [ -90.227875119541693, 38.641474448168402 ], [ -90.227841615577304, 38.641572620081959 ], [ -90.227787492311251, 38.641561290397441 ], [ -90.227783404512365, 38.641561083103909 ], [ -90.227779526468424, 38.641562117857703 ], [ -90.227776447985534, 38.641564237284619 ], [ -90.227774637265867, 38.641567119044041 ], [ -90.227760153083281, 38.641609558573172 ], [ -90.22784126426599, 38.641626772322383 ], [ -90.227821230364825, 38.641685472552801 ], [ -90.228046616737089, 38.641733304448081 ], [ -90.228053375923139, 38.641734738983502 ], [ -90.228002612979523, 38.641883823197645 ], [ -90.228000878788691, 38.641888916369716 ], [ -90.227994119589212, 38.641887481831233 ], [ -90.226652007906821, 38.641602651255759 ], [ -90.226648627763439, 38.641601933493277 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11053000010", "numunits (2020)": 40, "numunits (2018)": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227098475609466, 38.640283869516658 ], [ -90.227211335406579, 38.63995318094755 ], [ -90.227214710932756, 38.639953886958182 ], [ -90.228564891994637, 38.640236328009358 ], [ -90.228452037956501, 38.640567017888777 ], [ -90.228438459169226, 38.640606805606978 ], [ -90.228315602391575, 38.640966804992892 ], [ -90.228314766115147, 38.640969257070388 ], [ -90.226964640814572, 38.640686621397954 ], [ -90.226961261818502, 38.640685914438478 ], [ -90.227084896129327, 38.640323657049727 ], [ -90.227098475609466, 38.640283869516658 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11056000120", "numunits (2020)": 33, "numunits (2018)": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22887984312365, 38.637716429809821 ], [ -90.229002266139375, 38.637357735809594 ], [ -90.229171464849003, 38.637392932528627 ], [ -90.229340663731961, 38.637428127245954 ], [ -90.229509862778443, 38.637463322597654 ], [ -90.229387715027798, 38.637821218674532 ], [ -90.229218424611346, 38.637786288685177 ], [ -90.229049133212115, 38.637751358476045 ], [ -90.228908115130494, 38.63772226251443 ], [ -90.22887984312365, 38.637716429809821 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11057000010", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229096392809197, 38.637206867293813 ], [ -90.229255049502726, 38.6369520961128 ], [ -90.229312978283758, 38.636977520124184 ], [ -90.229470697017931, 38.637046738933918 ], [ -90.229628416052748, 38.637115957531265 ], [ -90.22956417995124, 38.637304172091675 ], [ -90.229394599060043, 38.637268897570465 ], [ -90.22922501718817, 38.637233622773714 ], [ -90.229096392809197, 38.637206867293813 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11060000225", "numunits (2020)": 72, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231079526938501, 38.6382105224695 ], [ -90.231119285171985, 38.638156050467664 ], [ -90.23133256568957, 38.637863839122048 ], [ -90.232004721761186, 38.638158810389079 ], [ -90.231781218733175, 38.638465033614438 ], [ -90.231765516561197, 38.6384864595449 ], [ -90.231079526938501, 38.6382105224695 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11071000031", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212086883784991, 38.655817849746889 ], [ -90.212186738340861, 38.655531867247269 ], [ -90.212239641896218, 38.655543084938373 ], [ -90.212324152619701, 38.655561006008902 ], [ -90.212347816088666, 38.655566024233856 ], [ -90.212247963272603, 38.65585200687439 ], [ -90.212224299716766, 38.65584698862915 ], [ -90.212139788679494, 38.655829068392293 ], [ -90.212086883784991, 38.655817849746889 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11073000080", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210151559348986, 38.656452729599174 ], [ -90.21028479983562, 38.656072038602289 ], [ -90.210327200042911, 38.656080993453038 ], [ -90.210411602149904, 38.656098820161333 ], [ -90.210278362282878, 38.656479511303225 ], [ -90.210194210010698, 38.65646173827642 ], [ -90.210151559348986, 38.656452729599174 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11074000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208308850610109, 38.656063523114454 ], [ -90.208442042181446, 38.65568351964891 ], [ -90.208516436960494, 38.65569921570841 ], [ -90.208383239936239, 38.656079236351474 ], [ -90.208308850610109, 38.656063523114454 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11075000160", "numunits (2020)": 5, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208618506885941, 38.654734060685385 ], [ -90.208719296638151, 38.654446843823465 ], [ -90.208739026891593, 38.654450998967761 ], [ -90.208823583020973, 38.654468806474277 ], [ -90.208908138044151, 38.654486613010796 ], [ -90.208922217157507, 38.654489578489851 ], [ -90.20882142350078, 38.654776809931754 ], [ -90.208807449946164, 38.654773866340022 ], [ -90.20872287397701, 38.654756047954272 ], [ -90.208638296901526, 38.654738229504623 ], [ -90.208618506885941, 38.654734060685385 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11077000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210184427923863, 38.653787328496044 ], [ -90.2101899811084, 38.653771439822378 ], [ -90.210313022164513, 38.653419410211299 ], [ -90.210318575291637, 38.653403521557763 ], [ -90.210402994731012, 38.653421400545902 ], [ -90.210397442765895, 38.653437290139884 ], [ -90.210274437780015, 38.653789300981529 ], [ -90.210268885761295, 38.653805189662059 ], [ -90.210184427923863, 38.653787328496044 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11077000108", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209484806744072, 38.653639367824852 ], [ -90.209619274099211, 38.653255412933603 ], [ -90.209643227061107, 38.653260486461406 ], [ -90.20972764500975, 38.653278365960695 ], [ -90.209812063004321, 38.653296245371742 ], [ -90.209896482182629, 38.653314125630921 ], [ -90.209890922081584, 38.653330013368617 ], [ -90.20976769723292, 38.65368213217711 ], [ -90.20976213707452, 38.653698019907459 ], [ -90.20967767948747, 38.653680158348777 ], [ -90.209593220801224, 38.653662295847653 ], [ -90.209508763302196, 38.653644434194661 ], [ -90.209484806744072, 38.653639367824852 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11078000070", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209212123071339, 38.652415230189774 ], [ -90.209344054590247, 38.652030285511238 ], [ -90.209513251903672, 38.652065989871751 ], [ -90.209628506272665, 38.652090310449708 ], [ -90.209682450534942, 38.652101694018235 ], [ -90.209800203939849, 38.652126542214809 ], [ -90.209667422107913, 38.652511803331848 ], [ -90.209549939534725, 38.652486884498707 ], [ -90.209381032368441, 38.652451057482537 ], [ -90.209212123071339, 38.652415230189774 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11085000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208755019670875, 38.65231827247149 ], [ -90.208886952592081, 38.651933825562708 ], [ -90.208899665221665, 38.651936508372891 ], [ -90.208972104846765, 38.651951794803573 ], [ -90.209014062862551, 38.651960649031885 ], [ -90.208882164447246, 38.652345242112915 ], [ -90.208840300535059, 38.652336361930011 ], [ -90.208755019670875, 38.65231827247149 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11085000040", "numunits (2020)": 4, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208337982585789, 38.652229812280311 ], [ -90.208470032815939, 38.65184584358623 ], [ -90.208530450668022, 38.651858593308035 ], [ -90.208558117655571, 38.65186443211114 ], [ -90.208633053740655, 38.651880245651057 ], [ -90.208666628812267, 38.651887330619935 ], [ -90.208534633782705, 38.652271525768505 ], [ -90.208501128715184, 38.65226441841935 ], [ -90.208337982585789, 38.652229812280311 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11085000050", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208219314049714, 38.652204640524687 ], [ -90.208351397633265, 38.651820807199456 ], [ -90.208463529018616, 38.651844470722033 ], [ -90.208470032815939, 38.65184584358623 ], [ -90.208337982585789, 38.652229812280311 ], [ -90.208331546509029, 38.652228446771275 ], [ -90.208219314049714, 38.652204640524687 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11087060129", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207976100112305, 38.654146986375871 ], [ -90.207851120370762, 38.654120316625715 ], [ -90.207726139570553, 38.654093646739376 ], [ -90.207601160012217, 38.654066977628787 ], [ -90.207606713792117, 38.654051088174604 ], [ -90.207695577378374, 38.653796859811493 ], [ -90.207701131116224, 38.653780970351953 ], [ -90.207826172201749, 38.653807653019307 ], [ -90.207951212232174, 38.653834335577841 ], [ -90.208076253501275, 38.653861017978336 ], [ -90.208070689510251, 38.653876904711638 ], [ -90.207981664149159, 38.654131098741786 ], [ -90.207976100112305, 38.654146986375871 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11090050150", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204922357823747, 38.653953515435845 ], [ -90.205022775751246, 38.653664756678936 ], [ -90.20506541700297, 38.653673819458199 ], [ -90.205149518365687, 38.65369169514863 ], [ -90.205049102056591, 38.653980453990229 ], [ -90.204964993490847, 38.653962577331285 ], [ -90.204922357823747, 38.653953515435845 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11091000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205041192684504, 38.652698537601999 ], [ -90.205175063407339, 38.65231357099433 ], [ -90.205344272165974, 38.652349502152504 ], [ -90.205338744422377, 38.652365396978112 ], [ -90.205215915019934, 38.652718604742795 ], [ -90.205210387215431, 38.65273450046724 ], [ -90.205041192684504, 38.652698537601999 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11091000190", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205785723188555, 38.65238634516286 ], [ -90.205919644930248, 38.65200126879251 ], [ -90.206004256642515, 38.652019218107561 ], [ -90.206173482488069, 38.652055117493774 ], [ -90.206342707352007, 38.652091016605269 ], [ -90.206337178700366, 38.652106911476785 ], [ -90.206214279333864, 38.652460275994279 ], [ -90.206208750621485, 38.652476170858492 ], [ -90.206039538835682, 38.652440240036867 ], [ -90.205870328361712, 38.652404309879913 ], [ -90.205785723188555, 38.65238634516286 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11091000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206343950295675, 38.652504878685775 ], [ -90.20647792483345, 38.652119700900727 ], [ -90.206511932389674, 38.652126915499842 ], [ -90.206613132090482, 38.652148383229502 ], [ -90.206479148926633, 38.652533586354167 ], [ -90.206377961436488, 38.652512100499337 ], [ -90.206343950295675, 38.652504878685775 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11091000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.206479148926633, 38.652533586354167 ], [ -90.206613132090482, 38.652148383229502 ], [ -90.206681157594247, 38.652162814122583 ], [ -90.206714537318447, 38.652169894632735 ], [ -90.206580548832733, 38.6525551167787 ], [ -90.20654717241834, 38.652548029923281 ], [ -90.206479148926633, 38.652533586354167 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11096000085", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205485563745199, 38.649827255413477 ], [ -90.205496963180082, 38.649794116192489 ], [ -90.205801257590949, 38.649858397414519 ], [ -90.205789857129929, 38.649891537568543 ], [ -90.205767058495056, 38.649957814226383 ], [ -90.205462764847482, 38.649893532917851 ], [ -90.205485563745199, 38.649827255413477 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11096000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205101291620181, 38.651260597692335 ], [ -90.205127954790086, 38.651183089657366 ], [ -90.205212502787134, 38.651200884435255 ], [ -90.20518581762542, 38.651278453695092 ], [ -90.205140217143537, 38.651411009446711 ], [ -90.205094616495771, 38.651543565149495 ], [ -90.205010089054056, 38.651525709077667 ], [ -90.205055690997952, 38.651393153383417 ], [ -90.205101291620181, 38.651260597692335 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11096000180", "numunits (2020)": 38, "numunits (2018)": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204877964305581, 38.650644662837436 ], [ -90.204890576800736, 38.650607998885548 ], [ -90.205194874093436, 38.650672281687214 ], [ -90.205499168485318, 38.650736564596208 ], [ -90.205486556273186, 38.650773229520141 ], [ -90.205440956674479, 38.650905784497553 ], [ -90.2053953569024, 38.651038341265846 ], [ -90.205353670423804, 38.651159519754671 ], [ -90.205349756961041, 38.651170897106631 ], [ -90.205344550648533, 38.651186030564226 ], [ -90.20473579855171, 38.651057905080989 ], [ -90.204741159586433, 38.651042329703117 ], [ -90.204744923124764, 38.651031395236792 ], [ -90.204786762857808, 38.650909775012593 ], [ -90.204832363666554, 38.650777218482659 ], [ -90.204877964305581, 38.650644662837436 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11097000175", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203553427165517, 38.654466192762122 ], [ -90.203587211035256, 38.654368445876507 ], [ -90.20419810499385, 38.654496644862135 ], [ -90.204164072123874, 38.654594503904896 ], [ -90.204124798119238, 38.654707434074886 ], [ -90.204122787968444, 38.654713214469638 ], [ -90.203512327361395, 38.654585106279967 ], [ -90.203514367946113, 38.654579200759734 ], [ -90.203553427165517, 38.654466192762122 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11097000200", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203676251356882, 38.654110827396231 ], [ -90.203693003602936, 38.654062359891313 ], [ -90.203713295945363, 38.654066628125619 ], [ -90.204284122728794, 38.654186681580889 ], [ -90.204304416290555, 38.654190949715698 ], [ -90.204286503082656, 38.654242455763018 ], [ -90.204281893399298, 38.65425571143281 ], [ -90.204278505600101, 38.654265453156874 ], [ -90.203667235734471, 38.654136912215556 ], [ -90.20367060409211, 38.654127166862921 ], [ -90.203676251356882, 38.654110827396231 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11097000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203807656173424, 38.653730630026963 ], [ -90.203830586792208, 38.653664283835276 ], [ -90.203850879016059, 38.653668555642639 ], [ -90.204422465785598, 38.653788876118647 ], [ -90.204442758080333, 38.653793147823535 ], [ -90.204419700648899, 38.653859447849037 ], [ -90.203807656173424, 38.653730630026963 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11097000260", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203830586792208, 38.653664283835276 ], [ -90.20387644789804, 38.653531591490569 ], [ -90.203896740083579, 38.653535864196101 ], [ -90.204468579409792, 38.653656274244149 ], [ -90.204488871666285, 38.653660546847171 ], [ -90.204442758080333, 38.653793147823535 ], [ -90.204422465785598, 38.653788876118647 ], [ -90.203850879016059, 38.653668555642639 ], [ -90.203830586792208, 38.653664283835276 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11098000010", "numunits (2020)": 3, "numunits (2018)": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202889408555251, 38.651381117944531 ], [ -90.202895553284648, 38.651363369008251 ], [ -90.203504148869598, 38.65149194509543 ], [ -90.203481214457824, 38.651558194830081 ], [ -90.203458280007212, 38.651624443653212 ], [ -90.203435345510385, 38.651690693349593 ], [ -90.203412410970842, 38.651756943068044 ], [ -90.203389476388693, 38.651823192781094 ], [ -90.20336654291971, 38.651889441585496 ], [ -90.202757944227685, 38.651760864779028 ], [ -90.202762375232723, 38.651748064530054 ], [ -90.202780879370309, 38.651694615191261 ], [ -90.202803814466563, 38.651628366504241 ], [ -90.202826748375415, 38.65156211690276 ], [ -90.202849683390212, 38.651495867298799 ], [ -90.202872618358668, 38.651429618595564 ], [ -90.202889408555251, 38.651381117944531 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11100000025", "numunits (2020)": 18, "numunits (2018)": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203394276065012, 38.648253526579808 ], [ -90.203496545264343, 38.64795827819303 ], [ -90.203614599532358, 38.647983219849671 ], [ -90.203784782890224, 38.648019175533015 ], [ -90.203825916121389, 38.648027865613791 ], [ -90.203723648170822, 38.648323114289916 ], [ -90.203512375544719, 38.648278478365881 ], [ -90.203394276065012, 38.648253526579808 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11100000080", "numunits (2020)": 6, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203173906493646, 38.648206967127564 ], [ -90.203179407989552, 38.648191066917548 ], [ -90.203270559140819, 38.647927596285584 ], [ -90.203276060597261, 38.647911695191453 ], [ -90.203412021284052, 38.647940420970492 ], [ -90.203309751771471, 38.648235668376955 ], [ -90.203173906493646, 38.648206967127564 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11101000040", "numunits (2020)": 4, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202824795956545, 38.648694629284869 ], [ -90.202830287242165, 38.648678726375934 ], [ -90.202999639690589, 38.648714507253615 ], [ -90.203026980166598, 38.648720283466808 ], [ -90.202924982266339, 38.649015588872494 ], [ -90.202897642838721, 38.649009812610807 ], [ -90.202728303514903, 38.648974035244173 ], [ -90.202733795992032, 38.648958132343587 ], [ -90.202824795956545, 38.648694629284869 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11101000060", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202500943242583, 38.64892599826603 ], [ -90.202602942751142, 38.648630693259328 ], [ -90.202660936104877, 38.648642946162539 ], [ -90.202712552345773, 38.64865385140839 ], [ -90.202610553252939, 38.648949156511144 ], [ -90.202558963216191, 38.648938256723817 ], [ -90.202500943242583, 38.64892599826603 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11101000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202762880849747, 38.648607609466715 ], [ -90.202864827173912, 38.648312293260261 ], [ -90.202950577283204, 38.648330410720199 ], [ -90.202945086058435, 38.648346312729807 ], [ -90.202854085830481, 38.648609815925575 ], [ -90.202848593410607, 38.648625718805526 ], [ -90.202762880849747, 38.648607609466715 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11106000020", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20057814192954, 38.650589361882744 ], [ -90.200710940067921, 38.650207146124387 ], [ -90.200802619716768, 38.650226664940178 ], [ -90.200670697274901, 38.650608918154148 ], [ -90.20057814192954, 38.650589361882744 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11107000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200022025507124, 38.649206042961296 ], [ -90.200103509766663, 38.649180958810113 ], [ -90.200250270745769, 38.649473232971076 ], [ -90.200168785052824, 38.649498318125382 ], [ -90.200158193287905, 38.649501578411908 ], [ -90.200011431478117, 38.649209304107657 ], [ -90.200022025507124, 38.649206042961296 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11108000060", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200488223135309, 38.648174022388325 ], [ -90.200507932883681, 38.648167925941713 ], [ -90.200513877679754, 38.648186499268398 ], [ -90.200567797173889, 38.648354961314418 ], [ -90.20057291185816, 38.648370940697227 ], [ -90.200606614382338, 38.648476237110486 ], [ -90.200586896623108, 38.648482307439409 ], [ -90.200514888021502, 38.648504474694356 ], [ -90.200454589037278, 38.648523037636608 ], [ -90.200307420124886, 38.648229945549168 ], [ -90.200367680156077, 38.648211306905303 ], [ -90.200488223135309, 38.648174022388325 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11109000165", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199800024472864, 38.647498085891343 ], [ -90.199983408352153, 38.647441364700775 ], [ -90.200131680103709, 38.647734858229533 ], [ -90.199948295590275, 38.647791579647262 ], [ -90.199800024472864, 38.647498085891343 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11110030070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19840778019163, 38.64655319946457 ], [ -90.198480892149774, 38.646530586772478 ], [ -90.198491635100709, 38.646532842239615 ], [ -90.198502809089717, 38.64655509660092 ], [ -90.198633527429806, 38.646815446775193 ], [ -90.198552103516036, 38.646840630075886 ], [ -90.19840778019163, 38.64655319946457 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11110030080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198502809089717, 38.64655509660092 ], [ -90.198491635100709, 38.646532842239615 ], [ -90.198596795554295, 38.646554918079637 ], [ -90.198714958196206, 38.64679025983812 ], [ -90.198633527429806, 38.646815446775193 ], [ -90.198502809089717, 38.64655509660092 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11110030085", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198596795554295, 38.646554918079637 ], [ -90.198708732400803, 38.64657841656161 ], [ -90.198742236452276, 38.646585450131823 ], [ -90.198750990365738, 38.646587287873942 ], [ -90.198762529872468, 38.646589711129437 ], [ -90.198814485750546, 38.646759477047425 ], [ -90.19879494188541, 38.646765521381589 ], [ -90.198714958196206, 38.64679025983812 ], [ -90.198596795554295, 38.646554918079637 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11110040011", "numunits (2020)": 16, "numunits (2018)": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19950440303495, 38.647039456981439 ], [ -90.19933799258439, 38.646692848771409 ], [ -90.199358318974305, 38.646633553337011 ], [ -90.199359808656823, 38.646629206799389 ], [ -90.199559072205673, 38.646671215045941 ], [ -90.199571695253084, 38.64668820105571 ], [ -90.19964104710408, 38.646702821411083 ], [ -90.199668401473843, 38.646690393425409 ], [ -90.199691309761789, 38.646679984653801 ], [ -90.199713657669278, 38.646684695767959 ], [ -90.199764378058006, 38.646695388288833 ], [ -90.199988633258812, 38.646742664105155 ], [ -90.200004913181601, 38.646740534570277 ], [ -90.200080047574062, 38.646756373019095 ], [ -90.200076125210217, 38.64676781503762 ], [ -90.200073398275947, 38.646775770980817 ], [ -90.200070671344818, 38.646783726017773 ], [ -90.200038139971113, 38.646878628402625 ], [ -90.199504814168947, 38.647040313874491 ], [ -90.19950440303495, 38.647039456981439 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11111000105", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197482895712, 38.646844636184902 ], [ -90.197726393762565, 38.646769178260087 ], [ -90.197868690404306, 38.64705255862534 ], [ -90.19762531146165, 38.647128183796788 ], [ -90.197482895712, 38.646844636184902 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11112000105", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197587720825098, 38.648168482216967 ], [ -90.198038526115781, 38.648028761391835 ], [ -90.198050633261346, 38.648052874937754 ], [ -90.198068638483065, 38.64808873491129 ], [ -90.198074945548569, 38.648101297730399 ], [ -90.197624075456844, 38.648241038324713 ], [ -90.197617778812898, 38.648228471938857 ], [ -90.197600878024204, 38.648194741712075 ], [ -90.197587720825098, 38.648168482216967 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11112000110", "numunits (2020)": 4, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197433386218577, 38.647860454850758 ], [ -90.197596316967591, 38.647810214310468 ], [ -90.197627049244574, 38.647871550764663 ], [ -90.197657781573682, 38.647932887210352 ], [ -90.197688513954716, 38.647994223674949 ], [ -90.197719245243348, 38.648055559194539 ], [ -90.19773965609167, 38.648096295586875 ], [ -90.197576836438188, 38.648146759137134 ], [ -90.19755631402235, 38.648105799902069 ], [ -90.197525582851839, 38.64804446431323 ], [ -90.197494850588669, 38.647983127834259 ], [ -90.197464118377567, 38.647921791346754 ], [ -90.197433386218577, 38.647860454850758 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11113000010", "numunits (2020)": 4, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19731959458268, 38.648272731621852 ], [ -90.19740153697505, 38.648247400076379 ], [ -90.197545997205694, 38.64853571956224 ], [ -90.197464065765885, 38.648561112496409 ], [ -90.197382133112882, 38.648586506248591 ], [ -90.197237650977272, 38.648298063985273 ], [ -90.19731959458268, 38.648272731621852 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11113000030", "numunits (2020)": 4, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197073765905799, 38.648348726760055 ], [ -90.197155708470163, 38.648323395415261 ], [ -90.197300201554555, 38.64861189906734 ], [ -90.19721826994234, 38.648637291800881 ], [ -90.197136338269004, 38.648662684504181 ], [ -90.19709826941957, 38.648674482463655 ], [ -90.197011246851844, 38.648500680392246 ], [ -90.196953742029748, 38.648385830748445 ], [ -90.19699182328047, 38.648374058074573 ], [ -90.197073765905799, 38.648348726760055 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11114000090", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.196644587449555, 38.648992242632787 ], [ -90.196726107866482, 38.648966977145214 ], [ -90.19673122296112, 38.648977202752853 ], [ -90.196864496145537, 38.649243640557927 ], [ -90.196869611279283, 38.649253866159192 ], [ -90.196788056234354, 38.64927910551485 ], [ -90.196644587449555, 38.648992242632787 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11114000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197640349148912, 38.648912019754263 ], [ -90.197721897731995, 38.648886781570056 ], [ -90.197729857772487, 38.648902669327505 ], [ -90.197766716471321, 38.648976230250014 ], [ -90.197685162052096, 38.649001470262235 ], [ -90.197603607576113, 38.649026710189808 ], [ -90.197598486600313, 38.649016486389918 ], [ -90.197558800508943, 38.648937257881272 ], [ -90.197640349148912, 38.648912019754263 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11117000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197243628324557, 38.650189801990521 ], [ -90.197700817777474, 38.650048561181933 ], [ -90.197731656045548, 38.650110072635911 ], [ -90.19727444816489, 38.650251245060446 ], [ -90.197243628324557, 38.650189801990521 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11117000080", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197414618829214, 38.64985292985871 ], [ -90.197577466385397, 38.649802514377193 ], [ -90.197608304443719, 38.649864025865419 ], [ -90.197639142550685, 38.649925538251253 ], [ -90.19718198879734, 38.65006691585247 ], [ -90.197151169110271, 38.650005473663022 ], [ -90.197120349479306, 38.649944030558885 ], [ -90.197414618829214, 38.64985292985871 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11117000090", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19708952989707, 38.649882587473648 ], [ -90.197383792331749, 38.649791441771811 ], [ -90.197414618829214, 38.64985292985871 ], [ -90.197120349479306, 38.649944030558885 ], [ -90.19708952989707, 38.649882587473648 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11117000095", "numunits (2020)": 5, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197027890896877, 38.649759701222635 ], [ -90.197351446993054, 38.64965937641329 ], [ -90.197382274536452, 38.649720869043399 ], [ -90.197413103277214, 38.649782362519133 ], [ -90.197383792331749, 38.649791441771811 ], [ -90.19708952989707, 38.649882587473648 ], [ -90.197058710370797, 38.649821144352423 ], [ -90.197027890896877, 38.649759701222635 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11117000111", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197383792331749, 38.649791441771811 ], [ -90.197413103277214, 38.649782362519133 ], [ -90.197546629531502, 38.649741002883346 ], [ -90.197577466385397, 38.649802514377193 ], [ -90.197414618829214, 38.64985292985871 ], [ -90.197383792331749, 38.649791441771811 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11117000135", "numunits (2020)": 5, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19727444816489, 38.650251245060446 ], [ -90.197731656045548, 38.650110072635911 ], [ -90.197762493213972, 38.650171584078386 ], [ -90.197793331586894, 38.650233095515247 ], [ -90.197336088006168, 38.650374131147238 ], [ -90.197305268061157, 38.650312688094395 ], [ -90.19727444816489, 38.650251245060446 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11118000046", "numunits (2020)": 7, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198308823171942, 38.650886076993132 ], [ -90.198278190301366, 38.650824976105696 ], [ -90.198247557485914, 38.650763875237288 ], [ -90.19821692586342, 38.65070277526948 ], [ -90.198576225306866, 38.650591804915138 ], [ -90.198606833126462, 38.650652889434603 ], [ -90.198637442142456, 38.650713974854703 ], [ -90.198668051214057, 38.650775059332794 ], [ -90.198698659188693, 38.65083614382695 ], [ -90.198339454942356, 38.650947177841694 ], [ -90.198308823171942, 38.650886076993132 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11118000080", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198084660360735, 38.650814196011453 ], [ -90.198115297614834, 38.650875306845947 ], [ -90.197658308379886, 38.651016504731523 ], [ -90.197627643970748, 38.650955372977833 ], [ -90.198084660360735, 38.650814196011453 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11118000110", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197566314159346, 38.650833109442068 ], [ -90.197535649909341, 38.65077197678432 ], [ -90.197992748897761, 38.650630866148248 ], [ -90.198023386000372, 38.650691976101974 ], [ -90.197566314159346, 38.650833109442068 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11118000130", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197900837904314, 38.650447535302845 ], [ -90.197931474851586, 38.650508645309365 ], [ -90.197962111846891, 38.650569756186094 ], [ -90.197504985707454, 38.650710844996759 ], [ -90.19747432155738, 38.650649713200721 ], [ -90.197443657459004, 38.650588581423705 ], [ -90.197900837904314, 38.650447535302845 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11118000140", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197412993412556, 38.650527449610749 ], [ -90.197870201008712, 38.650386425315325 ], [ -90.197900837904314, 38.650447535302845 ], [ -90.197443657459004, 38.650588581423705 ], [ -90.197412993412556, 38.650527449610749 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11119000110", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199163569125375, 38.650269411480949 ], [ -90.199184127600731, 38.65031035340661 ], [ -90.199047282030492, 38.650352600079266 ], [ -90.198731023370399, 38.650450235729338 ], [ -90.198710503067062, 38.650409283031927 ], [ -90.199163569125375, 38.650269411480949 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11121000070", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198340690950261, 38.651808634284023 ], [ -90.198465298131524, 38.651770117308729 ], [ -90.198488370997566, 38.651816113415499 ], [ -90.198520416248272, 38.651879996187823 ], [ -90.198552461559444, 38.65194387801732 ], [ -90.198592468723277, 38.652023629492625 ], [ -90.198462547241803, 38.652051553903462 ], [ -90.198427855267752, 38.651982395086279 ], [ -90.198412472962872, 38.651951731007514 ], [ -90.198395810050471, 38.651918513223436 ], [ -90.198363763745078, 38.651854630442266 ], [ -90.198340690950261, 38.651808634284023 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11121000130", "numunits (2020)": 10, "numunits (2018)": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197796543240869, 38.651292085474935 ], [ -90.198252619708327, 38.651151109958086 ], [ -90.19828466445739, 38.651214991866603 ], [ -90.19831670926267, 38.651278874699493 ], [ -90.198348754128432, 38.651342756589507 ], [ -90.198380799050753, 38.651406638470306 ], [ -90.198412845174417, 38.651470521250921 ], [ -90.198444890209828, 38.651534403140687 ], [ -90.197988811675785, 38.651675380296069 ], [ -90.197956766987858, 38.651611497405554 ], [ -90.197924722352866, 38.651547615384487 ], [ -90.197892676629579, 38.651483732472556 ], [ -90.197860632107606, 38.651419850460442 ], [ -90.197828587649568, 38.651355967532979 ], [ -90.197796543240869, 38.651292085474935 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11122000060", "numunits (2020)": 9, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197697537832283, 38.652107273995099 ], [ -90.19777896565941, 38.652082104867517 ], [ -90.197789212696634, 38.652102549708523 ], [ -90.197952070521211, 38.652052210340678 ], [ -90.198001453794092, 38.652150656949686 ], [ -90.197916536026725, 38.652168908392248 ], [ -90.197831618216597, 38.6521871597729 ], [ -90.197746700367503, 38.652205410213007 ], [ -90.197661781323347, 38.652223661494432 ], [ -90.197644805557331, 38.652227310489913 ], [ -90.197599754421518, 38.652137499055399 ], [ -90.197616106495261, 38.652132444869096 ], [ -90.197697537832283, 38.652107273995099 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11122000070", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197357712010103, 38.651804043676442 ], [ -90.197422450557113, 38.65178403346426 ], [ -90.19751912249869, 38.651976754192177 ], [ -90.197541032714469, 38.652020434045312 ], [ -90.197561301203251, 38.652060840349215 ], [ -90.197599754421518, 38.652137499055399 ], [ -90.197644805557331, 38.652227310489913 ], [ -90.197576863388917, 38.652241911783342 ], [ -90.197357712010103, 38.651804043676442 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11122000090", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19719498432822, 38.651854342025324 ], [ -90.197243275456628, 38.651839415505059 ], [ -90.197457989242352, 38.652267460871158 ], [ -90.197407027384273, 38.652278414015292 ], [ -90.197322109317867, 38.652296665052184 ], [ -90.197113618672319, 38.651879492016072 ], [ -90.19719498432822, 38.651854342025324 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11122000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.196788121541431, 38.651603787405065 ], [ -90.196869417973119, 38.651578659098242 ], [ -90.197013094008284, 38.651866290588067 ], [ -90.196931734029903, 38.651891438654481 ], [ -90.196788121541431, 38.651603787405065 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11122000160", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197032010670597, 38.651528402314064 ], [ -90.197113306932863, 38.651503273836745 ], [ -90.197257166694172, 38.651790849626558 ], [ -90.197175810338578, 38.651815996087819 ], [ -90.197094452774223, 38.651841143367875 ], [ -90.196950714348333, 38.651553530734546 ], [ -90.197032010670597, 38.651528402314064 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11122000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197194601986439, 38.651478146178306 ], [ -90.197275898139296, 38.651453017587315 ], [ -90.197419875786352, 38.651740556579348 ], [ -90.19733852184109, 38.651765703132888 ], [ -90.197194601986439, 38.651478146178306 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11123000010", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197217970504113, 38.650963809915133 ], [ -90.19738090160871, 38.650913555323477 ], [ -90.197441144270343, 38.651033654008479 ], [ -90.197278212934606, 38.651083908709559 ], [ -90.197196747180172, 38.651109035960751 ], [ -90.197141072282506, 38.650998041523486 ], [ -90.197136504865071, 38.650988937152796 ], [ -90.197217970504113, 38.650963809915133 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11123000085", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.196729680817469, 38.651114416944047 ], [ -90.196811020206653, 38.651089328409213 ], [ -90.196953354213804, 38.651375625923905 ], [ -90.196871670376481, 38.651400874027182 ], [ -90.196789985337276, 38.65142612204265 ], [ -90.196708301385939, 38.651451370031161 ], [ -90.196544932167328, 38.651501865805656 ], [ -90.196404320414331, 38.651214768668936 ], [ -90.196567000728749, 38.651164592906554 ], [ -90.196648340226957, 38.651139505391612 ], [ -90.196729680817469, 38.651114416944047 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11124000150", "numunits (2020)": 12, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.196669663863588, 38.649870687622688 ], [ -90.196832507415124, 38.649820265068392 ], [ -90.196976926500227, 38.650108185986952 ], [ -90.196814039097688, 38.650158523942423 ], [ -90.196732595883844, 38.65018369327543 ], [ -90.196651152617022, 38.650208861672745 ], [ -90.196506818936555, 38.649921109945957 ], [ -90.19658824142833, 38.649895899252158 ], [ -90.196669663863588, 38.649870687622688 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11128000120", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.195567944420489, 38.653396664570202 ], [ -90.195696939338646, 38.653019940252051 ], [ -90.195778769542855, 38.653037318604106 ], [ -90.195833380042856, 38.653048916580538 ], [ -90.195694193128276, 38.653457734693923 ], [ -90.195639597466311, 38.653446091631274 ], [ -90.195557047443657, 38.653428487882785 ], [ -90.195567944420489, 38.653396664570202 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11129000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197133118484885, 38.653764580089209 ], [ -90.19727230430648, 38.653354493645978 ], [ -90.197357016367448, 38.65337248283226 ], [ -90.197217873148347, 38.653782653262695 ], [ -90.197133118484885, 38.653764580089209 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11131030020", "numunits (2020)": 6, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198359383939973, 38.654026060874614 ], [ -90.198498863965469, 38.653614954845814 ], [ -90.198587543624456, 38.653633785718462 ], [ -90.198448008647176, 38.654044957475342 ], [ -90.198359383939973, 38.654026060874614 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11131030030", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198274845642075, 38.65400803505041 ], [ -90.198414274147268, 38.653596992941303 ], [ -90.198498863965469, 38.653614954845814 ], [ -90.198359383939973, 38.654026060874614 ], [ -90.198274845642075, 38.65400803505041 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11131030040", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198190307386994, 38.65399000913775 ], [ -90.19832968436819, 38.653579030975699 ], [ -90.198414274147268, 38.653596992941303 ], [ -90.198274845642075, 38.65400803505041 ], [ -90.198190307386994, 38.65399000913775 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11131030060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19802122985277, 38.653953957181429 ], [ -90.19816050380382, 38.653543105073595 ], [ -90.198245093490357, 38.65356106806744 ], [ -90.198105768022472, 38.653971983188598 ], [ -90.19802122985277, 38.653953957181429 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11131030070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19793669172229, 38.653935931113296 ], [ -90.198075913011294, 38.653525142015752 ], [ -90.19816050380382, 38.653543105073595 ], [ -90.19802122985277, 38.653953957181429 ], [ -90.19793669172229, 38.653935931113296 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11131030100", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19783562541356, 38.65343144481286 ], [ -90.19790633879704, 38.65322266182482 ], [ -90.197990946408211, 38.65324062861859 ], [ -90.198075551772106, 38.653258594466685 ], [ -90.198160160616993, 38.653276561168724 ], [ -90.198089404296681, 38.653485335219763 ], [ -90.198004811292989, 38.65346737210475 ], [ -90.197920218332058, 38.653449408050015 ], [ -90.197879566159116, 38.653440775704986 ], [ -90.19783562541356, 38.65343144481286 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11131030160", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198393788864891, 38.653549971050971 ], [ -90.198529958023968, 38.65314844631483 ], [ -90.198563948842889, 38.653155740641616 ], [ -90.198647810809604, 38.653173736596784 ], [ -90.198648173525683, 38.653173814110616 ], [ -90.198512089882456, 38.653575091441084 ], [ -90.198511727160707, 38.653575014832967 ], [ -90.198427776741113, 38.653557187920377 ], [ -90.198393788864891, 38.653549971050971 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11131040050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198909096859296, 38.654143271959263 ], [ -90.199048892799169, 38.653731749866346 ], [ -90.199133826145996, 38.653749785150566 ], [ -90.198993954584083, 38.654161365692921 ], [ -90.198909096859296, 38.654143271959263 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11132030010", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198773557534466, 38.653029909136997 ], [ -90.19887594066924, 38.652727603300789 ], [ -90.198958721338059, 38.652745276474107 ], [ -90.198985206478667, 38.652750930727308 ], [ -90.19888161459636, 38.653053097499836 ], [ -90.198856309450434, 38.653047666964461 ], [ -90.198773557534466, 38.653029909136997 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11132030080", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198327062379192, 38.652251502621084 ], [ -90.198345062664799, 38.652247633631262 ], [ -90.198412274697688, 38.652261983463625 ], [ -90.198495054712069, 38.652279656936415 ], [ -90.198577833622451, 38.652297330347793 ], [ -90.19847552081778, 38.652599427107383 ], [ -90.19839274158214, 38.652581754529344 ], [ -90.19830996124287, 38.65256408095631 ], [ -90.198227184386397, 38.652546408267263 ], [ -90.198141566696009, 38.652528129117677 ], [ -90.198228046992625, 38.652272783778621 ], [ -90.198327062379192, 38.652251502621084 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11132030100", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198641080549564, 38.652634773903202 ], [ -90.198743393863325, 38.652332677001077 ], [ -90.198826172896673, 38.652350350264506 ], [ -90.198908953119698, 38.65236802344495 ], [ -90.198806641597542, 38.652670120468109 ], [ -90.19872386105304, 38.652652447214891 ], [ -90.198641080549564, 38.652634773903202 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11132030110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198806641597542, 38.652670120468109 ], [ -90.198908953119698, 38.65236802344495 ], [ -90.198991732238952, 38.652385695657841 ], [ -90.199074512544016, 38.652403368721352 ], [ -90.19908092891005, 38.65240473828608 ], [ -90.198980498203071, 38.652707238489732 ], [ -90.198972201660936, 38.652705466823626 ], [ -90.198889421034494, 38.652687793659908 ], [ -90.198806641597542, 38.652670120468109 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11132040060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199192773191456, 38.653119868401085 ], [ -90.199296473181676, 38.652817383629639 ], [ -90.199361946962568, 38.652831361777913 ], [ -90.19925822397407, 38.653133912339719 ], [ -90.199192773191456, 38.653119868401085 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11133040050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199609395127212, 38.652375268598973 ], [ -90.199711954232441, 38.65207322371355 ], [ -90.199787858875496, 38.652089428281194 ], [ -90.199874470487998, 38.652107918663525 ], [ -90.199961082145421, 38.652126408981886 ], [ -90.199965360101629, 38.652127322597735 ], [ -90.199862801976366, 38.652429368612573 ], [ -90.199859444564353, 38.652428651919919 ], [ -90.199773292851987, 38.65241026001727 ], [ -90.199687141184469, 38.652391867117665 ], [ -90.199609395127212, 38.652375268598973 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11133040070", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199440760464469, 38.652339267545351 ], [ -90.199543320228003, 38.652037221929831 ], [ -90.199614634636745, 38.652052447294061 ], [ -90.199648332511501, 38.652059641457839 ], [ -90.199545772006942, 38.652361687190414 ], [ -90.199514836826637, 38.652355082937788 ], [ -90.199440760464469, 38.652339267545351 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11133040100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19976598199375, 38.651942223148886 ], [ -90.199825622506907, 38.651929403825584 ], [ -90.19985926149775, 38.652027185073884 ], [ -90.199872183627477, 38.652064743436419 ], [ -90.199848145835958, 38.652059611839931 ], [ -90.199803055761038, 38.652049985980462 ], [ -90.19976598199375, 38.651942223148886 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11133040110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199825622506907, 38.651929403825584 ], [ -90.199885768943915, 38.651916475846662 ], [ -90.199891501255706, 38.651933138798555 ], [ -90.199941898064665, 38.652079626711938 ], [ -90.199872183627477, 38.652064743436419 ], [ -90.19985926149775, 38.652027185073884 ], [ -90.199825622506907, 38.651929403825584 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11133040120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199898124331511, 38.651913820099203 ], [ -90.199946691525057, 38.651903380480725 ], [ -90.199978248488947, 38.651997409602757 ], [ -90.200003860437931, 38.652073720280718 ], [ -90.19999774791178, 38.652091550230473 ], [ -90.199949507010103, 38.652081251514289 ], [ -90.199941898064665, 38.652079626711938 ], [ -90.199891501255706, 38.651933138798555 ], [ -90.199885768943915, 38.651916475846662 ], [ -90.199898124331511, 38.651913820099203 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11133040130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199946691525057, 38.651903380480725 ], [ -90.200007749767053, 38.651890256570205 ], [ -90.200011327721597, 38.651900916842301 ], [ -90.200053674266186, 38.652027092671084 ], [ -90.200038020820884, 38.65207275713292 ], [ -90.200029271860288, 38.652098280193698 ], [ -90.19999774791178, 38.652091550230473 ], [ -90.200003860437931, 38.652073720280718 ], [ -90.199978248488947, 38.651997409602757 ], [ -90.199946691525057, 38.651903380480725 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11133040140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200015557402054, 38.651888578345485 ], [ -90.200132989242377, 38.651863336470512 ], [ -90.20005086824942, 38.652102890222302 ], [ -90.200029271860288, 38.652098280193698 ], [ -90.200038020820884, 38.65207275713292 ], [ -90.200053674266186, 38.652027092671084 ], [ -90.200011327721597, 38.651900916842301 ], [ -90.200007749767053, 38.651890256570205 ], [ -90.200015557402054, 38.651888578345485 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11134040157", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201404752557593, 38.652758541461644 ], [ -90.201509186004188, 38.652456896173952 ], [ -90.201590275104579, 38.65247420641245 ], [ -90.201671365392855, 38.652491516597742 ], [ -90.201566932574067, 38.652793162030903 ], [ -90.201485841971902, 38.652775851772901 ], [ -90.201404752557593, 38.652758541461644 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11135030170", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200257848511555, 38.652979935513933 ], [ -90.200361325197321, 38.6526780861251 ], [ -90.200403002070743, 38.652686983279587 ], [ -90.200444677802622, 38.652695880388869 ], [ -90.20052745653426, 38.652713551541503 ], [ -90.200423980492573, 38.653015401078001 ], [ -90.200341201443521, 38.652997729851791 ], [ -90.200261185291112, 38.652980647611713 ], [ -90.200257848511555, 38.652979935513933 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11136000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201354664215799, 38.654664690939839 ], [ -90.201497450936913, 38.654251648366774 ], [ -90.201581503954358, 38.654269494068572 ], [ -90.201504490708714, 38.654492102596556 ], [ -90.201438592254092, 38.654682584176896 ], [ -90.201354664215799, 38.654664690939839 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11136000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200750379220622, 38.654535857951878 ], [ -90.200892264717424, 38.654123155240555 ], [ -90.200993129124996, 38.654144571120973 ], [ -90.200851093424546, 38.654557330328835 ], [ -90.200750379220622, 38.654535857951878 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11136000150", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200263045686711, 38.654431955016747 ], [ -90.200404358047948, 38.654019561331999 ], [ -90.200447062091285, 38.654028628644909 ], [ -90.200531115731664, 38.654046475103037 ], [ -90.200389767994778, 38.654458973358352 ], [ -90.200305839334249, 38.654441079367231 ], [ -90.200263045686711, 38.654431955016747 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11136000160", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200134625780962, 38.654404574577619 ], [ -90.200275593990582, 38.653992221604113 ], [ -90.2003630084929, 38.654010782153968 ], [ -90.200404358047948, 38.654019561331999 ], [ -90.200263045686711, 38.654431955016747 ], [ -90.200221910719463, 38.654423184437299 ], [ -90.200134625780962, 38.654404574577619 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11140000145", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200032650614816, 38.654971245259603 ], [ -90.200166234263904, 38.654580460542654 ], [ -90.200250718708986, 38.654598451527164 ], [ -90.200335203200339, 38.654616441572081 ], [ -90.200419688882747, 38.65463443243771 ], [ -90.20050417345945, 38.654652422333342 ], [ -90.200553175016552, 38.654662857005214 ], [ -90.200597107575334, 38.654672212089928 ], [ -90.200463526093344, 38.655062997301314 ], [ -90.200419593310457, 38.655053642166152 ], [ -90.200370591510662, 38.655043207465539 ], [ -90.20028610650985, 38.655025217445484 ], [ -90.200201620403206, 38.655007226482923 ], [ -90.200117135487531, 38.654989236368515 ], [ -90.200032650614816, 38.654971245259603 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11142000030", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197672722883283, 38.654468683661754 ], [ -90.197804022675243, 38.654077411973589 ], [ -90.197920062768617, 38.654102124457154 ], [ -90.197787623733234, 38.654493153708529 ], [ -90.197672722883283, 38.654468683661754 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11142000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197787623733234, 38.654493153708529 ], [ -90.197920062768617, 38.654102124457154 ], [ -90.198011306951713, 38.654121556931386 ], [ -90.197878868378794, 38.654512585407929 ], [ -90.197787623733234, 38.654493153708529 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11142000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198000527987148, 38.654538494211671 ], [ -90.198132965944737, 38.654147465624149 ], [ -90.198225619815744, 38.65416719794694 ], [ -90.198093182320534, 38.654558226639878 ], [ -90.198000527987148, 38.654538494211671 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11144000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.195537847332631, 38.654013999563148 ], [ -90.1956716429425, 38.653623260119403 ], [ -90.195840608495089, 38.653659247632142 ], [ -90.195706813733523, 38.654049987242679 ], [ -90.195537847332631, 38.654013999563148 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11144000050", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.195827354901354, 38.654075661183356 ], [ -90.195961149057851, 38.653684921434241 ], [ -90.196124342400267, 38.653719679192029 ], [ -90.195990549062969, 38.65411041912877 ], [ -90.195827354901354, 38.654075661183356 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11155000160", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198527097706915, 38.655511790503702 ], [ -90.198594934896107, 38.655311940112476 ], [ -90.198717439799225, 38.655338028712208 ], [ -90.198649601783472, 38.65553787826574 ], [ -90.198626989792842, 38.655604494482077 ], [ -90.198504484462859, 38.655578406665811 ], [ -90.198527097706915, 38.655511790503702 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11156000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199799367213132, 38.65613987894988 ], [ -90.199821887608891, 38.65607324338584 ], [ -90.199842165145853, 38.656077560882586 ], [ -90.200100157820174, 38.656132499096046 ], [ -90.200077637666311, 38.656199134741442 ], [ -90.199819643618753, 38.65614419647509 ], [ -90.199799367213132, 38.65613987894988 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11156000200", "numunits (2020)": 6, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199444874437802, 38.655850096374323 ], [ -90.199447296711355, 38.65577918067779 ], [ -90.199766607107051, 38.655847177173968 ], [ -90.199779651680856, 38.65580858073573 ], [ -90.199882217878397, 38.655830421741236 ], [ -90.199902494202092, 38.655834739224517 ], [ -90.199889449689138, 38.655873335703973 ], [ -90.199866929419713, 38.655939971283807 ], [ -90.19984665191997, 38.655935653791403 ], [ -90.199444874437802, 38.655850096374323 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11157000120", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200217292399998, 38.656429069286006 ], [ -90.200244257189851, 38.65634928129284 ], [ -90.200649307619756, 38.656435539785434 ], [ -90.200670076604226, 38.656439962900087 ], [ -90.200643113414927, 38.656519747397759 ], [ -90.200616151332852, 38.6565995264815 ], [ -90.200589113575447, 38.656593773875656 ], [ -90.200190326397689, 38.65650885726874 ], [ -90.200217292399998, 38.656429069286006 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11157000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200325153504991, 38.656109917273994 ], [ -90.200338018691696, 38.656071850905825 ], [ -90.20034937401897, 38.656038250885842 ], [ -90.20075441933048, 38.65612452072871 ], [ -90.200775188235383, 38.656128943824626 ], [ -90.200750968110512, 38.656200610273913 ], [ -90.200730199193728, 38.656196186267543 ], [ -90.200325153504991, 38.656109917273994 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11157000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200433014796801, 38.655790764210877 ], [ -90.200459980255886, 38.6557109761604 ], [ -90.200858750546061, 38.655795929649322 ], [ -90.200885785702582, 38.655801688502159 ], [ -90.200858821843966, 38.655881473057114 ], [ -90.20083805301239, 38.655877049069986 ], [ -90.200433014796801, 38.655790764210877 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11158000040", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20148276051836, 38.656784058561833 ], [ -90.2014965616316, 38.656744317038687 ], [ -90.201510412734663, 38.656704430575232 ], [ -90.201674272248553, 38.656739321934822 ], [ -90.201694865760828, 38.65674370658332 ], [ -90.201674574122805, 38.656802139348066 ], [ -90.201667213736783, 38.656823333707607 ], [ -90.201640178125658, 38.65681757684689 ], [ -90.20148276051836, 38.656784058561833 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11163000184", "numunits (2020)": 8, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204704011924164, 38.659535303817414 ], [ -90.20475440128385, 38.659518401164895 ], [ -90.204917380896759, 38.659822122151709 ], [ -90.204866992506652, 38.659839025781928 ], [ -90.20485507854734, 38.659843021862706 ], [ -90.204692098002639, 38.659539300788126 ], [ -90.204704011924164, 38.659535303817414 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11163000186", "numunits (2020)": 9, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204784506491848, 38.659508302312169 ], [ -90.204850800965573, 38.6594860631483 ], [ -90.204928515921324, 38.659643236068732 ], [ -90.204972018102154, 38.659731399282528 ], [ -90.205002889806792, 38.659793438526606 ], [ -90.204947487358169, 38.65981202326082 ], [ -90.204917380896759, 38.659822122151709 ], [ -90.20475440128385, 38.659518401164895 ], [ -90.204784506491848, 38.659508302312169 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11163000190", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204864999854394, 38.659481299842135 ], [ -90.204936056382792, 38.659457463616071 ], [ -90.205087786556717, 38.659764959627587 ], [ -90.205069373165472, 38.659771136669043 ], [ -90.205027980997201, 38.65978502158724 ], [ -90.205002889806792, 38.659793438526606 ], [ -90.204972018102154, 38.659731399282528 ], [ -90.204928515921324, 38.659643236068732 ], [ -90.204850800965573, 38.6594860631483 ], [ -90.204864999854394, 38.659481299842135 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11167000050", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203046278603068, 38.659644914517216 ], [ -90.20312671688427, 38.659617811315627 ], [ -90.203132190293431, 38.659627921326987 ], [ -90.203243748904939, 38.65983399694845 ], [ -90.203249222343089, 38.659844107860224 ], [ -90.20316877170076, 38.659871094001268 ], [ -90.203163295967357, 38.659860983986121 ], [ -90.203051753155208, 38.659655023656512 ], [ -90.203046278603068, 38.659644914517216 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11168000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202189907554825, 38.658278345103966 ], [ -90.202274579675404, 38.658252067594674 ], [ -90.202398514295581, 38.658508917591014 ], [ -90.202313843065355, 38.658535195190815 ], [ -90.202189907554825, 38.658278345103966 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11168000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.202443920285802, 38.658199513316006 ], [ -90.20252859107319, 38.658173235618897 ], [ -90.202652527620501, 38.658430084449286 ], [ -90.202567856574859, 38.658456362233999 ], [ -90.202443920285802, 38.658199513316006 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11179000010", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.201095545404016, 38.660294726232003 ], [ -90.201160755585661, 38.66027285396968 ], [ -90.201285393921935, 38.660502825433397 ], [ -90.201220150201749, 38.660524708497547 ], [ -90.201156526461688, 38.66054604883157 ], [ -90.201031921831373, 38.660316066472269 ], [ -90.201095545404016, 38.660294726232003 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11179000096", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200202409126774, 38.660716770429744 ], [ -90.200434211368446, 38.660639029566674 ], [ -90.200502587482504, 38.660765384946849 ], [ -90.200270788332688, 38.660843131388077 ], [ -90.200202409126774, 38.660716770429744 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11179000220", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200903966390712, 38.659962870076882 ], [ -90.200979101128297, 38.659937680923299 ], [ -90.201040163633252, 38.660050349215652 ], [ -90.200965019594449, 38.660075542008755 ], [ -90.200889875499854, 38.660100734725795 ], [ -90.200814731352636, 38.660125928300396 ], [ -90.20073958715318, 38.660151120947724 ], [ -90.200718127727811, 38.660158315624273 ], [ -90.200657143877109, 38.660045620347368 ], [ -90.200678563008381, 38.660038439061417 ], [ -90.200753697903309, 38.660013249147397 ], [ -90.200818147358206, 38.659991642695729 ], [ -90.200828832745643, 38.659988060090946 ], [ -90.200903966390712, 38.659962870076882 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11180000165", "numunits (2020)": 8, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199748795117159, 38.659035898204827 ], [ -90.199791650345375, 38.65902259997987 ], [ -90.199930736559693, 38.659309871682737 ], [ -90.199888325448711, 38.659324090005278 ], [ -90.199804540989192, 38.659352179705316 ], [ -90.199720757616888, 38.659380268469235 ], [ -90.199662702573647, 38.659260358678772 ], [ -90.199579468998266, 38.659088443224128 ], [ -90.199664131510445, 38.659062171210621 ], [ -90.199748795117159, 38.659035898204827 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11181050010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200171441091896, 38.658452918061286 ], [ -90.200205688354529, 38.658442290433214 ], [ -90.200238351460357, 38.658432154219526 ], [ -90.200250757877811, 38.658457834876003 ], [ -90.200353735710308, 38.658670986731046 ], [ -90.200287859394649, 38.658691429866053 ], [ -90.200275341338539, 38.658665783143299 ], [ -90.200183959077961, 38.658478564768345 ], [ -90.200171441091896, 38.658452918061286 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11181060110", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19902127395234, 38.658141745335172 ], [ -90.199022622254475, 38.658141328093208 ], [ -90.19913800085881, 38.658380159982897 ], [ -90.199136799806027, 38.658380531664683 ], [ -90.199111941207107, 38.658388229969937 ], [ -90.19904722116911, 38.658408271778931 ], [ -90.198944104924479, 38.658195165259968 ], [ -90.19893168176344, 38.658169489830939 ], [ -90.198995241986211, 38.658149806361074 ], [ -90.19902127395234, 38.658141745335172 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11183040280", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197565013210493, 38.656973068584421 ], [ -90.197646414392509, 38.656947360764761 ], [ -90.197786572625404, 38.657234641458473 ], [ -90.197705372497268, 38.657260285939827 ], [ -90.197565013210493, 38.656973068584421 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11184030175", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197626803526774, 38.658802536310773 ], [ -90.197897564388001, 38.658718519808417 ], [ -90.197900085336698, 38.658723693731737 ], [ -90.197931325510694, 38.658787821351105 ], [ -90.197932555794054, 38.658790347880029 ], [ -90.197661794698462, 38.658874365367609 ], [ -90.197660564423188, 38.658871838835871 ], [ -90.197626803526774, 38.658802536310773 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11184040120", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198563516648761, 38.659137935621061 ], [ -90.198826981541913, 38.659056181093142 ], [ -90.198864249121556, 38.659133200199172 ], [ -90.198831683293946, 38.659143305632597 ], [ -90.198601017532994, 38.659214882450179 ], [ -90.198563516648761, 38.659137935621061 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11185000010", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199292399879184, 38.659837443148263 ], [ -90.199485603997161, 38.659772671670574 ], [ -90.19960377867217, 38.660016755149343 ], [ -90.199410574002243, 38.660081526817407 ], [ -90.199292399879184, 38.659837443148263 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11185000020", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199195552042468, 38.659869911488855 ], [ -90.199292399879184, 38.659837443148263 ], [ -90.199410574002243, 38.660081526817407 ], [ -90.19931372588897, 38.660113995226006 ], [ -90.199195552042468, 38.659869911488855 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11185000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19827460399101, 38.659493354150804 ], [ -90.198320462459407, 38.659479124567596 ], [ -90.19847352257959, 38.659798402549349 ], [ -90.198428136629772, 38.659813618081472 ], [ -90.198405834848117, 38.65982109486449 ], [ -90.198252069928145, 38.659500346564585 ], [ -90.19827460399101, 38.659493354150804 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11185000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199114023669736, 38.659232877049106 ], [ -90.19920986085053, 38.659203137684749 ], [ -90.199354988276781, 38.659502893719626 ], [ -90.199258911801948, 38.659535103724842 ], [ -90.199114023669736, 38.659232877049106 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11186000010", "numunits (2020)": 4, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199788794195626, 38.660599200038547 ], [ -90.199891834103724, 38.660564647997177 ], [ -90.200077594572861, 38.6609079285031 ], [ -90.199974557679937, 38.660942487001343 ], [ -90.199788794195626, 38.660599200038547 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11186000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198885085349389, 38.661118242793556 ], [ -90.198909313602528, 38.661110117723972 ], [ -90.19899615966338, 38.661270635004399 ], [ -90.198971888786318, 38.661278775277047 ], [ -90.198891765171567, 38.661305647628616 ], [ -90.198804965335469, 38.661145113283553 ], [ -90.198885085349389, 38.661118242793556 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11187000030", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20013867539582, 38.6618120290752 ], [ -90.200508965778951, 38.661687834602759 ], [ -90.200529535138671, 38.661725733965113 ], [ -90.200563817453826, 38.661788900164716 ], [ -90.200598099829136, 38.661852065447697 ], [ -90.200606135355727, 38.661866871179519 ], [ -90.200658436495061, 38.661963237493225 ], [ -90.20028814494593, 38.662087432428521 ], [ -90.200227808754192, 38.661976260196148 ], [ -90.200193526642806, 38.661913094807012 ], [ -90.200159244598595, 38.661849928501248 ], [ -90.20013867539582, 38.6618120290752 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11187000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199848221290807, 38.661978136351209 ], [ -90.199734406948295, 38.661768425749095 ], [ -90.199814904718849, 38.661741426781838 ], [ -90.200046649671137, 38.662168429223769 ], [ -90.199966151511219, 38.662195427468369 ], [ -90.199848221290807, 38.661978136351209 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11187000110", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198975354038907, 38.661456805411639 ], [ -90.199085880296877, 38.661419736380076 ], [ -90.199136350528818, 38.661402809344409 ], [ -90.199266618409666, 38.66164284039791 ], [ -90.199105621474217, 38.661696837519195 ], [ -90.198975354038907, 38.661456805411639 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11187000150", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.199546787337169, 38.661265153521427 ], [ -90.199558158743599, 38.661261339443556 ], [ -90.199790699959749, 38.661689813813567 ], [ -90.199690882365076, 38.661723292035596 ], [ -90.199649023195391, 38.66173733148996 ], [ -90.199416482673243, 38.661308856871891 ], [ -90.199458341637822, 38.661294817498906 ], [ -90.199546787337169, 38.661265153521427 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11188000050", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200747316860003, 38.662933457423428 ], [ -90.20111789363807, 38.662809781607379 ], [ -90.201135102009729, 38.662841487762925 ], [ -90.201141672462327, 38.662853593400854 ], [ -90.200771095498439, 38.6629772692906 ], [ -90.200764243441128, 38.66296464490253 ], [ -90.200747316860003, 38.662933457423428 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11188000060", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200771095498439, 38.6629772692906 ], [ -90.201141672462327, 38.662853593400854 ], [ -90.201168391033349, 38.662902820644717 ], [ -90.200797389660039, 38.663025717186599 ], [ -90.200771095498439, 38.6629772692906 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11188000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.200410672116035, 38.662225530307893 ], [ -90.200495194989543, 38.662197181709772 ], [ -90.200506165612126, 38.662217394808245 ], [ -90.200718031780454, 38.662607758656897 ], [ -90.200729002531162, 38.662627971733571 ], [ -90.200644478088876, 38.662656321400156 ], [ -90.200633507357821, 38.662636108288282 ], [ -90.200421642722588, 38.662245743414125 ], [ -90.200410672116035, 38.662225530307893 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11190000035", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198617547235713, 38.662024787318927 ], [ -90.198583266518639, 38.661961621491223 ], [ -90.198953562624396, 38.661837431965324 ], [ -90.198987843605408, 38.661900597686824 ], [ -90.198834894460092, 38.661951893529881 ], [ -90.198840378945775, 38.661962000141358 ], [ -90.198687431863235, 38.66201329576856 ], [ -90.198623031692676, 38.662034893967807 ], [ -90.198617547235713, 38.662024787318927 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11192000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197475573970664, 38.65985944316725 ], [ -90.197861708920684, 38.659739627487269 ], [ -90.197892516896005, 38.659803894529063 ], [ -90.197507238748699, 38.659923444956817 ], [ -90.197475573970664, 38.65985944316725 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11192000070", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197662732268796, 38.660237733050266 ], [ -90.198039882946546, 38.660111300088886 ], [ -90.198071835967298, 38.660177952853218 ], [ -90.197694625242136, 38.66030219478796 ], [ -90.197662732268796, 38.660237733050266 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11192000091", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197857892132859, 38.66032153984186 ], [ -90.19810151783112, 38.660239867446478 ], [ -90.198143412405315, 38.660327257890977 ], [ -90.197957009076404, 38.660389746491298 ], [ -90.197899785312515, 38.660408929462363 ], [ -90.197857892132859, 38.66032153984186 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11192000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197874548119259, 38.660417389582207 ], [ -90.197899785312515, 38.660408929462363 ], [ -90.197957009076404, 38.660389746491298 ], [ -90.197992258479715, 38.660463276076342 ], [ -90.198030970603298, 38.66054402787136 ], [ -90.19794850834451, 38.660571671916273 ], [ -90.197917267160605, 38.660506502910877 ], [ -90.197874548119259, 38.660417389582207 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11192000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197189929648019, 38.660324322603223 ], [ -90.197567708216809, 38.660197517149449 ], [ -90.197605736312141, 38.660274380024262 ], [ -90.197228916207607, 38.660400780003584 ], [ -90.197189929648019, 38.660324322603223 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11192000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197157426284249, 38.660260580719473 ], [ -90.197536035296935, 38.660133498251092 ], [ -90.197567708216809, 38.660197517149449 ], [ -90.197189929648019, 38.660324322603223 ], [ -90.197157426284249, 38.660260580719473 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11192000205", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197096401437278, 38.660140903464224 ], [ -90.197476566686632, 38.660013297247446 ], [ -90.197536035296935, 38.660133498251092 ], [ -90.197157426284249, 38.660260580719473 ], [ -90.197096401437278, 38.660140903464224 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11192000210", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.196972266922259, 38.659897460634411 ], [ -90.197359770807665, 38.659777222226985 ], [ -90.197419006612364, 38.659896953311836 ], [ -90.197037333451263, 38.660025064459646 ], [ -90.196972266922259, 38.659897460634411 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11193000080", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.19715042971427, 38.6592072824902 ], [ -90.197540140757724, 38.659086358182648 ], [ -90.197577628998602, 38.65916331159454 ], [ -90.19718791760306, 38.659284236024007 ], [ -90.19715042971427, 38.6592072824902 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11195000070", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.195039031668287, 38.658468215733343 ], [ -90.195494410526649, 38.658325753025956 ], [ -90.195501401348579, 38.658339748317715 ], [ -90.1955327244861, 38.658402457003476 ], [ -90.195077344063534, 38.658544920759674 ], [ -90.19504627760989, 38.658482723411247 ], [ -90.195039031668287, 38.658468215733343 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11196000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.194703093693889, 38.658989113169056 ], [ -90.195023157084137, 38.658888220172543 ], [ -90.195053312244212, 38.658948591775008 ], [ -90.19473291822942, 38.659048823633853 ], [ -90.194703093693889, 38.658989113169056 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11196000130", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.193895381508781, 38.658961983679184 ], [ -90.19434964977053, 38.658819873916528 ], [ -90.194362625069672, 38.658845852159253 ], [ -90.194385407335233, 38.658891465403819 ], [ -90.193931022487675, 38.659033611958918 ], [ -90.193908487265176, 38.658988322682305 ], [ -90.193895381508781, 38.658961983679184 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11217000111", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.196046776925456, 38.663260727690137 ], [ -90.196484883373742, 38.663121262442196 ], [ -90.196487663502808, 38.663126839774215 ], [ -90.196513802437465, 38.663179280035223 ], [ -90.196635744763469, 38.663423918417585 ], [ -90.196491441322706, 38.663469856130931 ], [ -90.19661798227483, 38.663720004472914 ], [ -90.196645742881145, 38.663774883065109 ], [ -90.19665962377637, 38.663802321907028 ], [ -90.196673504678429, 38.663829761625891 ], [ -90.19639687240911, 38.663917824777911 ], [ -90.196377401157775, 38.663924022943583 ], [ -90.196367201190228, 38.663903561005377 ], [ -90.196360189288868, 38.663889493643467 ], [ -90.196349990479774, 38.663869031706675 ], [ -90.196339790524021, 38.663848570644625 ], [ -90.196322578691039, 38.663814041338732 ], [ -90.196227701994957, 38.663623701146648 ], [ -90.196197636752913, 38.663563384217305 ], [ -90.196055717685866, 38.663278664848896 ], [ -90.196050914029797, 38.663269028320627 ], [ -90.196046776925456, 38.663260727690137 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11226000275", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.197429460774146, 38.666019209413044 ], [ -90.197803767328168, 38.665902630174344 ], [ -90.197851212255173, 38.665887852626561 ], [ -90.197884361602064, 38.665954758005178 ], [ -90.197917511010345, 38.666021663373868 ], [ -90.198317424223418, 38.666415254527585 ], [ -90.198871953815967, 38.667050129001389 ], [ -90.198895699851022, 38.667077315393691 ], [ -90.198504066443647, 38.667287545989431 ], [ -90.197880293546746, 38.666629655225265 ], [ -90.197834729504876, 38.666581598569394 ], [ -90.197590626709527, 38.666324053567337 ], [ -90.197434279626748, 38.666028323404937 ], [ -90.197429460774146, 38.666019209413044 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11229000115", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198009363330769, 38.667755674390186 ], [ -90.198400042049059, 38.667546350206663 ], [ -90.198828916580993, 38.667998824246595 ], [ -90.198833799419234, 38.668003975396296 ], [ -90.198443118310266, 38.668213300977179 ], [ -90.198370770431566, 38.668252064686087 ], [ -90.198072384572626, 38.668411936280165 ], [ -90.198020223134833, 38.668356814245129 ], [ -90.197968061784238, 38.668301691280519 ], [ -90.197924354944121, 38.668255503356939 ], [ -90.197915900506104, 38.66824656919853 ], [ -90.197863740456384, 38.668191448002233 ], [ -90.197811583914302, 38.668136330388371 ], [ -90.197759427455551, 38.668081212751062 ], [ -90.197707257344234, 38.668026081545165 ], [ -90.19763910181085, 38.667954056380601 ], [ -90.197937014533395, 38.667794437804275 ], [ -90.198009363330769, 38.667755674390186 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11229000155", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.198604089367919, 38.668408403397464 ], [ -90.198571667872812, 38.668374198462722 ], [ -90.19851538250515, 38.668404634308722 ], [ -90.198217764087346, 38.668565566778966 ], [ -90.198205324862215, 38.668552421605263 ], [ -90.198165159681906, 38.66850997700773 ], [ -90.198125250819359, 38.668467802426626 ], [ -90.198072384572626, 38.668411936280165 ], [ -90.198370770431566, 38.668252064686087 ], [ -90.198443118310266, 38.668213300977179 ], [ -90.198833799419234, 38.668003975396296 ], [ -90.198865877649112, 38.668037819037373 ], [ -90.198886784176608, 38.668059875747979 ], [ -90.198907674701829, 38.66808191527943 ], [ -90.199131607946327, 38.668318168442234 ], [ -90.199162943961724, 38.668351228152353 ], [ -90.199454326790388, 38.668658637401919 ], [ -90.199049015934406, 38.66887780566519 ], [ -90.199025921654567, 38.668853440760245 ], [ -90.198768080424784, 38.668581415681096 ], [ -90.198715853888316, 38.668526316306213 ], [ -90.198604089367919, 38.668408403397464 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11237000016", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.2012146981413, 38.670184141858812 ], [ -90.201444993359786, 38.670059004544534 ], [ -90.201479531019714, 38.67011271448623 ], [ -90.201510895726344, 38.670161488556928 ], [ -90.201525848843204, 38.670145263017673 ], [ -90.201590358007607, 38.670179918937535 ], [ -90.201610431282333, 38.670190703043545 ], [ -90.201588671124441, 38.670214314750602 ], [ -90.201561891946184, 38.67024337301158 ], [ -90.201426392371388, 38.670390401557235 ], [ -90.201419406360955, 38.670397982728694 ], [ -90.201417392055831, 38.670400168548532 ], [ -90.201353594373302, 38.670332174568564 ], [ -90.201310892568216, 38.670286663439789 ], [ -90.201258511874087, 38.670230837819012 ], [ -90.2012146981413, 38.670184141858812 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11238000110", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204330992351601, 38.663755108454886 ], [ -90.204460183511458, 38.663712626538477 ], [ -90.204487463074585, 38.6637627021707 ], [ -90.204358271844228, 38.663805183210464 ], [ -90.20427752710313, 38.663831734236688 ], [ -90.204196783451565, 38.663858285182236 ], [ -90.204128957404521, 38.66388058767059 ], [ -90.20410167805089, 38.663830511956562 ], [ -90.204169504055329, 38.66380820951111 ], [ -90.204250247656887, 38.663781659462671 ], [ -90.204330992351601, 38.663755108454886 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11238000130", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204385785158252, 38.663855688252106 ], [ -90.204514976463486, 38.663813207182613 ], [ -90.204534100716216, 38.663848312178928 ], [ -90.204570236007072, 38.663914645718258 ], [ -90.204441045700193, 38.66395712685037 ], [ -90.204360300818394, 38.663983677932507 ], [ -90.204279557029651, 38.664010228055311 ], [ -90.204211729711929, 38.664032531493874 ], [ -90.204156470589083, 38.663931092792481 ], [ -90.20422429667191, 38.663908790288502 ], [ -90.204305040370386, 38.663882239296917 ], [ -90.204385785158252, 38.663855688252106 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11238000160", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203710412648576, 38.663839320608879 ], [ -90.203791156452539, 38.663812770878259 ], [ -90.203956577824158, 38.664116430695351 ], [ -90.203875833738849, 38.664142980537704 ], [ -90.203795088441751, 38.664169531227202 ], [ -90.203552853343481, 38.664249182055968 ], [ -90.203387433382005, 38.663945521680148 ], [ -90.203629667632782, 38.66386587118663 ], [ -90.203710412648576, 38.663839320608879 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11238000180", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203281511334467, 38.663751077413302 ], [ -90.203757903409937, 38.663594430694857 ], [ -90.203791154857626, 38.663655470870516 ], [ -90.203808801860973, 38.663687865087439 ], [ -90.203332409271269, 38.663844512008716 ], [ -90.203281511334467, 38.663751077413302 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11238000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203033106550961, 38.662627428074195 ], [ -90.203113787650665, 38.662600766942873 ], [ -90.203285735621961, 38.662916419664619 ], [ -90.203205053074441, 38.662943081815229 ], [ -90.203033106550961, 38.662627428074195 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11238000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.203113787650665, 38.662600766942873 ], [ -90.203200924602783, 38.662571971657997 ], [ -90.203372872889346, 38.662887624254424 ], [ -90.203299007626995, 38.662912033472466 ], [ -90.203285735621961, 38.662916419664619 ], [ -90.203113787650665, 38.662600766942873 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11239000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204781643740219, 38.662764753081341 ], [ -90.205280973910817, 38.662599736363546 ], [ -90.205315268875324, 38.662662897574521 ], [ -90.205338589528054, 38.662705847933488 ], [ -90.204839420982182, 38.662870811233169 ], [ -90.204816034992447, 38.66282788224958 ], [ -90.204781643740219, 38.662764753081341 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11239000150", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.205130317894003, 38.663649467697034 ], [ -90.205068413402998, 38.663535835536713 ], [ -90.205001006393459, 38.663412101451016 ], [ -90.205174378329943, 38.663354041802712 ], [ -90.205323683594969, 38.663663599652757 ], [ -90.205166662341256, 38.663716183560794 ], [ -90.205130317894003, 38.663649467697034 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11239000205", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204389083691566, 38.663162664557611 ], [ -90.204840905514445, 38.663013351389033 ], [ -90.204889339308252, 38.663102259392957 ], [ -90.204437517024985, 38.66325157274462 ], [ -90.204389083691566, 38.663162664557611 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11239000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204285911927187, 38.662973273942363 ], [ -90.204737731620625, 38.66282396116091 ], [ -90.204772122858486, 38.662887091247491 ], [ -90.204320302838141, 38.663036404158966 ], [ -90.204285911927187, 38.662973273942363 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11239000310", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204010789103805, 38.662468230874417 ], [ -90.204462606182062, 38.662318919132886 ], [ -90.204514192342103, 38.662413614399213 ], [ -90.204062373624794, 38.662562926332853 ], [ -90.204010789103805, 38.662468230874417 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11239000330", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204451493808534, 38.662158701976324 ], [ -90.204574155728452, 38.662118165615333 ], [ -90.204745628042971, 38.662433975386975 ], [ -90.204623446615443, 38.66247435367989 ], [ -90.204451493808534, 38.662158701976324 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11239000360", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.204816197750219, 38.662038177038028 ], [ -90.204951742106147, 38.66199338267684 ], [ -90.20512321578839, 38.662309191879388 ], [ -90.204987672090112, 38.662353986465334 ], [ -90.204816197750219, 38.662038177038028 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11240000150", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207070225183699, 38.662283953921524 ], [ -90.207083270088788, 38.662279948740697 ], [ -90.207114583776189, 38.662343928093712 ], [ -90.207145898667576, 38.662407907468207 ], [ -90.20713285259751, 38.662411911774313 ], [ -90.20696489640595, 38.662463460984732 ], [ -90.206701931145062, 38.662544169304596 ], [ -90.20668888617827, 38.662548172657651 ], [ -90.206657247074673, 38.662484324787108 ], [ -90.206625606885325, 38.662420476026028 ], [ -90.206638651836272, 38.662416470867619 ], [ -90.207070225183699, 38.662283953921524 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11242000012", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.20740694103452, 38.660167582005258 ], [ -90.207419979833517, 38.660163566829581 ], [ -90.207811156882642, 38.660043106547747 ], [ -90.20782419563325, 38.660039091326745 ], [ -90.207888131597642, 38.660170056522503 ], [ -90.207875092826782, 38.660174071750461 ], [ -90.20748391517337, 38.660294531334984 ], [ -90.207470876354108, 38.660298546517637 ], [ -90.20740694103452, 38.660167582005258 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11242000225", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207308295715251, 38.659965519025363 ], [ -90.207725609717315, 38.659837150456411 ], [ -90.207789145359612, 38.659967294900724 ], [ -90.207776104333973, 38.659971306487641 ], [ -90.207384871783546, 38.660091652122034 ], [ -90.207371830716454, 38.660095663691109 ], [ -90.207308295715251, 38.659965519025363 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11243000180", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.207699986045469, 38.661869195590668 ], [ -90.208117669229495, 38.661741313992273 ], [ -90.208148984449664, 38.661805368755644 ], [ -90.208167808938953, 38.661843873238624 ], [ -90.207750177013921, 38.661971738940018 ], [ -90.20773130239607, 38.661933176602439 ], [ -90.207699986045469, 38.661869195590668 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11244000270", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209267040759173, 38.66143768372492 ], [ -90.20929304910932, 38.661429506843959 ], [ -90.209657252816356, 38.661315004139936 ], [ -90.209683259929577, 38.661306827168872 ], [ -90.209749765733903, 38.661443020086651 ], [ -90.20972375857896, 38.661451197044698 ], [ -90.209359554285314, 38.661565699978432 ], [ -90.209333545893415, 38.661573876846361 ], [ -90.209267040759173, 38.66143768372492 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11245000015", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.208823006633182, 38.659573307699738 ], [ -90.20883604752899, 38.659569295967877 ], [ -90.208867342722371, 38.659633400075748 ], [ -90.208898639123376, 38.659697504177608 ], [ -90.208885598204063, 38.659701516822437 ], [ -90.208494380359298, 38.659821887824272 ], [ -90.208481339395249, 38.659825900396307 ], [ -90.208450039901976, 38.659761788076551 ], [ -90.208418740460814, 38.659697675720452 ], [ -90.208431781397863, 38.659693664061372 ], [ -90.208500246314429, 38.659672601152231 ], [ -90.208823006633182, 38.659573307699738 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11246000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209723377171329, 38.659814787291758 ], [ -90.209736424895397, 38.659810789892475 ], [ -90.210116991720142, 38.659694194686963 ], [ -90.21013003940071, 38.659690197243528 ], [ -90.210161340374157, 38.659754307335263 ], [ -90.210148292683769, 38.659758304754632 ], [ -90.209767724420473, 38.659874900084247 ], [ -90.209754676682962, 38.659878897486934 ], [ -90.209723377171329, 38.659814787291758 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11246000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209499822405235, 38.659541226085338 ], [ -90.209512863257942, 38.659537214277847 ], [ -90.209564150415517, 38.659642264953071 ], [ -90.209551104991831, 38.659646266842238 ], [ -90.209484427198191, 38.659666723992046 ], [ -90.209404703919944, 38.659691183855053 ], [ -90.209324981743535, 38.659715642760112 ], [ -90.209245258364561, 38.659740101607717 ], [ -90.209170608172499, 38.659763003633181 ], [ -90.209157562701577, 38.659767006384342 ], [ -90.209106418498692, 38.659662246869892 ], [ -90.209119459391545, 38.659658235106491 ], [ -90.209194083285951, 38.659635279008889 ], [ -90.209273778071079, 38.659610763339792 ], [ -90.209353472802078, 38.65958624764356 ], [ -90.209433168631364, 38.659561730989424 ], [ -90.209499822405235, 38.659541226085338 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11247000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21079165708619, 38.659490016662751 ], [ -90.211207474530312, 38.659362432858096 ], [ -90.211238810503374, 38.659426614804367 ], [ -90.210822982498215, 38.659554175297615 ], [ -90.21079165708619, 38.659490016662751 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11249000130", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212146837806429, 38.658512327932229 ], [ -90.21216088723051, 38.658493319553166 ], [ -90.212237252610691, 38.658526892455789 ], [ -90.212065208389987, 38.658768631260614 ], [ -90.2120442972506, 38.658798014492376 ], [ -90.212019605200936, 38.658784748816089 ], [ -90.211969641722206, 38.658762040312482 ], [ -90.212146837806429, 38.658512327932229 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11249000155", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212052085430159, 38.658505322825221 ], [ -90.212131405226302, 38.658480358376771 ], [ -90.21216088723051, 38.658493319553166 ], [ -90.212146837806429, 38.658512327932229 ], [ -90.211969641722206, 38.658762040312482 ], [ -90.211947291490176, 38.658751882096077 ], [ -90.211893886295272, 38.658727610174729 ], [ -90.211818130937445, 38.65869318001544 ], [ -90.21171508478011, 38.658646346130674 ], [ -90.211718387195262, 38.658610348705153 ], [ -90.211922886650683, 38.658545986184585 ], [ -90.212052085430159, 38.658505322825221 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11253000040", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209946747593989, 38.614335570982782 ], [ -90.20996309761388, 38.614256062055986 ], [ -90.210394887077243, 38.614311239150119 ], [ -90.210378538668408, 38.614390748168546 ], [ -90.210362189075013, 38.614470257180685 ], [ -90.209930397537349, 38.614415079933579 ], [ -90.209946747593989, 38.614335570982782 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11253000045", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210218632739071, 38.614843097771839 ], [ -90.210286608344603, 38.614516241316203 ], [ -90.210351040267781, 38.614524474856317 ], [ -90.210310144302909, 38.614722230624132 ], [ -90.210283087165536, 38.614851231426151 ], [ -90.210218632739071, 38.614843097771839 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11253000050", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210163163449735, 38.614836097960861 ], [ -90.210231156869668, 38.614509155085095 ], [ -90.210286608344603, 38.614516241316203 ], [ -90.210218632739071, 38.614843097771839 ], [ -90.210163163449735, 38.614836097960861 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11253000060", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21008343583722, 38.614826036509683 ], [ -90.210151456510474, 38.614498971224791 ], [ -90.210231156869668, 38.614509155085095 ], [ -90.210163163449735, 38.614836097960861 ], [ -90.21008343583722, 38.614826036509683 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11253000156", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210394887077243, 38.614311239150119 ], [ -90.20996309761388, 38.614256062055986 ], [ -90.209969229597419, 38.614226242474878 ], [ -90.210042835107657, 38.61423605197588 ], [ -90.210043943117753, 38.614230629557085 ], [ -90.210256408770249, 38.614258005647848 ], [ -90.210258624765714, 38.614247160833585 ], [ -90.210404827247814, 38.614262901303633 ], [ -90.210394887077243, 38.614311239150119 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11253000158", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210251783631151, 38.614200205885915 ], [ -90.210179194552225, 38.614191484592894 ], [ -90.210175869395428, 38.614207751850458 ], [ -90.210051885375407, 38.614191775830257 ], [ -90.210049668206082, 38.614202620665239 ], [ -90.209976210632846, 38.614192294423596 ], [ -90.209979447604383, 38.61417655219207 ], [ -90.209982919968667, 38.614159665523609 ], [ -90.210147569543125, 38.614180925639197 ], [ -90.210157878689557, 38.614130523879567 ], [ -90.210300422949643, 38.61414846981269 ], [ -90.21030378519977, 38.614136400813194 ], [ -90.21042758608796, 38.614152220229734 ], [ -90.210413718131321, 38.61421966076972 ], [ -90.210251783631151, 38.614200205885915 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11254000065", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209488072008355, 38.616175995613773 ], [ -90.209523121731763, 38.61601050633432 ], [ -90.209589969556077, 38.616029914574924 ], [ -90.209594978132131, 38.616006265136676 ], [ -90.210027334895372, 38.616058821625302 ], [ -90.21000776698196, 38.616151215223056 ], [ -90.20997271712713, 38.616316710932914 ], [ -90.209488072008355, 38.616175995613773 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11254008013", "numunits (2020)": 19, "numunits (2018)": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209722267788706, 38.615405261451848 ], [ -90.209736410696991, 38.6153384829583 ], [ -90.210168350387818, 38.615392991008207 ], [ -90.2101542488424, 38.615459574174466 ], [ -90.210140147270536, 38.615526157338159 ], [ -90.21012604567224, 38.615592740499316 ], [ -90.210111944047497, 38.61565932365793 ], [ -90.210097842396308, 38.615725906813985 ], [ -90.210083741870264, 38.615792489064191 ], [ -90.210069640166282, 38.615859072187689 ], [ -90.210055538435753, 38.615925655336127 ], [ -90.209623265545289, 38.615872709074672 ], [ -90.209637408639736, 38.615805930599073 ], [ -90.209651552855547, 38.615739152123737 ], [ -90.209665695893179, 38.615672374549163 ], [ -90.209679838907931, 38.615605596038428 ], [ -90.209693981895967, 38.615538817552554 ], [ -90.209708124857428, 38.615472039064166 ], [ -90.209722267788706, 38.615405261451848 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11254008421", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.209962132988068, 38.614977600670578 ], [ -90.210041071154066, 38.614987562061948 ], [ -90.210060890339065, 38.614990063189012 ], [ -90.209994378739566, 38.615315412326431 ], [ -90.209972493646063, 38.615312650223615 ], [ -90.209895620958306, 38.615302949750934 ], [ -90.209962132988068, 38.614977600670578 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11255000100", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210713682073489, 38.616326117139913 ], [ -90.210719922743337, 38.616296650949053 ], [ -90.210767846863547, 38.616302758966469 ], [ -90.211171884821894, 38.616354249593812 ], [ -90.21115442423168, 38.616439181110998 ], [ -90.210701948617142, 38.616381517154529 ], [ -90.210713682073489, 38.616326117139913 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11255000170", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210261139769457, 38.615959988265608 ], [ -90.210275482419803, 38.615892268769564 ], [ -90.210722539833867, 38.615949244440777 ], [ -90.210708197591757, 38.616016963992493 ], [ -90.210701026460441, 38.616050823328024 ], [ -90.210253969585764, 38.615993846642525 ], [ -90.210261139769457, 38.615959988265608 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11256000022", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211148999277029, 38.614246079645355 ], [ -90.211166289867265, 38.614162462092104 ], [ -90.211612571031694, 38.614219240600924 ], [ -90.211595200604123, 38.614302848111222 ], [ -90.211148999277029, 38.614246079645355 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11256000024", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211139655537025, 38.614291263227834 ], [ -90.211148999277029, 38.614246079645355 ], [ -90.211595200604123, 38.614302848111222 ], [ -90.211585813525446, 38.614348026213435 ], [ -90.211139655537025, 38.614291263227834 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11256000026", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211130311788679, 38.614336445930533 ], [ -90.211133150036488, 38.6143227224699 ], [ -90.211139655537025, 38.614291263227834 ], [ -90.211585813525446, 38.614348026213435 ], [ -90.211576427586294, 38.61439320343861 ], [ -90.211130311788679, 38.614336445930533 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11256000028", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21111799745006, 38.614395994969314 ], [ -90.211130311788679, 38.614336445930533 ], [ -90.211576427586294, 38.61439320343861 ], [ -90.211570241335423, 38.614422974285674 ], [ -90.211564056223708, 38.614452745162495 ], [ -90.21111799745006, 38.614395994969314 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11256000064", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.211298596359967, 38.614979452193943 ], [ -90.211354906242775, 38.614708439499225 ], [ -90.211506907846555, 38.614727810800041 ], [ -90.211450598519463, 38.614998823569103 ], [ -90.211332185244828, 38.614983732877803 ], [ -90.211298596359967, 38.614979452193943 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11256000067", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210610862335415, 38.614891804505305 ], [ -90.210678123616233, 38.614566549648202 ], [ -90.210795578915778, 38.614581518811377 ], [ -90.210728318146792, 38.614906773764616 ], [ -90.210610862335415, 38.614891804505305 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11256000068", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210728318146792, 38.614906773764616 ], [ -90.210795578915778, 38.614581518811377 ], [ -90.210899800548177, 38.614594802196088 ], [ -90.210880091110496, 38.614689656832162 ], [ -90.210904272424216, 38.614692737916933 ], [ -90.210856409457236, 38.614923098791813 ], [ -90.210728318146792, 38.614906773764616 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11256000069", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210880091110496, 38.614689656832162 ], [ -90.210899800548177, 38.614594802196088 ], [ -90.211010347002201, 38.614608890222364 ], [ -90.210990637705976, 38.614703744877367 ], [ -90.211035547022831, 38.61470946788792 ], [ -90.210987683315935, 38.614939828787122 ], [ -90.210856409457236, 38.614923098791813 ], [ -90.210904272424216, 38.614692737916933 ], [ -90.210880091110496, 38.614689656832162 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11256000071", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.210990637705976, 38.614703744877367 ], [ -90.211010347002201, 38.614608890222364 ], [ -90.211041343117742, 38.614612841170498 ], [ -90.211072339243785, 38.614616791231768 ], [ -90.211214166524869, 38.614634865845069 ], [ -90.211290167221094, 38.614644551611299 ], [ -90.211222595309536, 38.614969766432388 ], [ -90.211146594283406, 38.614960080621572 ], [ -90.210987683315935, 38.614939828787122 ], [ -90.211035547022831, 38.61470946788792 ], [ -90.210990637705976, 38.614703744877367 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11258000210", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225246868056942, 38.620478889823268 ], [ -90.22535895219886, 38.620147100107843 ], [ -90.225369116310233, 38.620149168882349 ], [ -90.22553851561004, 38.620183641676675 ], [ -90.225426431091705, 38.620515430655992 ], [ -90.225268758061645, 38.620483343637027 ], [ -90.225257031070626, 38.620480956792598 ], [ -90.225246868056942, 38.620478889823268 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11258000220", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225426431091705, 38.620515430655992 ], [ -90.22553851561004, 38.620183641676675 ], [ -90.225707916217914, 38.620218114228784 ], [ -90.225595832424304, 38.620549903371028 ], [ -90.225426431091705, 38.620515430655992 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11258000230", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225595832424304, 38.620549903371028 ], [ -90.225707916217914, 38.620218114228784 ], [ -90.225884939524875, 38.620254138514433 ], [ -90.225772856488419, 38.620585926948237 ], [ -90.225595832424304, 38.620549903371028 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11260000090", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224194111220172, 38.621721334993573 ], [ -90.224278811833983, 38.621738572271568 ], [ -90.224171202467204, 38.622057087775922 ], [ -90.224086501505511, 38.622039850419696 ], [ -90.224194111220172, 38.621721334993573 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11265000250", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226188038277016, 38.620671968704521 ], [ -90.226299390558466, 38.62034254572459 ], [ -90.226361916977353, 38.620355475850239 ], [ -90.226482251595939, 38.620380360160098 ], [ -90.226370806732703, 38.62070987409674 ], [ -90.226188038277016, 38.620671968704521 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11265000260", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226370806732703, 38.62070987409674 ], [ -90.226482251595939, 38.620380360160098 ], [ -90.226665112833814, 38.620418173431595 ], [ -90.226553576526854, 38.620747779206617 ], [ -90.226370806732703, 38.62070987409674 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11265000270", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226553576526854, 38.620747779206617 ], [ -90.226665112833814, 38.620418173431595 ], [ -90.226847973113763, 38.620455986415095 ], [ -90.226788140604938, 38.620632705002286 ], [ -90.226736345370398, 38.620785684028768 ], [ -90.226668046990667, 38.620771519982164 ], [ -90.226553576526854, 38.620747779206617 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11266000405", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226841117768259, 38.620298385439263 ], [ -90.226947537175604, 38.619984012299128 ], [ -90.227056577892341, 38.620006664422554 ], [ -90.227124205430812, 38.620020713169517 ], [ -90.227070873589213, 38.62017798334147 ], [ -90.227017664598904, 38.620334893424264 ], [ -90.226841117768259, 38.620298385439263 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11266000430", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22666495666023, 38.620261957387079 ], [ -90.226771425598301, 38.619947427757261 ], [ -90.226947537175604, 38.619984012299128 ], [ -90.226841117768259, 38.620298385439263 ], [ -90.22666495666023, 38.620261957387079 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11266000440", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22648879458032, 38.620225529067412 ], [ -90.226595217824041, 38.619910822022305 ], [ -90.226771425598301, 38.619947427757261 ], [ -90.22666495666023, 38.620261957387079 ], [ -90.22648879458032, 38.620225529067412 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11266000450", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226312633828101, 38.62018910048559 ], [ -90.226419057272551, 38.619874226044672 ], [ -90.226595217824041, 38.619910822022305 ], [ -90.22648879458032, 38.620225529067412 ], [ -90.226312633828101, 38.62018910048559 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11266000460", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226175140152009, 38.620038205841936 ], [ -90.226242895753671, 38.619837629772107 ], [ -90.226419057272551, 38.619874226044672 ], [ -90.226312633828101, 38.62018910048559 ], [ -90.226136472107413, 38.620152671663746 ], [ -90.226175140152009, 38.620038205841936 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11267000010", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228527800538203, 38.619988437052953 ], [ -90.22855529240617, 38.619904249553706 ], [ -90.22914915853022, 38.620027224479664 ], [ -90.229137823973204, 38.620060717653232 ], [ -90.229120734436421, 38.620111218935421 ], [ -90.228527800538203, 38.619988437052953 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11267000080", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228704646815984, 38.620684566601597 ], [ -90.228804333904435, 38.620390086725045 ], [ -90.228825799249577, 38.62039453169924 ], [ -90.22891035600972, 38.62041204007901 ], [ -90.2290118250897, 38.620433051286476 ], [ -90.228940687279689, 38.620643262420991 ], [ -90.22891213261488, 38.620727646626968 ], [ -90.228810666803994, 38.620706579461888 ], [ -90.228726112198586, 38.620689023291604 ], [ -90.228704646815984, 38.620684566601597 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11267000194", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228129022675063, 38.620046953787082 ], [ -90.228150913325436, 38.619980489204536 ], [ -90.228403994265904, 38.620032898028384 ], [ -90.228382557076628, 38.620099455584359 ], [ -90.228129022675063, 38.620046953787082 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11267000310", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228218786587263, 38.620583686721289 ], [ -90.228337865020336, 38.620232194408779 ], [ -90.22833968257477, 38.620232570681829 ], [ -90.228390446732107, 38.6202430824613 ], [ -90.22844121089733, 38.620253595152441 ], [ -90.228506973357625, 38.620267213585542 ], [ -90.228387894192764, 38.620618798851588 ], [ -90.228218786587263, 38.620583686721289 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11267000320", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228049677996466, 38.620548574344262 ], [ -90.228109217570761, 38.620372874231336 ], [ -90.228168756845292, 38.620197174988007 ], [ -90.228337865020336, 38.620232194408779 ], [ -90.228218786587263, 38.620583686721289 ], [ -90.228049677996466, 38.620548574344262 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11268000171", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227855733120805, 38.620853783781421 ], [ -90.22791565772134, 38.620676971174724 ], [ -90.228000249977015, 38.620694535211911 ], [ -90.228050954632081, 38.620705063228804 ], [ -90.227939223914802, 38.621034798704073 ], [ -90.227888478661953, 38.621024320108724 ], [ -90.227803856999401, 38.621006845989001 ], [ -90.227855733120805, 38.620853783781421 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11269000225", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227685736403899, 38.621889779569692 ], [ -90.227797438346528, 38.621560118212976 ], [ -90.227882067572352, 38.621577586038427 ], [ -90.227966696839474, 38.621595053830205 ], [ -90.22803781354655, 38.621609732650683 ], [ -90.227926152892351, 38.621939678120746 ], [ -90.227854962752787, 38.62192490265388 ], [ -90.227770349555769, 38.621907341156053 ], [ -90.227685736403899, 38.621889779569692 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11274000375", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229441982021243, 38.622255716755738 ], [ -90.229554554641581, 38.621922781899485 ], [ -90.229724021398852, 38.621957757795812 ], [ -90.229611397018459, 38.622290909813962 ], [ -90.229441982021243, 38.622255716755738 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11274000435", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229949921126959, 38.622361232296633 ], [ -90.230062647888118, 38.62202764507321 ], [ -90.230274226666296, 38.622071311358908 ], [ -90.230161435494665, 38.622405169822912 ], [ -90.230130967513944, 38.622398840467447 ], [ -90.230022879206146, 38.622376388003623 ], [ -90.229949921126959, 38.622361232296633 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11275000125", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229349898068392, 38.62172438037399 ], [ -90.229462252059818, 38.621392676585657 ], [ -90.229631645789013, 38.621427796582005 ], [ -90.22951930917786, 38.62175934562022 ], [ -90.229349898068392, 38.62172438037399 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11275000255", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229306340170766, 38.621317750155697 ], [ -90.229417714034753, 38.62098884138733 ], [ -90.229586979236956, 38.621023984576212 ], [ -90.229475591364121, 38.62135284031153 ], [ -90.229306340170766, 38.621317750155697 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11275000295", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229644840423987, 38.621387930245078 ], [ -90.229756244609163, 38.621059127520581 ], [ -90.22992550900311, 38.621094269339146 ], [ -90.229814090801725, 38.621423019909386 ], [ -90.229644840423987, 38.621387930245078 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11276000070", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230023082290757, 38.620775800170193 ], [ -90.230078229126192, 38.620613078848749 ], [ -90.230088337590317, 38.620615342566921 ], [ -90.23009955443014, 38.620617854781308 ], [ -90.230150048572384, 38.62062916338575 ], [ -90.230172572903854, 38.620634207835245 ], [ -90.230200543875299, 38.620640472877241 ], [ -90.230256808258574, 38.620653073921716 ], [ -90.230144765641768, 38.620983566641549 ], [ -90.230060110550014, 38.62096599137908 ], [ -90.229975454355198, 38.620948415146671 ], [ -90.229965295888377, 38.620946306255625 ], [ -90.230023082290757, 38.620775800170193 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11276000075", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22979848968491, 38.620911673746775 ], [ -90.229912250761799, 38.620575906101671 ], [ -90.229995239918921, 38.620594492971378 ], [ -90.230078229126192, 38.620613078848749 ], [ -90.230023082290757, 38.620775800170193 ], [ -90.229965295888377, 38.620946306255625 ], [ -90.22979848968491, 38.620911673746775 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11276000085", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229631684787705, 38.620877041936723 ], [ -90.229746273714539, 38.620538734055778 ], [ -90.229844524138798, 38.620560738022576 ], [ -90.229891856012543, 38.620571338574329 ], [ -90.229912250761799, 38.620575906101671 ], [ -90.22979848968491, 38.620911673746775 ], [ -90.229631684787705, 38.620877041936723 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11276000095", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229464878904267, 38.620842409859151 ], [ -90.229580294547304, 38.620501560835926 ], [ -90.229629542471542, 38.620512590228913 ], [ -90.229696868565355, 38.620527669230064 ], [ -90.229746273714539, 38.620538734055778 ], [ -90.229631684787705, 38.620877041936723 ], [ -90.229464878904267, 38.620842409859151 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11277000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236917943556037, 38.621465457521509 ], [ -90.237044203455284, 38.621093985331946 ], [ -90.237162828296391, 38.621117671072412 ], [ -90.237040312195958, 38.621489890498772 ], [ -90.236917943556037, 38.621465457521509 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11277000170", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235738946886002, 38.620790855575514 ], [ -90.23581269272934, 38.620417668399881 ], [ -90.23586064008046, 38.620423785085677 ], [ -90.235956929657405, 38.620436067970644 ], [ -90.235881058049998, 38.620819232310176 ], [ -90.235786150872329, 38.620800281391716 ], [ -90.235738946886002, 38.620790855575514 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11277000220", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236298319974154, 38.620902551035897 ], [ -90.236378699974111, 38.620489869052349 ], [ -90.236482150910092, 38.620503065757347 ], [ -90.236399295480638, 38.620922713301624 ], [ -90.236298319974154, 38.620902551035897 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11277000230", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236399295480638, 38.620922713301624 ], [ -90.236482150910092, 38.620503065757347 ], [ -90.236586163168369, 38.620516333896916 ], [ -90.236500347925002, 38.620942891002386 ], [ -90.236399295480638, 38.620922713301624 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11279008013", "numunits (2020)": 5, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237502468283623, 38.619932967678658 ], [ -90.237550239049739, 38.619700423748569 ], [ -90.237653501966349, 38.619715497339087 ], [ -90.237854841359251, 38.619744887657042 ], [ -90.237957377226124, 38.619742319076337 ], [ -90.23845137320663, 38.619797287231911 ], [ -90.238456409332088, 38.619797414647024 ], [ -90.238575545985739, 38.619800436431007 ], [ -90.23857330045783, 38.619811369113087 ], [ -90.238523848467707, 38.620052113210711 ], [ -90.238521621622482, 38.620062956745734 ], [ -90.238519394776333, 38.620073799374538 ], [ -90.238068107139085, 38.620016240270374 ], [ -90.237603884489019, 38.619957029853609 ], [ -90.237569336749928, 38.619952623039779 ], [ -90.237500241288316, 38.619943810287801 ], [ -90.237502468283623, 38.619932967678658 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11280000015", "numunits (2020)": 35, "numunits (2018)": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236387686795837, 38.620268460079259 ], [ -90.236555696156529, 38.619450666065788 ], [ -90.236559917774287, 38.619430106459134 ], [ -90.236564370866219, 38.619408420366845 ], [ -90.237053801564116, 38.619470850732036 ], [ -90.237479873602226, 38.619525198005149 ], [ -90.237583516197304, 38.619538417560427 ], [ -90.237579061104327, 38.619560104593049 ], [ -90.237575073595607, 38.619579518835572 ], [ -90.237552464885042, 38.619689580229284 ], [ -90.237550239049739, 38.619700423748569 ], [ -90.237502468283623, 38.619932967678658 ], [ -90.237500241288316, 38.619943810287801 ], [ -90.23748642288686, 38.619942047931751 ], [ -90.23739659927422, 38.619930590632833 ], [ -90.237392144103296, 38.619952276777951 ], [ -90.237381392522181, 38.62000461142253 ], [ -90.237303200160142, 38.620385239119315 ], [ -90.23640666003196, 38.620270880075736 ], [ -90.236387686795837, 38.620268460079259 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11282000255", "numunits (2020)": 12, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231856016390225, 38.619317524363112 ], [ -90.231854481799672, 38.619317330789336 ], [ -90.231927055747988, 38.618969105104611 ], [ -90.232421820587462, 38.61903144267518 ], [ -90.232419561863082, 38.619042282425148 ], [ -90.232351508858372, 38.619368828925907 ], [ -90.232349250112563, 38.61937966867383 ], [ -90.231856016390225, 38.619317524363112 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11282000262", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233066904565376, 38.619470084459834 ], [ -90.233069125327503, 38.61945924010854 ], [ -90.233136026229033, 38.619132549133298 ], [ -90.233138246976779, 38.619121703901314 ], [ -90.233300670464075, 38.619142166950006 ], [ -90.23329844974694, 38.619153011278982 ], [ -90.233231548410558, 38.619479703251976 ], [ -90.233229327668724, 38.619490547606411 ], [ -90.233066904565376, 38.619470084459834 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11282000263", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233229327668724, 38.619490547606411 ], [ -90.233231548410558, 38.619479703251976 ], [ -90.23329844974694, 38.619153011278982 ], [ -90.233300670464075, 38.619142166950006 ], [ -90.233463092900493, 38.619162629743428 ], [ -90.233460872203537, 38.619173474103 ], [ -90.233393972731733, 38.619500166172791 ], [ -90.233391752017184, 38.61951101053036 ], [ -90.233229327668724, 38.619490547606411 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11282000265", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233554175307674, 38.619531473226502 ], [ -90.23355639599842, 38.619520628865814 ], [ -90.233623295905275, 38.619193936704377 ], [ -90.23362551657489, 38.619183092341679 ], [ -90.233787939201676, 38.619203553806003 ], [ -90.233785718548987, 38.619214399077947 ], [ -90.233718820513587, 38.619541090430069 ], [ -90.233716599843262, 38.619551935700024 ], [ -90.233554175307674, 38.619531473226502 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11283000080", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23334380161954, 38.618980736557617 ], [ -90.233346030364117, 38.618969892218196 ], [ -90.233413305140061, 38.618642552385893 ], [ -90.233415533863408, 38.618631708044447 ], [ -90.233502001919319, 38.618642602216248 ], [ -90.233499772063951, 38.618653445650608 ], [ -90.233432473564719, 38.618980782787666 ], [ -90.233430243684793, 38.618991627126142 ], [ -90.23334380161954, 38.618980736557617 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11283000265", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232211692268649, 38.61843832044795 ], [ -90.232213908537915, 38.618427475222177 ], [ -90.232280795398452, 38.618100086447527 ], [ -90.232283011646729, 38.618089241192287 ], [ -90.232441975474899, 38.618109269628562 ], [ -90.232439760397909, 38.618120114889457 ], [ -90.232372874240397, 38.618447504635 ], [ -90.232370657997706, 38.618458348985151 ], [ -90.232211692268649, 38.61843832044795 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11283000275", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232370657997706, 38.618458348985151 ], [ -90.232372874240397, 38.618447504635 ], [ -90.232439760397909, 38.618120114889457 ], [ -90.232441975474899, 38.618109269628562 ], [ -90.232600939396207, 38.618129297849094 ], [ -90.232598723191174, 38.6181401440166 ], [ -90.232531838884299, 38.618467532950802 ], [ -90.23252962266487, 38.618478377304001 ], [ -90.232370657997706, 38.618458348985151 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11283000296", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232990952190391, 38.618536500386782 ], [ -90.232993190147937, 38.618525658792734 ], [ -90.233060762228874, 38.618198355814364 ], [ -90.233063000168471, 38.618187513312137 ], [ -90.233235968424211, 38.618209304904489 ], [ -90.233233725914417, 38.618220147399654 ], [ -90.233166030640945, 38.618547433969525 ], [ -90.233163788113131, 38.618558275556516 ], [ -90.232990952190391, 38.618536500386782 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11283000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232757688369887, 38.618160172027103 ], [ -90.232759904548303, 38.618149326762669 ], [ -90.232803547416609, 38.618154825017776 ], [ -90.232890032022226, 38.618165721491827 ], [ -90.232887797501334, 38.618176563998539 ], [ -90.232820350912249, 38.61850388245734 ], [ -90.232818116369984, 38.618514724989481 ], [ -90.232731699073682, 38.618503837622129 ], [ -90.232688587421819, 38.618498406313286 ], [ -90.232690803621324, 38.618487561050891 ], [ -90.232757688369887, 38.618160172027103 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11283000341", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233336625290008, 38.618580051379993 ], [ -90.23333887238465, 38.618569209772595 ], [ -90.233406690857493, 38.618241937798544 ], [ -90.233408936779298, 38.618231097120116 ], [ -90.233581905243867, 38.618252888174212 ], [ -90.233579654755246, 38.618263728873067 ], [ -90.23351171194156, 38.61859098443675 ], [ -90.233509461424646, 38.618601826039693 ], [ -90.233336625290008, 38.618580051379993 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11283000342", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233855134018853, 38.618645374566583 ], [ -90.23385739251782, 38.618634533908697 ], [ -90.23392558516845, 38.618307309327463 ], [ -90.233927843639322, 38.618296470452357 ], [ -90.234092336091038, 38.618317192924131 ], [ -90.234090108630852, 38.618328036375878 ], [ -90.234022883141179, 38.618655382167219 ], [ -90.234020655656451, 38.618666226523075 ], [ -90.233893706369287, 38.618650233929692 ], [ -90.233855134018853, 38.618645374566583 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11283000343", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234183523717974, 38.618686744298827 ], [ -90.234020655656451, 38.618666226523075 ], [ -90.234022883141179, 38.618655382167219 ], [ -90.234090108630852, 38.618328036375878 ], [ -90.234092336091038, 38.618317192924131 ], [ -90.234256484300886, 38.618337872071734 ], [ -90.234184805791514, 38.618686905747836 ], [ -90.234183523717974, 38.618686744298827 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11287000027", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233563866085063, 38.617159041487326 ], [ -90.233631053799655, 38.61684149024093 ], [ -90.233634032705268, 38.616827413402184 ], [ -90.233694514682, 38.61683502787416 ], [ -90.233780652398138, 38.616845872434645 ], [ -90.233807448996032, 38.616849245696294 ], [ -90.233739802421141, 38.617181207511884 ], [ -90.233710740040095, 38.61717754621656 ], [ -90.23362434716455, 38.617166661375428 ], [ -90.233563866085063, 38.617159041487326 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11287000032", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232635742828222, 38.616784368540486 ], [ -90.232637153536444, 38.616777689875114 ], [ -90.232641444109959, 38.61675737288531 ], [ -90.232732840562747, 38.616768879726926 ], [ -90.232777630353723, 38.616774519351473 ], [ -90.232773331781502, 38.616794835421928 ], [ -90.232718795408189, 38.61705257164315 ], [ -90.232674005462513, 38.617046928398636 ], [ -90.232587612904766, 38.617036043699066 ], [ -90.232582604108273, 38.617035412493451 ], [ -90.232635742828222, 38.616784368540486 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11287000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232459278038149, 38.617019873430692 ], [ -90.232518109274949, 38.616741844683339 ], [ -90.232560052614119, 38.616747125666315 ], [ -90.232576857957326, 38.616749241359223 ], [ -90.232518025772848, 38.617027275543329 ], [ -90.232501221521318, 38.617025158032192 ], [ -90.232459278038149, 38.617019873430692 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11287000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233011351556769, 38.616707303816064 ], [ -90.233083140084588, 38.616368017694462 ], [ -90.233169264523426, 38.616378860890094 ], [ -90.233097621010856, 38.616718164500803 ], [ -90.233011351556769, 38.616707303816064 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11287008221", "numunits (2020)": 2, "numunits (2018)": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232837424962312, 38.616691342990265 ], [ -90.232842010999505, 38.616669671749008 ], [ -90.23290577617972, 38.616367935418779 ], [ -90.232910354142732, 38.61634626324912 ], [ -90.233083140084588, 38.616368017694462 ], [ -90.233011351556769, 38.616707303816064 ], [ -90.23290417243976, 38.616693809992512 ], [ -90.232893859776723, 38.616698447765401 ], [ -90.232837424962312, 38.616691342990265 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11299000125", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234213271126691, 38.61447287708566 ], [ -90.234225852859311, 38.61441411446728 ], [ -90.234254841901247, 38.614417751140429 ], [ -90.234259467168002, 38.614395248405849 ], [ -90.234497617408465, 38.614425125021633 ], [ -90.234480900770677, 38.614506451903146 ], [ -90.234213271126691, 38.61447287708566 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11299000140", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234076769428853, 38.614316712794974 ], [ -90.23408234178028, 38.614289604155779 ], [ -90.234514334001034, 38.614343799070056 ], [ -90.234508761807845, 38.614370907702678 ], [ -90.234497617408465, 38.614425125021633 ], [ -90.234259467168002, 38.614395248405849 ], [ -90.234065624713267, 38.614370930072184 ], [ -90.234076769428853, 38.614316712794974 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11299000300", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234559135793234, 38.614384541137255 ], [ -90.234560601901265, 38.614377411225057 ], [ -90.234571746245692, 38.614323193899502 ], [ -90.235024821485069, 38.614380031796195 ], [ -90.235013677472324, 38.614434249165534 ], [ -90.235012211407906, 38.614441379083495 ], [ -90.234559135793234, 38.614384541137255 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11299000310", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234548358555102, 38.614436969229423 ], [ -90.234559135793234, 38.614384541137255 ], [ -90.235012211407906, 38.614441379083495 ], [ -90.235001434490457, 38.614493807217968 ], [ -90.234548358555102, 38.614436969229423 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11299000320", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234532739811172, 38.614512955408017 ], [ -90.234548358555102, 38.614436969229423 ], [ -90.235001434490457, 38.614493807217968 ], [ -90.234985816211363, 38.614569793457925 ], [ -90.234532739811172, 38.614512955408017 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11302000035", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234025443883141, 38.613531654339297 ], [ -90.234012905594938, 38.61359264944354 ], [ -90.233580915966797, 38.613538452682874 ], [ -90.233593454610727, 38.613477457625571 ], [ -90.234025443883141, 38.613531654339297 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11302000045", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234012905594938, 38.61359264944354 ], [ -90.234000368439993, 38.613653643642195 ], [ -90.233568377308131, 38.613599446831969 ], [ -90.233580915966797, 38.613538452682874 ], [ -90.234012905594938, 38.61359264944354 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11302000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233653416550055, 38.614263599805916 ], [ -90.233681279039544, 38.614128057614252 ], [ -90.233759037659908, 38.614137812955107 ], [ -90.233731175312727, 38.614273355165558 ], [ -90.233703312849329, 38.614408900056887 ], [ -90.233625552796397, 38.614399144675858 ], [ -90.233653416550055, 38.614263599805916 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11303000190", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23104964554453, 38.613673405454975 ], [ -90.231121266099578, 38.613325059734102 ], [ -90.23134949310986, 38.613353692160608 ], [ -90.231277873628258, 38.613702037995786 ], [ -90.23104964554453, 38.613673405454975 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11304000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231860513273404, 38.616008315002567 ], [ -90.231862740995183, 38.615997471589907 ], [ -90.231926423090528, 38.615687505963891 ], [ -90.231948801795923, 38.615578579266042 ], [ -90.23195900474191, 38.615528916760248 ], [ -90.231969273167223, 38.615478932773733 ], [ -90.232055682484997, 38.615489724278099 ], [ -90.231949152062626, 38.616008264082851 ], [ -90.231946924353537, 38.616019107497152 ], [ -90.231860513273404, 38.616008315002567 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11308000070", "numunits (2020)": 24, "numunits (2018)": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229103317989725, 38.615656957208095 ], [ -90.229183094638586, 38.615269407837452 ], [ -90.229478562950391, 38.61530706538715 ], [ -90.229528272714646, 38.615313400463101 ], [ -90.229448589979768, 38.615701190799101 ], [ -90.229398792850773, 38.615694811361379 ], [ -90.229103317989725, 38.615656957208095 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11311000185", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227227222933621, 38.613373748998853 ], [ -90.227241209409158, 38.613305984203897 ], [ -90.227255197002492, 38.613238219409105 ], [ -90.227269183424681, 38.613170454609069 ], [ -90.227269557713768, 38.613168638396985 ], [ -90.22770661037282, 38.613224803473557 ], [ -90.227706234943, 38.613226619684411 ], [ -90.227692248923844, 38.613294384537454 ], [ -90.227678261726552, 38.613362149385281 ], [ -90.227664275654035, 38.613429914233244 ], [ -90.227227222933621, 38.613373748998853 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11311000220", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227311143672097, 38.612967160196419 ], [ -90.227316737971179, 38.61294005464557 ], [ -90.227753788131139, 38.612996219540634 ], [ -90.227748193995239, 38.613023325140169 ], [ -90.227734208052624, 38.613091090000822 ], [ -90.227297157333439, 38.613034925004065 ], [ -90.227311143672097, 38.612967160196419 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11311000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227367091062618, 38.612696100973189 ], [ -90.227381077271374, 38.61262833615281 ], [ -90.22781812559704, 38.61268450080405 ], [ -90.227804139787807, 38.612752265677415 ], [ -90.227790152803962, 38.612820030545578 ], [ -90.227353103682759, 38.612763865788345 ], [ -90.227367091062618, 38.612696100973189 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11311000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227834590405223, 38.612344944496456 ], [ -90.227904520916695, 38.61200612097219 ], [ -90.227990983820007, 38.612016964260356 ], [ -90.227921053704065, 38.612355787809641 ], [ -90.227834590405223, 38.612344944496456 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11312000241", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226878214027479, 38.615083599050017 ], [ -90.226895319115869, 38.614996288690463 ], [ -90.22720697229849, 38.615036622894614 ], [ -90.227194775708014, 38.615098882888439 ], [ -90.227189868725588, 38.615123933303067 ], [ -90.226878214027479, 38.615083599050017 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11312000251", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226895319115869, 38.614996288690463 ], [ -90.226912370323859, 38.614909248454587 ], [ -90.227224023136685, 38.614949583518737 ], [ -90.22720697229849, 38.615036622894614 ], [ -90.226895319115869, 38.614996288690463 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11313000010", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226485286858193, 38.613745474079153 ], [ -90.226501430826914, 38.613663066874771 ], [ -90.226933175558855, 38.613718552233628 ], [ -90.226917056674921, 38.613800829838745 ], [ -90.226485286858193, 38.613745474079153 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11314000260", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226199381742433, 38.612685155323774 ], [ -90.22621336904291, 38.612617390646754 ], [ -90.226645085478452, 38.612672875192153 ], [ -90.226631098569115, 38.612740639921547 ], [ -90.226199381742433, 38.612685155323774 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11314000430", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226618626942169, 38.613144585514938 ], [ -90.226640447251157, 38.613038871982859 ], [ -90.227072167692981, 38.613094354961447 ], [ -90.227050348006415, 38.613200067696553 ], [ -90.226618626942169, 38.613144585514938 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11314000480", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22672772782073, 38.612616020456223 ], [ -90.22674954780156, 38.612510306893206 ], [ -90.227181265168596, 38.612565789463297 ], [ -90.227159445803451, 38.612671503107997 ], [ -90.22672772782073, 38.612616020456223 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11315000010", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225928617581914, 38.612512453460241 ], [ -90.225998902671108, 38.612173673358505 ], [ -90.226089873334672, 38.612185129450779 ], [ -90.226019934114177, 38.612523952755488 ], [ -90.225928617581914, 38.612512453460241 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11315000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22551827485961, 38.612460777417795 ], [ -90.225588560676869, 38.612121996657422 ], [ -90.225653351903674, 38.612130155942594 ], [ -90.225583065231234, 38.612468936739752 ], [ -90.22551827485961, 38.612460777417795 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11315000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225453483351572, 38.612452618029806 ], [ -90.225523770616363, 38.612113837339102 ], [ -90.225566963988371, 38.612119276888627 ], [ -90.225588560676869, 38.612121996657422 ], [ -90.22551827485961, 38.612460777417795 ], [ -90.225496676920969, 38.612458057633113 ], [ -90.22547508013551, 38.612455337819732 ], [ -90.225453483351572, 38.612452618029806 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11315000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225237513303924, 38.612425419000033 ], [ -90.22530780155617, 38.612086638413608 ], [ -90.225394189391992, 38.612097517686131 ], [ -90.225323901531354, 38.612436299203956 ], [ -90.225237513303924, 38.612425419000033 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11315000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224028085470422, 38.612273098391448 ], [ -90.224077010323867, 38.612037307521348 ], [ -90.224098379255238, 38.611934317663923 ], [ -90.224184765569248, 38.611945197798143 ], [ -90.224114472182762, 38.612283978605824 ], [ -90.224028085470422, 38.612273098391448 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11315000240", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224023238957599, 38.611869233068148 ], [ -90.224093532352782, 38.611530454131334 ], [ -90.224179919333622, 38.611541334270825 ], [ -90.224109626329806, 38.61188011419393 ], [ -90.224023238957599, 38.611869233068148 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11315000300", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224627948830374, 38.611945395843669 ], [ -90.224698239467955, 38.611606614725723 ], [ -90.224784626630608, 38.611617495325468 ], [ -90.224714336387862, 38.611956276523514 ], [ -90.224627948830374, 38.611945395843669 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11315000340", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225059885738204, 38.611999796708631 ], [ -90.225130174404541, 38.611661014421152 ], [ -90.225206194945173, 38.611670589379976 ], [ -90.225135906629731, 38.612009370835146 ], [ -90.225059885738204, 38.611999796708631 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11318000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224189292313113, 38.613209317156276 ], [ -90.224260340302465, 38.612870630940094 ], [ -90.22434672776329, 38.612881510984579 ], [ -90.224275680172184, 38.613220197254044 ], [ -90.224189292313113, 38.613209317156276 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11318000175", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223885204334351, 38.613171016100914 ], [ -90.22395625370622, 38.612832331884427 ], [ -90.224001174631127, 38.612837989592506 ], [ -90.224087563160595, 38.612848869803344 ], [ -90.224016514388765, 38.613187555006924 ], [ -90.223930125461067, 38.61317667474281 ], [ -90.223885204334351, 38.613171016100914 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11318000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224098555489959, 38.612796469315732 ], [ -90.224169602331799, 38.612457784034468 ], [ -90.224255990431985, 38.612468665026256 ], [ -90.224184943981356, 38.612807350360782 ], [ -90.224098555489959, 38.612796469315732 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11318000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224271332502752, 38.612818231342125 ], [ -90.224342378558575, 38.612479545048231 ], [ -90.224428765567254, 38.612490425003791 ], [ -90.224357719906109, 38.612829111350933 ], [ -90.224271332502752, 38.612818231342125 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11318000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22444410848027, 38.612839991326197 ], [ -90.224515153746708, 38.612501305831948 ], [ -90.224601541956204, 38.612512185662794 ], [ -90.22453049708102, 38.612850872116418 ], [ -90.22444410848027, 38.612839991326197 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11318000345", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225048826959139, 38.61291615103886 ], [ -90.225119869462446, 38.612577464265776 ], [ -90.225206257853756, 38.612588344556833 ], [ -90.225292646271356, 38.612599223905505 ], [ -90.22522160455749, 38.612937910785071 ], [ -90.225135215741659, 38.612927031383151 ], [ -90.225048826959139, 38.61291615103886 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11318000370", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225394381113901, 38.612959670246319 ], [ -90.225465422041793, 38.612620983260285 ], [ -90.225551810542385, 38.612631862390401 ], [ -90.225638199062402, 38.612642742390371 ], [ -90.22565029205802, 38.612644265199805 ], [ -90.225579253129709, 38.612982951396326 ], [ -90.2255671589309, 38.612981428576759 ], [ -90.225480770012567, 38.612970548550983 ], [ -90.225394381113901, 38.612959670246319 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11319000010", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223731604001927, 38.612235655325335 ], [ -90.223676855201944, 38.612228687034992 ], [ -90.223679190765949, 38.612217856657409 ], [ -90.223747516600852, 38.611901082895074 ], [ -90.223749852143328, 38.611890252515401 ], [ -90.223804681030188, 38.611897231751385 ], [ -90.223734385913076, 38.6122360096088 ], [ -90.223731604001927, 38.612235655325335 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11319000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222699906820438, 38.612104331286702 ], [ -90.222702196624539, 38.61209349447752 ], [ -90.222769178151239, 38.611776548771871 ], [ -90.222771467930798, 38.611765713772932 ], [ -90.222857568782274, 38.611776673515223 ], [ -90.222855275571618, 38.611787508507724 ], [ -90.222788176205682, 38.612104439568483 ], [ -90.22278588182256, 38.612115275434938 ], [ -90.222699906820438, 38.612104331286702 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11319000135", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22176873340112, 38.611985793714531 ], [ -90.221789123329202, 38.611888613580597 ], [ -90.221802940964196, 38.611890372406698 ], [ -90.222100032836011, 38.611928192967568 ], [ -90.222081918287358, 38.612014535418197 ], [ -90.22207964446342, 38.61202537313175 ], [ -90.22176873340112, 38.611985793714531 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11319000145", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222280712223309, 38.612050968039405 ], [ -90.22207964446342, 38.61202537313175 ], [ -90.222081918287358, 38.612014535418197 ], [ -90.222100032836011, 38.611928192967568 ], [ -90.222293489145315, 38.611952819407399 ], [ -90.222307306801795, 38.611954578174021 ], [ -90.222286918697321, 38.612051758374861 ], [ -90.222280712223309, 38.612050968039405 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11319000205", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221902394600264, 38.611348724231746 ], [ -90.22192221689825, 38.611254243601373 ], [ -90.222257305567922, 38.611296900463891 ], [ -90.222255031793523, 38.611307738209817 ], [ -90.222237483700383, 38.611391381151897 ], [ -90.222406756744078, 38.611412929562889 ], [ -90.222420574299946, 38.611414688315904 ], [ -90.222406415955504, 38.611482174670464 ], [ -90.222392598387074, 38.611480415915757 ], [ -90.221902053331178, 38.611417969336834 ], [ -90.221888235787688, 38.611416210522648 ], [ -90.221902394600264, 38.611348724231746 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11319000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222655756574596, 38.611358749849586 ], [ -90.222658030290319, 38.6113479121232 ], [ -90.222681578654672, 38.611350910006522 ], [ -90.222767623908055, 38.611361863368295 ], [ -90.222785848391879, 38.611364182922088 ], [ -90.222783574694859, 38.611375020650989 ], [ -90.222717068744359, 38.611692026052154 ], [ -90.222714795026249, 38.611702863806507 ], [ -90.222696712768283, 38.611700561684387 ], [ -90.222610618916661, 38.611689602773872 ], [ -90.222586977488774, 38.611686592931541 ], [ -90.222589251225472, 38.611675755207187 ], [ -90.222655756574596, 38.611358749849586 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11321000090", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221838023300037, 38.614400098074704 ], [ -90.221882751871163, 38.614398667044767 ], [ -90.221961080139948, 38.614408345982071 ], [ -90.221919347478902, 38.614596999524309 ], [ -90.221884464914524, 38.614754687678328 ], [ -90.221809846815617, 38.614745466129165 ], [ -90.22176661044405, 38.614740124164278 ], [ -90.221838023300037, 38.614400098074704 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11322000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222687111857653, 38.6130188614434 ], [ -90.222757433333271, 38.612680087953898 ], [ -90.222843799234056, 38.612691081639305 ], [ -90.222773403555124, 38.613029845120266 ], [ -90.222687111857653, 38.6130188614434 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11322000250", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222853819230991, 38.61263855645209 ], [ -90.222924871745178, 38.612299875535165 ], [ -90.223011345096722, 38.612310882860378 ], [ -90.222940292977526, 38.612649563830615 ], [ -90.222853819230991, 38.61263855645209 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11322000275", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223026765599343, 38.612660571170039 ], [ -90.223097817327059, 38.612321890146525 ], [ -90.223184289584182, 38.612332897368844 ], [ -90.223113238251457, 38.612671578445671 ], [ -90.223026765599343, 38.612660571170039 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11322000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223530181180266, 38.612376924664183 ], [ -90.22359927232705, 38.612385718636133 ], [ -90.223528222889939, 38.612724400847426 ], [ -90.223459131423937, 38.612715606860363 ], [ -90.223530181180266, 38.612376924664183 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11322000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222314148509582, 38.612569858847174 ], [ -90.222380020701138, 38.612230518283546 ], [ -90.222442354197412, 38.612238452849986 ], [ -90.222371299475853, 38.612577134348115 ], [ -90.222342723991218, 38.612573496614871 ], [ -90.222314148509582, 38.612569858847174 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11324000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218003850976984, 38.613669435727445 ], [ -90.218018044725881, 38.61360169687557 ], [ -90.218377493993884, 38.613646641291602 ], [ -90.218363300570033, 38.613714381093914 ], [ -90.218003850976984, 38.613669435727445 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11325000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217386498651422, 38.612505037029202 ], [ -90.217476166067343, 38.612104477143632 ], [ -90.217543278746533, 38.612123314814184 ], [ -90.217551478300535, 38.612125616490687 ], [ -90.217492505169218, 38.612407070819955 ], [ -90.217469795444529, 38.612515453429005 ], [ -90.21746272474121, 38.612514568881522 ], [ -90.217386498651422, 38.612505037029202 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11326000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215497664002115, 38.613222684357716 ], [ -90.215509019885388, 38.613168495508027 ], [ -90.215536651812485, 38.613172032646311 ], [ -90.21602372271559, 38.613234245235496 ], [ -90.21601236719782, 38.61328843594822 ], [ -90.215525295942342, 38.613226222404862 ], [ -90.215497664002115, 38.613222684357716 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11330000240", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214511829980182, 38.611327293914513 ], [ -90.214535759513865, 38.611288674218144 ], [ -90.214579448637352, 38.611300817134676 ], [ -90.214533416998052, 38.611522260827144 ], [ -90.214409497079743, 38.611492448332648 ], [ -90.214511829980182, 38.611327293914513 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11330000300", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213986919233946, 38.611326328907609 ], [ -90.213991824882044, 38.611315463517109 ], [ -90.213996730525039, 38.611304599032508 ], [ -90.214053867597713, 38.611178044370469 ], [ -90.214063215513164, 38.611157338575786 ], [ -90.214338471614354, 38.611233842279923 ], [ -90.214240112797725, 38.611451698267395 ], [ -90.213986919233946, 38.611326328907609 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11331050170", "numunits (2020)": 8, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.212324165476616, 38.613586511410126 ], [ -90.212413075973956, 38.613155077520048 ], [ -90.212585808098154, 38.613177052195311 ], [ -90.212496898606361, 38.61360848621878 ], [ -90.212324165476616, 38.613586511410126 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11332000040", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213909772537406, 38.61094038149951 ], [ -90.214073882383829, 38.610572362613084 ], [ -90.214123368697429, 38.610586117080281 ], [ -90.214222327617804, 38.610613621442688 ], [ -90.214058219580949, 38.610981640512556 ], [ -90.213959260219468, 38.610954136038892 ], [ -90.213909772537406, 38.61094038149951 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11332000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214299395926346, 38.610588431750806 ], [ -90.214465640566758, 38.610220202146245 ], [ -90.214564604853621, 38.61024770804574 ], [ -90.21445453159312, 38.610491516532406 ], [ -90.214398359509559, 38.610615936854451 ], [ -90.214299395926346, 38.610588431750806 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11333000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214042404345719, 38.609927298337098 ], [ -90.214208766110332, 38.609559877463781 ], [ -90.214307729392601, 38.609587383552402 ], [ -90.214141368067359, 38.60995480456635 ], [ -90.214042404345719, 38.609927298337098 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11333000060", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213794733308262, 38.609858460119121 ], [ -90.213961096172369, 38.609491039597764 ], [ -90.214010840921645, 38.609504865917401 ], [ -90.214109804051915, 38.609532372173092 ], [ -90.213943441848002, 38.609899792905786 ], [ -90.213844478278389, 38.60987228650945 ], [ -90.213794733308262, 38.609858460119121 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11333000070", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213646552515115, 38.609817274347627 ], [ -90.21381329336495, 38.609449959465486 ], [ -90.213911879015171, 38.60947736048707 ], [ -90.213961096172369, 38.609491039597764 ], [ -90.213794733308262, 38.609858460119121 ], [ -90.213745515932587, 38.609844780938509 ], [ -90.213646552515115, 38.609817274347627 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11333000130", "numunits (2020)": 5, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213036284570208, 38.609647651524668 ], [ -90.213202649657035, 38.609280230293471 ], [ -90.213219143210793, 38.609284815539027 ], [ -90.213318105733094, 38.609312321556892 ], [ -90.213151740010829, 38.609679742976823 ], [ -90.213052777049342, 38.609652235912158 ], [ -90.213036284570208, 38.609647651524668 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11333000180", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213455537756658, 38.609303911922005 ], [ -90.213635175648236, 38.608939782702073 ], [ -90.213767123745882, 38.608976457826181 ], [ -90.21358748757514, 38.609340587223905 ], [ -90.213455537756658, 38.609303911922005 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11333008261", "numunits (2020)": 4, "numunits (2018)": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214511136658032, 38.609597309401572 ], [ -90.2146907688184, 38.609233178586763 ], [ -90.214792633509418, 38.609261490401039 ], [ -90.214822719144863, 38.609269852525564 ], [ -90.21464308755742, 38.609633983542778 ], [ -90.214511136658032, 38.609597309401572 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11337000065", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21414165529788, 38.608847509277517 ], [ -90.214307604766333, 38.608479929546576 ], [ -90.214385489868619, 38.608501653754466 ], [ -90.214298867435744, 38.608693525277204 ], [ -90.21428125013253, 38.608703103928057 ], [ -90.214207761272021, 38.6088658824672 ], [ -90.21414165529788, 38.608847509277517 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11337000080", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.213877758171179, 38.608774159748819 ], [ -90.214043813059689, 38.608406349988826 ], [ -90.214060929161747, 38.608411124040188 ], [ -90.214070463214711, 38.608413783240131 ], [ -90.214175709417376, 38.608443139857023 ], [ -90.214009707239086, 38.608810834602551 ], [ -90.21389248772887, 38.608778254109957 ], [ -90.213877758171179, 38.608774159748819 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11337000215", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214708816667837, 38.608545211738146 ], [ -90.214875265850367, 38.608177815270153 ], [ -90.214908241076387, 38.608187013185848 ], [ -90.214941214018751, 38.608196210180559 ], [ -90.21477380862207, 38.608563339576648 ], [ -90.214741790895843, 38.608554408791782 ], [ -90.214708816667837, 38.608545211738146 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11337000217", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21477380862207, 38.608563339576648 ], [ -90.214941214018751, 38.608196210180559 ], [ -90.215007162220871, 38.608214605081329 ], [ -90.214840713623531, 38.608582000830665 ], [ -90.21477380862207, 38.608563339576648 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11338000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215909332708847, 38.60933971026261 ], [ -90.216075461092586, 38.608972225765363 ], [ -90.216174423133111, 38.608999732087177 ], [ -90.216008483278529, 38.6093672703404 ], [ -90.215909332708847, 38.60933971026261 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11338000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215637376099494, 38.609264117317238 ], [ -90.21580331759921, 38.608896580496122 ], [ -90.215811564989906, 38.608898872470775 ], [ -90.215894032034342, 38.60892179505197 ], [ -90.215728090937645, 38.609289332001637 ], [ -90.215645623526839, 38.609266409303572 ], [ -90.215637376099494, 38.609264117317238 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11338000260", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216176625804337, 38.608953734408701 ], [ -90.21634256383031, 38.608586197696887 ], [ -90.216359057428051, 38.608590782500542 ], [ -90.216458017907556, 38.60861828858004 ], [ -90.216507498748015, 38.608632042029143 ], [ -90.21634156145123, 38.608999579880845 ], [ -90.216292081538825, 38.608985826364368 ], [ -90.216193120623203, 38.608958319238489 ], [ -90.216176625804337, 38.608953734408701 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11338000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216786889563295, 38.609123359785073 ], [ -90.21695282373021, 38.608755822205651 ], [ -90.217051784665671, 38.608783328690038 ], [ -90.217117759425506, 38.60880166658545 ], [ -90.216951824847015, 38.609169203489735 ], [ -90.216885850938411, 38.60915086640972 ], [ -90.216786889563295, 38.609123359785073 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11338000330", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217083775061113, 38.609205879383644 ], [ -90.217249707909062, 38.608838341383496 ], [ -90.217414593521099, 38.608884170808153 ], [ -90.217412805609413, 38.608893033040154 ], [ -90.217335561003011, 38.609275862876899 ], [ -90.217083775061113, 38.609205879383644 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11339000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215433527056035, 38.610314438452612 ], [ -90.215601694778186, 38.609947519992822 ], [ -90.215684036790208, 38.609970408175187 ], [ -90.215515869432465, 38.610337326753246 ], [ -90.215433527056035, 38.610314438452612 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11339000120", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215093860335926, 38.609759750632634 ], [ -90.215173933205875, 38.609368346438728 ], [ -90.215313073993883, 38.609407021893546 ], [ -90.215176388915268, 38.609705248769338 ], [ -90.215144906090202, 38.60977393909269 ], [ -90.215093860335926, 38.609759750632634 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11339000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215306545560153, 38.609818869019485 ], [ -90.215474712751913, 38.609451951615632 ], [ -90.215491213371621, 38.609456538342975 ], [ -90.215557181463964, 38.609474875315499 ], [ -90.215389014637083, 38.60984179286524 ], [ -90.215323046252806, 38.609823455797979 ], [ -90.215306545560153, 38.609818869019485 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11340000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215934941224191, 38.611470715423323 ], [ -90.216095003479296, 38.611116203581616 ], [ -90.216127991797677, 38.611125373256641 ], [ -90.216177498380787, 38.61113913321941 ], [ -90.216017411246739, 38.611493637918635 ], [ -90.215934941224191, 38.611470715423323 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11340000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215225695940788, 38.611273576755217 ], [ -90.21538576237613, 38.610919067698184 ], [ -90.215484725667494, 38.610946575479083 ], [ -90.215324659656162, 38.611301084698859 ], [ -90.215225695940788, 38.611273576755217 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11340000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215203341496164, 38.61082466473836 ], [ -90.215363898423718, 38.610469871269672 ], [ -90.215462831270656, 38.610497370923639 ], [ -90.215302304587397, 38.610852172700703 ], [ -90.215203341496164, 38.61082466473836 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11340000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215797123486894, 38.610989711209854 ], [ -90.21595764805204, 38.610634908754363 ], [ -90.216056611175077, 38.610662416079748 ], [ -90.21589608703772, 38.611017218670924 ], [ -90.215797123486894, 38.610989711209854 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11341000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217973686368609, 38.612041322896168 ], [ -90.218133931262258, 38.61168661143293 ], [ -90.218183376322656, 38.611700446076526 ], [ -90.218232822546554, 38.611714280701996 ], [ -90.218072578076516, 38.61206899230055 ], [ -90.217973686368609, 38.612041322896168 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11341000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217264911419235, 38.611396815600983 ], [ -90.217425214194876, 38.611042210599756 ], [ -90.217524104320461, 38.611069880466509 ], [ -90.217363801968247, 38.611424485603138 ], [ -90.217264911419235, 38.611396815600983 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11341000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218253822647, 38.611673511791587 ], [ -90.218414121188133, 38.611318905464067 ], [ -90.218513013225703, 38.611346574471909 ], [ -90.21835271510794, 38.611701180962271 ], [ -90.218253822647, 38.611673511791587 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11341008211", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217264911419235, 38.611396815600983 ], [ -90.217121123935215, 38.611356582645413 ], [ -90.217198392614932, 38.610978744999223 ], [ -90.217425214194876, 38.611042210599756 ], [ -90.217264911419235, 38.611396815600983 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11341008215", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218072578076516, 38.61206899230055 ], [ -90.218232822546554, 38.611714280701996 ], [ -90.218397641909675, 38.611760395956829 ], [ -90.218237398142193, 38.612115107780951 ], [ -90.218072578076516, 38.61206899230055 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11342000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218855925692921, 38.611267602042197 ], [ -90.219023043343981, 38.610899897808096 ], [ -90.219121933899984, 38.610927566326751 ], [ -90.218954816684274, 38.611295270674511 ], [ -90.218855925692921, 38.611267602042197 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11342000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218064798213817, 38.611046249810094 ], [ -90.218231919378212, 38.610678546705024 ], [ -90.218330809319539, 38.610706215891057 ], [ -90.218163688597485, 38.611073919109828 ], [ -90.218064798213817, 38.611046249810094 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11342000230", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217289144764194, 38.61054107384895 ], [ -90.217313266535854, 38.610421505584135 ], [ -90.217539689628538, 38.610484860116337 ], [ -90.217488755260618, 38.61059692620919 ], [ -90.217417850883891, 38.610577086599378 ], [ -90.217289144764194, 38.61054107384895 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11342000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218114418853901, 38.610599025374029 ], [ -90.218281158854623, 38.610232156397117 ], [ -90.218370984020353, 38.610257289435772 ], [ -90.2182042455686, 38.610624158543366 ], [ -90.218114418853901, 38.610599025374029 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11343000050", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217537304923965, 38.60932962214099 ], [ -90.217615754475787, 38.608940818585197 ], [ -90.217830766059265, 38.609000980304991 ], [ -90.217665143088411, 38.609365392901509 ], [ -90.217537304923965, 38.60932962214099 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11347000160", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220813632234496, 38.610241636423581 ], [ -90.220979881394697, 38.609877681274149 ], [ -90.221078723827972, 38.609905453416992 ], [ -90.220912597823428, 38.610269443239794 ], [ -90.220813632234496, 38.610241636423581 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11347000180", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221011440763377, 38.610297215439481 ], [ -90.22117756633439, 38.60993322547651 ], [ -90.221276408920843, 38.609960997480115 ], [ -90.221110283783361, 38.610324987583283 ], [ -90.221011440763377, 38.610297215439481 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11347000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22139633753099, 38.610548429877049 ], [ -90.221435004210079, 38.610462891173704 ], [ -90.221566795826149, 38.610499920195842 ], [ -90.221647349040282, 38.610522553086277 ], [ -90.221628431913459, 38.61061301786679 ], [ -90.221528271720175, 38.610585144845608 ], [ -90.22139633753099, 38.610548429877049 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11347000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221202856069382, 38.610812158356232 ], [ -90.221369107882595, 38.610444375713314 ], [ -90.221435004210079, 38.610462891173704 ], [ -90.22139633753099, 38.610548429877049 ], [ -90.221268823336345, 38.610830516434802 ], [ -90.221202856069382, 38.610812158356232 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11347000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221136889980514, 38.610793801176818 ], [ -90.221303212737126, 38.610425861124718 ], [ -90.221369107882595, 38.610444375713314 ], [ -90.221202856069382, 38.610812158356232 ], [ -90.221136889980514, 38.610793801176818 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11347000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221070922777713, 38.610775443930137 ], [ -90.221237316474273, 38.610407346496395 ], [ -90.221303212737126, 38.610425861124718 ], [ -90.221136889980514, 38.610793801176818 ], [ -90.221070922777713, 38.610775443930137 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11347000280", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221004955615669, 38.610757085740175 ], [ -90.221171421393393, 38.610388831833717 ], [ -90.221237316474273, 38.610407346496395 ], [ -90.221070922777713, 38.610775443930137 ], [ -90.221004955615669, 38.610757085740175 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11347008310", "numunits (2020)": 4, "numunits (2018)": 13 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22034528810147, 38.610573506444837 ], [ -90.220188056303627, 38.610529749785137 ], [ -90.22035540586856, 38.610159551402575 ], [ -90.220512466729261, 38.610203682195049 ], [ -90.22034528810147, 38.610573506444837 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11348000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220367155799451, 38.611223999238604 ], [ -90.220532319580926, 38.610858637700325 ], [ -90.220631269725942, 38.610886174435414 ], [ -90.220466106384876, 38.611251536113251 ], [ -90.220367155799451, 38.611223999238604 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11348000185", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221161157796388, 38.611554014200699 ], [ -90.2211861685294, 38.611498535575535 ], [ -90.221431047612811, 38.611566681276514 ], [ -90.221404025023944, 38.611695476687608 ], [ -90.221131564341746, 38.611619655691712 ], [ -90.221161157796388, 38.611554014200699 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11348000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221102386603917, 38.611684374737834 ], [ -90.221131564341746, 38.611619655691712 ], [ -90.221404025023944, 38.611695476687608 ], [ -90.221389586105474, 38.611764296488957 ], [ -90.221102386603917, 38.611684374737834 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11351000150", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222432423081841, 38.610180081603744 ], [ -90.222446362928892, 38.610112310924407 ], [ -90.222684719618201, 38.610142654407632 ], [ -90.222670781143933, 38.610210424212383 ], [ -90.222432423081841, 38.610180081603744 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11351000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222169617838659, 38.610061780982235 ], [ -90.222177982574266, 38.610021118413812 ], [ -90.222696149539942, 38.610087083035545 ], [ -90.222687786246993, 38.610127743831995 ], [ -90.222684719618201, 38.610142654407632 ], [ -90.222446362928892, 38.610112310924407 ], [ -90.222166551116075, 38.610076689731791 ], [ -90.222169617838659, 38.610061780982235 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11351000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223904246314802, 38.609642846544922 ], [ -90.223999274980272, 38.609654786754597 ], [ -90.223930882186394, 38.609986936985315 ], [ -90.223835883532317, 38.609974844529802 ], [ -90.223904246314802, 38.609642846544922 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11352000110", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223027017099213, 38.611173768664813 ], [ -90.223097033305123, 38.610834954490663 ], [ -90.223140253047447, 38.610840456259474 ], [ -90.22322644465919, 38.610851427642174 ], [ -90.223224208915084, 38.610862270879537 ], [ -90.223158796786748, 38.611179416077562 ], [ -90.223156561018513, 38.611190259312949 ], [ -90.223070235887718, 38.611179270457129 ], [ -90.223027017099213, 38.611173768664813 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11352000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223219233111692, 38.610458276289457 ], [ -90.223221473431721, 38.610447434874523 ], [ -90.223307508511937, 38.610458386003472 ], [ -90.223393543618712, 38.610469337975381 ], [ -90.223391311359038, 38.610480180318731 ], [ -90.223326026562944, 38.610797341281504 ], [ -90.22332379428272, 38.610808183622893 ], [ -90.223237625658371, 38.610797215056991 ], [ -90.223151455912614, 38.610786246452427 ], [ -90.223153696249923, 38.610775405011985 ], [ -90.223219233111692, 38.610458276289457 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11353000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225862887872523, 38.610282115880679 ], [ -90.225865157631105, 38.610271277173986 ], [ -90.225951542230888, 38.610282156028255 ], [ -90.225949272484954, 38.610292994736646 ], [ -90.225921417003377, 38.610425983836343 ], [ -90.225884004146025, 38.610604595970585 ], [ -90.22588173437947, 38.610615434676994 ], [ -90.225795349391205, 38.610604555797899 ], [ -90.225797619170393, 38.610593717093174 ], [ -90.225837632938749, 38.610402685076821 ], [ -90.225862887872523, 38.610282115880679 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11353000055", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225770606193734, 38.6103840451485 ], [ -90.225796049513804, 38.610262573714145 ], [ -90.225865157631105, 38.610271277173986 ], [ -90.225862887872523, 38.610282115880679 ], [ -90.225837632938749, 38.610402685076821 ], [ -90.225797619170393, 38.610593717093174 ], [ -90.225795349391205, 38.610604555797899 ], [ -90.225726240963311, 38.610595852268723 ], [ -90.225770606193734, 38.6103840451485 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11353000065", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225703579476715, 38.610365406060517 ], [ -90.225726941413569, 38.610253870186071 ], [ -90.225778771913212, 38.610260397374653 ], [ -90.225796049513804, 38.610262573714145 ], [ -90.225770606193734, 38.6103840451485 ], [ -90.225726240963311, 38.610595852268723 ], [ -90.225708963284944, 38.610593675946255 ], [ -90.225657132552243, 38.610587148726289 ], [ -90.225703579476715, 38.610365406060517 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11353000070", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22557287415782, 38.610329057200182 ], [ -90.225592179630837, 38.610236898119361 ], [ -90.225606000556937, 38.610238638491062 ], [ -90.225692386218398, 38.610249518417788 ], [ -90.225726941413569, 38.610253870186071 ], [ -90.225703579476715, 38.610365406060517 ], [ -90.225657132552243, 38.610587148726289 ], [ -90.2256225772053, 38.61058279690959 ], [ -90.225536191151932, 38.610571916930574 ], [ -90.22552236901582, 38.610570176547824 ], [ -90.22557287415782, 38.610329057200182 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11353000081", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225507523269982, 38.610310883172481 ], [ -90.225524797615719, 38.610228412025208 ], [ -90.225592179630837, 38.610236898119361 ], [ -90.22557287415782, 38.610329057200182 ], [ -90.22552236901582, 38.610570176547824 ], [ -90.225454987845637, 38.610561690415544 ], [ -90.225507523269982, 38.610310883172481 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11353000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225368440692449, 38.610272205556448 ], [ -90.225381396564202, 38.610210352884501 ], [ -90.225433230447521, 38.610216880234027 ], [ -90.225457415616717, 38.610219925892281 ], [ -90.225442170119408, 38.610292709130405 ], [ -90.225387605547198, 38.610553204241818 ], [ -90.225363420265737, 38.61055015856892 ], [ -90.225311586156337, 38.610543630281853 ], [ -90.225368440692449, 38.610272205556448 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11353000170", "numunits (2020)": 8, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224326793754955, 38.610419599497988 ], [ -90.224396608590581, 38.610086322669559 ], [ -90.224482993885076, 38.610097203488067 ], [ -90.224569378061503, 38.610108083361503 ], [ -90.224567108116943, 38.610118921136539 ], [ -90.224501833967906, 38.61043052158788 ], [ -90.224499564002727, 38.610441359360948 ], [ -90.224413179437803, 38.610430479462664 ], [ -90.22433299096646, 38.610420379790497 ], [ -90.224326793754955, 38.610419599497988 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11353000241", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225135455187953, 38.610137662585707 ], [ -90.225137704389297, 38.610126822032576 ], [ -90.225202631608539, 38.609813869048288 ], [ -90.225204880796213, 38.609803027614568 ], [ -90.225273292840399, 38.60981166944093 ], [ -90.225271043666197, 38.609822510876022 ], [ -90.225206121423255, 38.610135438702308 ], [ -90.225203872232015, 38.610146279229291 ], [ -90.225135455187953, 38.610137662585707 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11353000242", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225203872232015, 38.610146279229291 ], [ -90.225206121423255, 38.610135438702308 ], [ -90.225271043666197, 38.609822510876022 ], [ -90.225273292840399, 38.60981166944093 ], [ -90.22533272131939, 38.609819175853694 ], [ -90.225330472150418, 38.609830017289916 ], [ -90.225265554835687, 38.610142923522822 ], [ -90.225263305653044, 38.610153764078419 ], [ -90.225203872232015, 38.610146279229291 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11353000280", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225595025792458, 38.610195541348503 ], [ -90.225664182422122, 38.609861044228474 ], [ -90.2257156246676, 38.609867541706571 ], [ -90.225767836975024, 38.609874136462146 ], [ -90.225698687840776, 38.610208596728192 ], [ -90.22564670589928, 38.61020205023118 ], [ -90.225595025792458, 38.610195541348503 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11353000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225923290801489, 38.610236883535805 ], [ -90.22599242138935, 38.609902504153517 ], [ -90.226060726899604, 38.609911131761329 ], [ -90.226096074915375, 38.609915596094112 ], [ -90.226026952977307, 38.610249936812735 ], [ -90.225992147584549, 38.610245553905187 ], [ -90.225923290801489, 38.610236883535805 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11354000010", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226127976392618, 38.611564191600962 ], [ -90.226130173848361, 38.611553343716373 ], [ -90.22619444282418, 38.611236054540598 ], [ -90.226196640263126, 38.611225206654076 ], [ -90.226286296853218, 38.611236497358362 ], [ -90.226217246633865, 38.611575433706101 ], [ -90.226127976392618, 38.611564191600962 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11354000020", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225989756480246, 38.611546784888084 ], [ -90.226058420983449, 38.611207800023571 ], [ -90.226110253347613, 38.611214327975659 ], [ -90.226196640263126, 38.611225206654076 ], [ -90.22619444282418, 38.611236054540598 ], [ -90.226130173848361, 38.611553343716373 ], [ -90.226127976392618, 38.611564191600962 ], [ -90.226041589081674, 38.611553312871074 ], [ -90.225989756480246, 38.611546784888084 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11354000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224812259774083, 38.611061983797292 ], [ -90.224814457412009, 38.611051135937117 ], [ -90.224900843927259, 38.611062016449772 ], [ -90.224918120544672, 38.611064192010332 ], [ -90.224849450825261, 38.611403175289098 ], [ -90.224832174128778, 38.611400999718271 ], [ -90.224745787218126, 38.61139011915413 ], [ -90.224747984876387, 38.611379272202043 ], [ -90.224812259774083, 38.611061983797292 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11354000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226014879866511, 38.610810188557998 ], [ -90.226017122073372, 38.61079934706661 ], [ -90.226103518804806, 38.610810226742942 ], [ -90.226121658424901, 38.610812511338004 ], [ -90.226052994606917, 38.611151496237269 ], [ -90.22603485375582, 38.611149211656198 ], [ -90.22594846695651, 38.611138332858594 ], [ -90.225950662130117, 38.611127484971284 ], [ -90.226014879866511, 38.610810188557998 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11355000085", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227083623333385, 38.610889034099188 ], [ -90.227091148071807, 38.610852095327203 ], [ -90.227097217462401, 38.610822299911597 ], [ -90.227111279505763, 38.610753273118348 ], [ -90.227125085339551, 38.610755092550129 ], [ -90.227528904664695, 38.610808298289356 ], [ -90.227542710523366, 38.610810117671939 ], [ -90.227528715552353, 38.610878820324984 ], [ -90.227515187327654, 38.610945231301535 ], [ -90.227083623333385, 38.610889034099188 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11355000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227055032320067, 38.611029380223577 ], [ -90.22706909444527, 38.610960353465551 ], [ -90.227082906179788, 38.610962141365455 ], [ -90.227486912622297, 38.61101443867615 ], [ -90.227500725525601, 38.611016226556927 ], [ -90.227486730473402, 38.611084929202242 ], [ -90.227472915220645, 38.61108315213329 ], [ -90.227068846400584, 38.611031158245275 ], [ -90.227055032320067, 38.611029380223577 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11355000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226805409667975, 38.611645819716117 ], [ -90.226807619651439, 38.611634973660252 ], [ -90.226861199709987, 38.611371960328043 ], [ -90.226863409676398, 38.611361114270579 ], [ -90.226949805083578, 38.611371949164635 ], [ -90.226947595133311, 38.611382795223797 ], [ -90.226894015374782, 38.611645809474851 ], [ -90.226891805407377, 38.611656655559841 ], [ -90.226805409667975, 38.611645819716117 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11355000350", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226940495176564, 38.610373761629759 ], [ -90.227009544343318, 38.610034802261836 ], [ -90.227044045536786, 38.610039460728814 ], [ -90.227113019247113, 38.610048774847186 ], [ -90.227043970552813, 38.610387734304538 ], [ -90.226974995383173, 38.610378420114735 ], [ -90.226940495176564, 38.610373761629759 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11356000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.2282714028958, 38.610799542090895 ], [ -90.228278390089642, 38.610765237087797 ], [ -90.228292192434481, 38.610767077078066 ], [ -90.228695888697047, 38.610820892904897 ], [ -90.228709689915618, 38.610822732843339 ], [ -90.228709086311952, 38.610825698081129 ], [ -90.228695781437565, 38.61089101873241 ], [ -90.228691806584294, 38.610910532733783 ], [ -90.228260439584076, 38.610853360143601 ], [ -90.228264414544, 38.610833847969346 ], [ -90.2282714028958, 38.610799542090895 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11356000195", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227640707224765, 38.611402981026728 ], [ -90.227634739412053, 38.611402232964181 ], [ -90.227652054425832, 38.611317233693391 ], [ -90.227666017775661, 38.611248686815479 ], [ -90.227679835442444, 38.611250443135589 ], [ -90.228084029928866, 38.61130182981293 ], [ -90.228097847612844, 38.611303586083707 ], [ -90.228083951324194, 38.611371809781843 ], [ -90.228066718699623, 38.611456406591216 ], [ -90.227640707224765, 38.611402981026728 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11356000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228148303357656, 38.610536850039132 ], [ -90.228217348155852, 38.610197889044805 ], [ -90.228268506878067, 38.610204796467528 ], [ -90.228318547848929, 38.610211553525957 ], [ -90.228249503516352, 38.610550513674717 ], [ -90.22819946231354, 38.610543757492501 ], [ -90.228148303357656, 38.610536850039132 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11356000370", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22866513216465, 38.610606632851919 ], [ -90.228734174605776, 38.610267671548272 ], [ -90.22882037766756, 38.610279310900971 ], [ -90.228751335623556, 38.610618271350056 ], [ -90.22866513216465, 38.610606632851919 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11357000020", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229416346080725, 38.610833338603967 ], [ -90.229418610622901, 38.610822221463351 ], [ -90.22942080031531, 38.610811468972521 ], [ -90.229435437972256, 38.610739602738462 ], [ -90.229437757478792, 38.610728217255726 ], [ -90.229440502776669, 38.610714736357203 ], [ -90.229445611220086, 38.610715921091355 ], [ -90.229455031915833, 38.610718116611991 ], [ -90.2294938736066, 38.610727925080553 ], [ -90.229532272831449, 38.610738753113274 ], [ -90.229570186132037, 38.610750588455531 ], [ -90.229639726943503, 38.610647318318215 ], [ -90.229651568299104, 38.610652505849288 ], [ -90.229685328197604, 38.610667297745074 ], [ -90.230009885210407, 38.610809502350968 ], [ -90.23000680965535, 38.610813990731494 ], [ -90.229975772444917, 38.610861354410353 ], [ -90.229946773917774, 38.610909506954243 ], [ -90.229919846600325, 38.610958394359407 ], [ -90.229532078179432, 38.610862083055281 ], [ -90.229416346080725, 38.610833338603967 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11359000110", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230061388176239, 38.611734293829777 ], [ -90.230358153882122, 38.611666414848159 ], [ -90.230398471869663, 38.61165719304887 ], [ -90.230433953301556, 38.611674820153638 ], [ -90.230705537709852, 38.611809741943894 ], [ -90.230681339132161, 38.611852000965555 ], [ -90.230658827452231, 38.61189483007206 ], [ -90.230638024455743, 38.611938187821274 ], [ -90.230618950275101, 38.611982032259526 ], [ -90.230601623370006, 38.612026320962109 ], [ -90.230586060509552, 38.612071011074377 ], [ -90.230572276756021, 38.612116059353191 ], [ -90.230287026146073, 38.612080270328697 ], [ -90.230257824273707, 38.612039426696946 ], [ -90.230227590989799, 38.611999047695001 ], [ -90.230196338299933, 38.611959149354966 ], [ -90.230171810178362, 38.611927240234394 ], [ -90.230148769269434, 38.611894655837531 ], [ -90.230127245731069, 38.61186143881654 ], [ -90.230107267734923, 38.611827632651668 ], [ -90.230088861429437, 38.611793281594224 ], [ -90.230072050905619, 38.61175843060871 ], [ -90.230069882016892, 38.611753803181912 ], [ -90.230061388176239, 38.611734293829777 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11365000020", "numunits (2020)": 30, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238331283553165, 38.61308606184415 ], [ -90.238510467261094, 38.612204786104094 ], [ -90.2385310465434, 38.612207357994151 ], [ -90.238745486136196, 38.612234159739423 ], [ -90.238690354283293, 38.61250532269829 ], [ -90.238566305225675, 38.613115435844492 ], [ -90.238412892374271, 38.61309626231418 ], [ -90.238331283553165, 38.61308606184415 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11365000070", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235469416379658, 38.612728326368043 ], [ -90.235620250881354, 38.612007558438108 ], [ -90.236006943642366, 38.612055899144387 ], [ -90.236017060484343, 38.612057164203883 ], [ -90.236387122653483, 38.612103424901136 ], [ -90.236397234924183, 38.612104689011389 ], [ -90.236663616591173, 38.612137988452226 ], [ -90.236673725427778, 38.612139251624725 ], [ -90.236763612359255, 38.612150487973651 ], [ -90.236616939061008, 38.612871776615371 ], [ -90.235469416379658, 38.612728326368043 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11365008400", "numunits (2020)": 36, "numunits (2018)": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234800060895083, 38.612644645934857 ], [ -90.234974718805958, 38.611810074649192 ], [ -90.235258432128646, 38.611845543385677 ], [ -90.235644066751703, 38.61189375409662 ], [ -90.235620250881354, 38.612007558438108 ], [ -90.235469416379658, 38.612728326368043 ], [ -90.234800060895083, 38.612644645934857 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11366050040", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23954412854502, 38.612959594654818 ], [ -90.239571600709354, 38.61282400149436 ], [ -90.239970139163916, 38.61287380851855 ], [ -90.239931619894236, 38.613008020543973 ], [ -90.239893101620794, 38.613142233489249 ], [ -90.239854583209237, 38.613276445512199 ], [ -90.239838181249766, 38.613274395709276 ], [ -90.239716955295521, 38.613259245542743 ], [ -90.239513375366485, 38.613233802954277 ], [ -90.23948918391234, 38.613230779984903 ], [ -90.239494128938532, 38.613206375074341 ], [ -90.239516656282731, 38.613095186871739 ], [ -90.23954412854502, 38.612959594654818 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11366050060", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239067532401478, 38.613178082245433 ], [ -90.239152985730797, 38.612757780352858 ], [ -90.23916597428348, 38.612759403732177 ], [ -90.239170189797321, 38.612759930198386 ], [ -90.239342999474189, 38.612781528633967 ], [ -90.239384550938411, 38.61278672161896 ], [ -90.239299098926935, 38.613207022776898 ], [ -90.239257547226813, 38.613201829761131 ], [ -90.239084736569055, 38.613180232131185 ], [ -90.239079276913543, 38.613179549732713 ], [ -90.239067532401478, 38.613178082245433 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11366060050", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239681489455563, 38.612281628865837 ], [ -90.23968643319887, 38.612257225725074 ], [ -90.239722696871539, 38.612078239980718 ], [ -90.240163611088519, 38.612133343692861 ], [ -90.240122404887359, 38.612336732735429 ], [ -90.239705680603166, 38.612284651767418 ], [ -90.239681489455563, 38.612281628865837 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11367000015", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240622961347498, 38.60990799675092 ], [ -90.240578969766176, 38.610122632895923 ], [ -90.240246145483454, 38.610081588419199 ], [ -90.24022660987913, 38.610179107044679 ], [ -90.240078507670646, 38.610160821265787 ], [ -90.240120855764687, 38.609953432048599 ], [ -90.240053820541519, 38.609945164983245 ], [ -90.240074762847087, 38.60984062077361 ], [ -90.240622961347498, 38.60990799675092 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11367000025", "numunits (2020)": 124, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240448708515359, 38.61075096950433 ], [ -90.239521275844197, 38.61063674983172 ], [ -90.239695530054391, 38.609793777579782 ], [ -90.240074762847087, 38.60984062077361 ], [ -90.240053820541519, 38.609945164983245 ], [ -90.240120855764687, 38.609953432048599 ], [ -90.240078507670646, 38.610160821265787 ], [ -90.24022660987913, 38.610179107044679 ], [ -90.240246145483454, 38.610081588419199 ], [ -90.240578969766176, 38.610122632895923 ], [ -90.240448708515359, 38.61075096950433 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11370000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23751464724846, 38.609872598941173 ], [ -90.237582397486094, 38.609533501505723 ], [ -90.237633377514044, 38.609539781003754 ], [ -90.237710316386483, 38.609549258041028 ], [ -90.237642566735161, 38.609888355551647 ], [ -90.237565627510023, 38.609878878469168 ], [ -90.23751464724846, 38.609872598941173 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11371000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234815495165762, 38.609540082492209 ], [ -90.234885096289531, 38.609201216010554 ], [ -90.235058138275235, 38.609222535696858 ], [ -90.234988784689108, 38.609561432577642 ], [ -90.234815495165762, 38.609540082492209 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11371000170", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235681940380147, 38.609646829414515 ], [ -90.235750306115136, 38.609307810098564 ], [ -90.235923347475364, 38.609329127625521 ], [ -90.235855229276282, 38.609668178215642 ], [ -90.235681940380147, 38.609646829414515 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11373000260", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232629524943349, 38.609273072529923 ], [ -90.232700417987076, 38.608934364357026 ], [ -90.232808023870703, 38.608947617892944 ], [ -90.232736720461901, 38.609286275661304 ], [ -90.232629524943349, 38.609273072529923 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11373000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233478303827425, 38.609377612732949 ], [ -90.233549191845839, 38.609038903129623 ], [ -90.233568211686631, 38.609041245324555 ], [ -90.233609162936716, 38.609046288523636 ], [ -90.233639083067672, 38.609049973427226 ], [ -90.233568195456911, 38.609388683991959 ], [ -90.233497323755188, 38.609379954939556 ], [ -90.233478303827425, 38.609377612732949 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11373000350", "numunits (2020)": 7, "numunits (2018)": 11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233568195456911, 38.609388683991959 ], [ -90.233639083067672, 38.609049973427226 ], [ -90.233654645073713, 38.609051889760018 ], [ -90.233777380663341, 38.609067006407109 ], [ -90.233706493684736, 38.609405716150668 ], [ -90.233583757534134, 38.609390600334315 ], [ -90.233568195456911, 38.609388683991959 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11376000120", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230110767869988, 38.608952464906942 ], [ -90.230176764401435, 38.608623501823651 ], [ -90.230206218244348, 38.608627129776082 ], [ -90.230327677353898, 38.608642092158163 ], [ -90.230261425268623, 38.608972334006921 ], [ -90.230140099237147, 38.608956333136895 ], [ -90.230110767869988, 38.608952464906942 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11377000010", "numunits (2020)": 2, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228817486548095, 38.60856641593795 ], [ -90.228839691432057, 38.608456725364213 ], [ -90.228889808974984, 38.608462961647618 ], [ -90.228976217608178, 38.608473713084436 ], [ -90.229062627408609, 38.608484465338833 ], [ -90.229183600032059, 38.608499517880048 ], [ -90.229161395657627, 38.608609208520036 ], [ -90.228817486548095, 38.60856641593795 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11377000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228817486548095, 38.60856641593795 ], [ -90.229161395657627, 38.608609208520036 ], [ -90.229150330300016, 38.608663870591492 ], [ -90.22902935740791, 38.608648818042809 ], [ -90.229018306981686, 38.608647443025774 ], [ -90.229018655598196, 38.6086457195319 ], [ -90.228943297181885, 38.608636342245028 ], [ -90.228856888358862, 38.608625590783518 ], [ -90.228806769558005, 38.608619354483153 ], [ -90.228817486548095, 38.60856641593795 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11377000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229150330300016, 38.608663870591492 ], [ -90.229139676702971, 38.60871649850251 ], [ -90.228796882156374, 38.608672429161871 ], [ -90.228806769558005, 38.608619354483153 ], [ -90.228856888358862, 38.608625590783518 ], [ -90.228943297181885, 38.608636342245028 ], [ -90.229018655598196, 38.6086457195319 ], [ -90.229018306981686, 38.608647443025774 ], [ -90.22902935740791, 38.608648818042809 ], [ -90.229150330300016, 38.608663870591492 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11377000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229139676702971, 38.60871649850251 ], [ -90.229128707227275, 38.608770688741544 ], [ -90.228785964886171, 38.608722128544265 ], [ -90.228796882156374, 38.608672429161871 ], [ -90.229139676702971, 38.60871649850251 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11377000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228911703212887, 38.60879241687568 ], [ -90.228825445123348, 38.608780918904628 ], [ -90.228775413954594, 38.60877424946014 ], [ -90.228785964886171, 38.608722128544265 ], [ -90.229128707227275, 38.608770688741544 ], [ -90.229118723886742, 38.608820011920017 ], [ -90.228997962478203, 38.608803914785874 ], [ -90.228911703212887, 38.60879241687568 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11377000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228645967507063, 38.608967345395413 ], [ -90.22864822067298, 38.608956215608778 ], [ -90.229079514588165, 38.60901370730128 ], [ -90.229069813138096, 38.60906163023963 ], [ -90.228638518944265, 38.609004138510876 ], [ -90.228645967507063, 38.608967345395413 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11377000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228590544661145, 38.609241132711901 ], [ -90.228601101637523, 38.60918898481119 ], [ -90.229032333768458, 38.609246779243989 ], [ -90.229015176823452, 38.609331532258075 ], [ -90.228583944196401, 38.609273737761143 ], [ -90.228590544661145, 38.609241132711901 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11377000350", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228535403281796, 38.609163435206312 ], [ -90.228104169749415, 38.609105642536363 ], [ -90.228118013340136, 38.609037262856504 ], [ -90.228131855752963, 38.608968884077612 ], [ -90.228563110740112, 38.609026561366981 ], [ -90.228549257022578, 38.609094998740964 ], [ -90.228535403281796, 38.609163435206312 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11378000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227465858801921, 38.609020540623234 ], [ -90.227479672575711, 38.608952307801026 ], [ -90.227507267194355, 38.608956028502398 ], [ -90.22788323632571, 38.609006742338387 ], [ -90.227910829832027, 38.609010464726857 ], [ -90.227897015283048, 38.609078703913589 ], [ -90.227895136360786, 38.609087987731613 ], [ -90.227463979839257, 38.609029820837144 ], [ -90.227465858801921, 38.609020540623234 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11378000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227562727861766, 38.609942322474524 ], [ -90.227631251526603, 38.609603292130721 ], [ -90.227665846657089, 38.609607963235995 ], [ -90.227786568156318, 38.609624264382418 ], [ -90.227717935035059, 38.609963280147184 ], [ -90.227597324294806, 38.609946994509151 ], [ -90.227562727861766, 38.609942322474524 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11378000280", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227255481555943, 38.608571960168831 ], [ -90.227259874802073, 38.608550262556896 ], [ -90.22731277617649, 38.608288958088565 ], [ -90.227317168229604, 38.608267263161622 ], [ -90.227403576383253, 38.608278015758401 ], [ -90.227399184355463, 38.608299710688613 ], [ -90.227346105468669, 38.60856188952291 ], [ -90.227341713398957, 38.608583586262142 ], [ -90.227298596901647, 38.608577772782745 ], [ -90.227255481555943, 38.608571960168831 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11379000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226026787373527, 38.609739968424606 ], [ -90.226093165134273, 38.609409749159354 ], [ -90.226162298164965, 38.609418338107261 ], [ -90.226196860096792, 38.609422632115859 ], [ -90.226130440672364, 38.609753060334278 ], [ -90.226095891479346, 38.60974869697398 ], [ -90.226026787373527, 38.609739968424606 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11379000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225512467857314, 38.609337600453962 ], [ -90.225626532539408, 38.609351772962235 ], [ -90.225560342274377, 38.609681051870496 ], [ -90.225446321587597, 38.609666649677393 ], [ -90.225512467857314, 38.609337600453962 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11379000110", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22534266739315, 38.609653557132297 ], [ -90.225408770847366, 38.609324716886292 ], [ -90.225470993867162, 38.609332447757602 ], [ -90.225512467857314, 38.609337600453962 ], [ -90.225446321587597, 38.609666649677393 ], [ -90.22540486495312, 38.609661413220373 ], [ -90.22534266739315, 38.609653557132297 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11379000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22487428319198, 38.609216604076202 ], [ -90.224942439959861, 38.608877557286526 ], [ -90.225028853139904, 38.608888294540911 ], [ -90.224960507410771, 38.609227317515838 ], [ -90.22487428319198, 38.609216604076202 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11379000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225738410947088, 38.609323971440844 ], [ -90.225806564904616, 38.608984924169995 ], [ -90.225892977201596, 38.60899565985072 ], [ -90.225824823636287, 38.609334707200141 ], [ -90.225738410947088, 38.609323971440844 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11379000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225824823636287, 38.609334707200141 ], [ -90.225892977201596, 38.60899565985072 ], [ -90.22597938951769, 38.609006396401284 ], [ -90.226008216585143, 38.60900997798182 ], [ -90.22594006469906, 38.609349025402118 ], [ -90.225911236351692, 38.609345443801857 ], [ -90.225824823636287, 38.609334707200141 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11379000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22594006469906, 38.609349025402118 ], [ -90.226008216585143, 38.60900997798182 ], [ -90.226065801863371, 38.609017132888127 ], [ -90.226123457162998, 38.609024296002268 ], [ -90.22605530465691, 38.609363343488063 ], [ -90.225997650241041, 38.609356180342488 ], [ -90.22594006469906, 38.609349025402118 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11379000375", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226516128390131, 38.609420596367187 ], [ -90.226584277640953, 38.609081547699923 ], [ -90.226657313477375, 38.609090622017661 ], [ -90.226589164564501, 38.609429669821957 ], [ -90.226516128390131, 38.609420596367187 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11380000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22559613401458, 38.608791970581812 ], [ -90.225665889030395, 38.608453124395517 ], [ -90.225735023387273, 38.608461713599134 ], [ -90.225786865561346, 38.608468154315425 ], [ -90.225717112239749, 38.608807001511245 ], [ -90.22566526868772, 38.608800559827287 ], [ -90.22559613401458, 38.608791970581812 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11380000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225492443512977, 38.608779087130742 ], [ -90.225562199006788, 38.608440240979753 ], [ -90.225648611754437, 38.608450977775703 ], [ -90.225665889030395, 38.608453124395517 ], [ -90.22559613401458, 38.608791970581812 ], [ -90.225578855511586, 38.608789823976323 ], [ -90.225492443512977, 38.608779087130742 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11380000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224868847274863, 38.608701605326374 ], [ -90.22493860447689, 38.60836275776537 ], [ -90.224957315071521, 38.608365082595029 ], [ -90.225034522679366, 38.60837467579465 ], [ -90.224964765912645, 38.608713523413691 ], [ -90.224887555659279, 38.608703930189449 ], [ -90.224868847274863, 38.608701605326374 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11380000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224778113582602, 38.608690331716765 ], [ -90.224847872347567, 38.608351484213408 ], [ -90.224870902525922, 38.608354346195298 ], [ -90.22493860447689, 38.60836275776537 ], [ -90.224868847274863, 38.608701605326374 ], [ -90.224801142721802, 38.608693192831247 ], [ -90.224778113582602, 38.608690331716765 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11380000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225052097440468, 38.608335157061298 ], [ -90.225121854560939, 38.607996311153208 ], [ -90.225208266709089, 38.608007048273009 ], [ -90.225138509987417, 38.608345894233423 ], [ -90.225052097440468, 38.608335157061298 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11380000390", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226434692150903, 38.608506939504693 ], [ -90.226504444094203, 38.608168091856228 ], [ -90.22659085666379, 38.608178827956237 ], [ -90.226521105115921, 38.60851767562955 ], [ -90.226434692150903, 38.608506939504693 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11380000420", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226693929972797, 38.608539147740252 ], [ -90.226763680737037, 38.608200299028745 ], [ -90.226780152364043, 38.608202345416764 ], [ -90.226901940065972, 38.608217476076632 ], [ -90.226832189937824, 38.608556324844379 ], [ -90.226693929972797, 38.608539147740252 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11381000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224393742604391, 38.608643244029246 ], [ -90.224395983834228, 38.608632402562883 ], [ -90.224461536197794, 38.60831527127192 ], [ -90.224463777413774, 38.608304428924917 ], [ -90.224549743772272, 38.608315017727726 ], [ -90.224479703616893, 38.608653831964688 ], [ -90.224393742604391, 38.608643244029246 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11381000270", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223680268739372, 38.607829905972785 ], [ -90.223682508905938, 38.607819063637507 ], [ -90.223768479158977, 38.607829653023444 ], [ -90.223854450585478, 38.607840242348999 ], [ -90.223852210440569, 38.607851084687596 ], [ -90.223786692552963, 38.608168221177252 ], [ -90.223784452394355, 38.608179062607746 ], [ -90.223698486313751, 38.608168473243467 ], [ -90.223612520258825, 38.60815788472226 ], [ -90.22361475929479, 38.608147043292405 ], [ -90.223680268739372, 38.607829905972785 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11381000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224300249412593, 38.608242594777685 ], [ -90.224302490650487, 38.60823175243371 ], [ -90.224368033867322, 38.607914620246099 ], [ -90.224370275087992, 38.607903776994007 ], [ -90.224456245542598, 38.607914365875224 ], [ -90.224454004338028, 38.607925209128993 ], [ -90.224388456894459, 38.608242341354746 ], [ -90.224386215672496, 38.608253182821713 ], [ -90.224300249412593, 38.608242594777685 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11381008232", "numunits (2020)": 4, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222640734190364, 38.607788021248666 ], [ -90.222660322933393, 38.60769315070398 ], [ -90.223092475008684, 38.607746384559434 ], [ -90.223072885667904, 38.607841256081031 ], [ -90.223059057087639, 38.607839551445906 ], [ -90.222654562750421, 38.607789725054467 ], [ -90.222640734190364, 38.607788021248666 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11382000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224209885014815, 38.609514396661702 ], [ -90.224277437239664, 38.6091848253173 ], [ -90.224368474823336, 38.609196038738887 ], [ -90.224300691473204, 38.609525806008733 ], [ -90.224209885014815, 38.609514396661702 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11382000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224120040295574, 38.609503106615549 ], [ -90.224187548454964, 38.609173754123816 ], [ -90.224265001586943, 38.609183293433873 ], [ -90.224277437239664, 38.6091848253173 ], [ -90.224209885014815, 38.609514396661702 ], [ -90.224197291055177, 38.609512813050905 ], [ -90.224120040295574, 38.609503106615549 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11382000040", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223853959477395, 38.609469673008775 ], [ -90.223921337765759, 38.609140964501798 ], [ -90.224006319228963, 38.609151431585133 ], [ -90.224076915264547, 38.609160126992272 ], [ -90.224009460447746, 38.609489211983664 ], [ -90.223938790172028, 38.609480332577391 ], [ -90.223853959477395, 38.609469673008775 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11382000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223646624215689, 38.609443620124431 ], [ -90.223713900464801, 38.609115414218799 ], [ -90.223747637103287, 38.609119570043859 ], [ -90.223817617947063, 38.609128189389764 ], [ -90.223750291827457, 38.609456646626199 ], [ -90.223680289532354, 38.609447850599857 ], [ -90.223646624215689, 38.609443620124431 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11382000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222938231608197, 38.609354605294946 ], [ -90.22300508767087, 38.609028105089308 ], [ -90.223057819618717, 38.609034600460397 ], [ -90.223108806045815, 38.609040880917966 ], [ -90.223041898956652, 38.609367632423549 ], [ -90.222990955252442, 38.609361230421044 ], [ -90.222938231608197, 38.609354605294946 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11382000130", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222879529645894, 38.609026536958453 ], [ -90.222899590519702, 38.609015110545293 ], [ -90.222971592118725, 38.609023979329407 ], [ -90.22300508767087, 38.609028105089308 ], [ -90.222938231608197, 38.609354605294946 ], [ -90.222904789014308, 38.609350403084726 ], [ -90.222820584076018, 38.609339821732554 ], [ -90.222815544906368, 38.609339189130992 ], [ -90.222879529645894, 38.609026536958453 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11382000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223152777301237, 38.609004603924788 ], [ -90.223222132028638, 38.608665705090438 ], [ -90.223308562264194, 38.608676351749352 ], [ -90.223239207932394, 38.609015250635743 ], [ -90.223152777301237, 38.609004603924788 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11382000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223325638592925, 38.609025896376792 ], [ -90.223394992525556, 38.608686998371958 ], [ -90.223481423964287, 38.608697644906037 ], [ -90.223412070423649, 38.609036542990367 ], [ -90.223325638592925, 38.609025896376792 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11382000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223498501132596, 38.609047189510015 ], [ -90.223567854277562, 38.608708291373638 ], [ -90.223654284620252, 38.608718936871355 ], [ -90.223584931867393, 38.609057835965899 ], [ -90.223498501132596, 38.609047189510015 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11382000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223844225385548, 38.609089773168847 ], [ -90.223913576944582, 38.608750874824317 ], [ -90.224000008535285, 38.60876152097579 ], [ -90.223930657371909, 38.609100419372353 ], [ -90.223844225385548, 38.609089773168847 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11382000355", "numunits (2020)": 2, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224207236688983, 38.609134486436091 ], [ -90.224276587741116, 38.608795586997005 ], [ -90.224345731723957, 38.608804103178599 ], [ -90.224446484577655, 38.608816512303392 ], [ -90.224376832476182, 38.609155375110326 ], [ -90.224276382136196, 38.609143002661988 ], [ -90.224207236688983, 38.609134486436091 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11383000010", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221841255675812, 38.607719791674654 ], [ -90.221859377189674, 38.607631426709759 ], [ -90.222237908809134, 38.607678447683618 ], [ -90.222219605274731, 38.607766790638863 ], [ -90.221841255675812, 38.607719791674654 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11383000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221824581541696, 38.607801099790819 ], [ -90.221841255675812, 38.607719791674654 ], [ -90.222219605274731, 38.607766790638863 ], [ -90.222202762864612, 38.607848076800636 ], [ -90.221824581541696, 38.607801099790819 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11383000050", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221774433682512, 38.608045642750419 ], [ -90.221791222616602, 38.607963770960538 ], [ -90.222169066228531, 38.608010706722212 ], [ -90.222152107865341, 38.60809255746134 ], [ -90.221774433682512, 38.608045642750419 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11383000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221691063034044, 38.608452179627854 ], [ -90.22170495840146, 38.608384423328197 ], [ -90.222081933123221, 38.608431251924351 ], [ -90.222067898093812, 38.608498990803788 ], [ -90.221691063034044, 38.608452179627854 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11383000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221635482457643, 38.608723203870376 ], [ -90.221649377931101, 38.608655447580809 ], [ -90.222025792851824, 38.6087022065756 ], [ -90.222011757715393, 38.608769945444813 ], [ -90.221635482457643, 38.608723203870376 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11383000220", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221444755378442, 38.609653234139216 ], [ -90.221461435063915, 38.609571902694199 ], [ -90.221835614946087, 38.609620053353616 ], [ -90.221818766975531, 38.609701362843047 ], [ -90.221444755378442, 38.609653234139216 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11383000230", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221428075658267, 38.609734565580595 ], [ -90.221444755378442, 38.609653234139216 ], [ -90.221818766975531, 38.609701362843047 ], [ -90.22180191896642, 38.609782672328784 ], [ -90.221428075658267, 38.609734565580595 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11383000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221099587220195, 38.60889928927628 ], [ -90.221113486752259, 38.608831513237163 ], [ -90.221549009840786, 38.60888561575905 ], [ -90.221535110707407, 38.608953391823263 ], [ -90.221099587220195, 38.60889928927628 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11383000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221113486752259, 38.608831513237163 ], [ -90.221127386257677, 38.608763737223001 ], [ -90.221562910095628, 38.608817839667573 ], [ -90.221549009840786, 38.60888561575905 ], [ -90.221113486752259, 38.608831513237163 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11383000350", "numunits (2020)": 4, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221141286884531, 38.608695961181567 ], [ -90.221155186329895, 38.608628186068479 ], [ -90.221590708226358, 38.608682288405234 ], [ -90.221576809172547, 38.608750064477007 ], [ -90.221562910095628, 38.608817839667573 ], [ -90.221127386257677, 38.608763737223001 ], [ -90.221141286884531, 38.608695961181567 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11383000390", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221224683190655, 38.608289306758266 ], [ -90.221231632838879, 38.608255419180729 ], [ -90.221667152536227, 38.608309522162024 ], [ -90.221646304169553, 38.608411184944096 ], [ -90.221210783870816, 38.608357082817555 ], [ -90.221224683190655, 38.608289306758266 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11383000440", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221308078541924, 38.60788265224415 ], [ -90.22131162412883, 38.607865360890557 ], [ -90.221321977672503, 38.607814876194617 ], [ -90.221391106310151, 38.607823463447303 ], [ -90.221460236108967, 38.607832051540605 ], [ -90.221608865407291, 38.607850515267991 ], [ -90.221757494782906, 38.607868978806827 ], [ -90.221743596047375, 38.607936754908899 ], [ -90.221308078541924, 38.60788265224415 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11383000470", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221501932969119, 38.607628724205561 ], [ -90.221510272541366, 38.607588058917621 ], [ -90.221658901346544, 38.607606522580433 ], [ -90.22165056185942, 38.607647187879166 ], [ -90.221636663067443, 38.607714963970871 ], [ -90.221622764248821, 38.607782740087494 ], [ -90.221608865407291, 38.607850515267991 ], [ -90.221460236108967, 38.607832051540605 ], [ -90.22147413508651, 38.60776427637802 ], [ -90.22148803404113, 38.607696500279332 ], [ -90.221501932969119, 38.607628724205561 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11384000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220498153834598, 38.608617169199938 ], [ -90.220498337558112, 38.608616274166536 ], [ -90.2209337758174, 38.608670776055249 ], [ -90.220919876155506, 38.60873855114076 ], [ -90.220484253770351, 38.608684944260318 ], [ -90.220498153834598, 38.608617169199938 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11384000170", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220388101809775, 38.609153756127121 ], [ -90.220412040456296, 38.609037036271054 ], [ -90.220412386852189, 38.609035346133332 ], [ -90.220848013601582, 38.60908895147881 ], [ -90.220823728100896, 38.609207363401488 ], [ -90.220388101809775, 38.609153756127121 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11384000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220012152595032, 38.608557361527289 ], [ -90.220026053081099, 38.608489585616908 ], [ -90.220460193522754, 38.608543011423855 ], [ -90.220446293434193, 38.608610787359176 ], [ -90.220012152595032, 38.608557361527289 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11385000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218881905158426, 38.608416789737518 ], [ -90.218895806678674, 38.608349013991017 ], [ -90.219331527597831, 38.608402139646671 ], [ -90.219317626476482, 38.608469915445745 ], [ -90.218881905158426, 38.608416789737518 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11385000255", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218895806678674, 38.608349013991017 ], [ -90.218909708168965, 38.608281239120693 ], [ -90.219345428689195, 38.608334364723724 ], [ -90.219331527597831, 38.608402139646671 ], [ -90.218895806678674, 38.608349013991017 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11385000265", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218909708168965, 38.608281239120693 ], [ -90.21892360963615, 38.608213463369175 ], [ -90.219359329757438, 38.608266588919591 ], [ -90.219345428689195, 38.608334364723724 ], [ -90.218909708168965, 38.608281239120693 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11386000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218540585443762, 38.609024515913973 ], [ -90.218367919235774, 38.608976233414531 ], [ -90.218508897915328, 38.60866584564468 ], [ -90.218612216918586, 38.608694736900091 ], [ -90.218544356489247, 38.609025569988006 ], [ -90.218540585443762, 38.609024515913973 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11386000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21817013024328, 38.608920925633946 ], [ -90.218311109663631, 38.608610538102226 ], [ -90.218410003749582, 38.608638191915155 ], [ -90.218269024703105, 38.608948579565961 ], [ -90.21817013024328, 38.608920925633946 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11386000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217783737073773, 38.608119835727813 ], [ -90.217793442365704, 38.608072522725067 ], [ -90.218228946570392, 38.608126701508837 ], [ -90.218216629204719, 38.608186750456461 ], [ -90.218020934393991, 38.608162328116428 ], [ -90.218023531558671, 38.608149667853574 ], [ -90.217783737073773, 38.608119835727813 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11386000330", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217890761417081, 38.607598095084207 ], [ -90.217904663702626, 38.607530320327626 ], [ -90.218340162423686, 38.607584498685206 ], [ -90.218326260536728, 38.607652273466925 ], [ -90.217890761417081, 38.607598095084207 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11387000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217284258447933, 38.608673158248926 ], [ -90.217424485407719, 38.608362553725172 ], [ -90.217516051891906, 38.608388005113845 ], [ -90.217448210125525, 38.608718727730526 ], [ -90.217284258447933, 38.608673158248926 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11387000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217201791239205, 38.60865023664595 ], [ -90.217342018508532, 38.608339632248395 ], [ -90.217424485407719, 38.608362553725172 ], [ -90.217284258447933, 38.608673158248926 ], [ -90.217201791239205, 38.60865023664595 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11387000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217119322938885, 38.608627314103487 ], [ -90.217259551662238, 38.608316710686175 ], [ -90.217325524904808, 38.608335047583068 ], [ -90.217342018508532, 38.608339632248395 ], [ -90.217201791239205, 38.60865023664595 ], [ -90.217185297580613, 38.608645651054736 ], [ -90.217119322938885, 38.608627314103487 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11387000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216954387637514, 38.608581470604705 ], [ -90.217094615832181, 38.608270867409601 ], [ -90.217127602982742, 38.60828003589674 ], [ -90.21717708372077, 38.608293789090602 ], [ -90.217036855835744, 38.608604392384485 ], [ -90.216987374911852, 38.608590639158827 ], [ -90.216954387637514, 38.608581470604705 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11387000240", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216482416924919, 38.607377345704904 ], [ -90.216485074528237, 38.607376552150356 ], [ -90.216539115306048, 38.607482361332622 ], [ -90.216532141436616, 38.607485016557575 ], [ -90.216446143766419, 38.607517762663946 ], [ -90.216441966807636, 38.607512507582157 ], [ -90.216363040010734, 38.607413210272377 ], [ -90.216455551040369, 38.607385416799907 ], [ -90.216460432926112, 38.607383950235388 ], [ -90.216482416924919, 38.607377345704904 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11387000320", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21713900360588, 38.608066146349842 ], [ -90.217153276559316, 38.607996569915237 ], [ -90.217166689509952, 38.608000298536417 ], [ -90.217559035285589, 38.608109351773599 ], [ -90.217572448278517, 38.608113079442226 ], [ -90.217567436382197, 38.608137510325264 ], [ -90.217558175705591, 38.608182655955439 ], [ -90.217550759664633, 38.608218808807649 ], [ -90.217319314636086, 38.608161947519811 ], [ -90.217128945568746, 38.608115176430488 ], [ -90.21713900360588, 38.608066146349842 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11388008021", "numunits (2020)": 3, "numunits (2018)": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215509133478065, 38.606999415910302 ], [ -90.215530914645996, 38.606988624643655 ], [ -90.215751586986514, 38.607270510045552 ], [ -90.215767447951976, 38.60729076618339 ], [ -90.215739636278656, 38.607298755551412 ], [ -90.21564874802678, 38.60732434788212 ], [ -90.215637923024417, 38.607327364898509 ], [ -90.215589093273763, 38.607340972630517 ], [ -90.21537408641872, 38.607066322190221 ], [ -90.215420340703702, 38.607043406601449 ], [ -90.215509133478065, 38.606999415910302 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11390000011", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214849988459321, 38.604345256324081 ], [ -90.214853422988213, 38.604251162246861 ], [ -90.215037475336999, 38.604274006690133 ], [ -90.215237945432449, 38.604298887934455 ], [ -90.215225308531103, 38.60436322857629 ], [ -90.215219823074051, 38.604391159983919 ], [ -90.214849988459321, 38.604345256324081 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11390000012", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214834096793155, 38.604421124922659 ], [ -90.214848372811943, 38.604389537426812 ], [ -90.214849988459321, 38.604345256324081 ], [ -90.215219823074051, 38.604391159983919 ], [ -90.215211294952084, 38.604434582905249 ], [ -90.215204899149597, 38.60446714806433 ], [ -90.214834096793155, 38.604421124922659 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11390000013", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214800783347471, 38.60449483050256 ], [ -90.214807932954031, 38.604479011138402 ], [ -90.214834096793155, 38.604421124922659 ], [ -90.215204899149597, 38.60446714806433 ], [ -90.215189974048769, 38.604543136166434 ], [ -90.214800783347471, 38.60449483050256 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11390000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214788883930353, 38.604521158959827 ], [ -90.214800783347471, 38.60449483050256 ], [ -90.215189974048769, 38.604543136166434 ], [ -90.215184643218478, 38.604570279648513 ], [ -90.215171317316972, 38.604638126684812 ], [ -90.214759139988701, 38.604586967888956 ], [ -90.214788883930353, 38.604521158959827 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11390000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214853422988213, 38.604251162246861 ], [ -90.214921619700519, 38.60409627560238 ], [ -90.215064429518833, 38.60413676928669 ], [ -90.215037475336999, 38.604274006690133 ], [ -90.214853422988213, 38.604251162246861 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11395000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217428519902413, 38.605529311777595 ], [ -90.217498427117647, 38.60519047785025 ], [ -90.217584881599933, 38.605200980158436 ], [ -90.217671337259091, 38.605211482405601 ], [ -90.217601430835288, 38.605550316410493 ], [ -90.217514975928296, 38.605539814113591 ], [ -90.217428519902413, 38.605529311777595 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11396060010", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217769755001356, 38.604992193677433 ], [ -90.217786978858257, 38.604908706371432 ], [ -90.218209167143826, 38.605028403776991 ], [ -90.218200469316287, 38.605070154463 ], [ -90.218196755712881, 38.605087979572303 ], [ -90.217939525357892, 38.605054193368765 ], [ -90.217943203448414, 38.605036363706489 ], [ -90.217947499422792, 38.60501554003406 ], [ -90.217769755001356, 38.604992193677433 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11396060090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217654052952497, 38.605552998693796 ], [ -90.217667590718236, 38.605487378912343 ], [ -90.218101672058992, 38.605544392549326 ], [ -90.218087556907591, 38.605612141607111 ], [ -90.217654052952497, 38.605552998693796 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11396060150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217555741974536, 38.606029505900089 ], [ -90.217567719907407, 38.605971451641921 ], [ -90.217788608977685, 38.606000464949844 ], [ -90.217788901547408, 38.605999046727717 ], [ -90.21800114190043, 38.606026923551802 ], [ -90.217988754699462, 38.606086379540919 ], [ -90.217555741974536, 38.606029505900089 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11397000191", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219305443964231, 38.605682528636528 ], [ -90.219273531656668, 38.605597023770144 ], [ -90.219191858044709, 38.605597517774576 ], [ -90.219309322567042, 38.605340308014419 ], [ -90.219444260841527, 38.605378564035689 ], [ -90.219305443964231, 38.605682528636528 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11399000020", "numunits (2020)": 8, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220301030442045, 38.605702911611196 ], [ -90.220304726650852, 38.60570131322477 ], [ -90.220495317982824, 38.605998413428473 ], [ -90.220487802489984, 38.606001663987392 ], [ -90.220402488016575, 38.606037389373064 ], [ -90.220325832315311, 38.606067832694634 ], [ -90.220315644777301, 38.606071771434408 ], [ -90.220308725077373, 38.606074444121397 ], [ -90.220134321005119, 38.60577095431421 ], [ -90.220153809477409, 38.605763425159672 ], [ -90.220212227911475, 38.605740213225545 ], [ -90.220256794150842, 38.605721804230186 ], [ -90.220301030442045, 38.605702911611196 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11400010070", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22020309018248, 38.607259548608219 ], [ -90.220263222885407, 38.606961207339495 ], [ -90.220280506536724, 38.606963352051039 ], [ -90.220384201582647, 38.606976219426606 ], [ -90.220324069367237, 38.607274560758505 ], [ -90.220220373903416, 38.607261693328809 ], [ -90.22020309018248, 38.607259548608219 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11400010080", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220116677332911, 38.607248824898392 ], [ -90.220176810383961, 38.606950483702278 ], [ -90.220194471581252, 38.606952675264843 ], [ -90.220263222885407, 38.606961207339495 ], [ -90.22020309018248, 38.607259548608219 ], [ -90.220116677332911, 38.607248824898392 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11400010095", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220067635747725, 38.607003295038716 ], [ -90.220080684826783, 38.606938554882099 ], [ -90.220176810383961, 38.606950483702278 ], [ -90.220116677332911, 38.607248824898392 ], [ -90.220057708897983, 38.607241507032541 ], [ -90.220104793140223, 38.607007906000568 ], [ -90.220067635747725, 38.607003295038716 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11400010121", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21977762591905, 38.607206750648977 ], [ -90.219837748861792, 38.606908406884131 ], [ -90.219969108341274, 38.606924709003437 ], [ -90.219908973308733, 38.607223050115806 ], [ -90.219780795533822, 38.607207143789822 ], [ -90.21977762591905, 38.607206750648977 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11400010122", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219646277441896, 38.607190450125977 ], [ -90.21970641238876, 38.606892109148099 ], [ -90.219837748861792, 38.606908406884131 ], [ -90.21977762591905, 38.607206750648977 ], [ -90.219646277441896, 38.607190450125977 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11400010123", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219566668391636, 38.606917469975762 ], [ -90.219575065648925, 38.606875809482808 ], [ -90.21970641238876, 38.606892109148099 ], [ -90.219646277441896, 38.607190450125977 ], [ -90.219514929025024, 38.607174150361878 ], [ -90.219566668391636, 38.606917469975762 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11400010124", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219380124163806, 38.607157421493447 ], [ -90.219432706909771, 38.606896554944768 ], [ -90.219543818364969, 38.606871931340855 ], [ -90.219575065648925, 38.606875809482808 ], [ -90.219566668391636, 38.606917469975762 ], [ -90.219514929025024, 38.607174150361878 ], [ -90.219380124163806, 38.607157421493447 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11400010125", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219106238082176, 38.606968902779329 ], [ -90.219432706909771, 38.606896554944768 ], [ -90.219380124163806, 38.607157421493447 ], [ -90.219075848640202, 38.607119659719338 ], [ -90.219106238082176, 38.606968902779329 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11400010160", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218805886734131, 38.606744137697646 ], [ -90.21881935781829, 38.606741152861204 ], [ -90.218897442472112, 38.606958106270802 ], [ -90.218883971350536, 38.606961091116027 ], [ -90.218782938466688, 38.606983480578279 ], [ -90.218704854134529, 38.606766527094379 ], [ -90.218805886734131, 38.606744137697646 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11400200250", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220987117162167, 38.606086864071798 ], [ -90.221002478901553, 38.606078845704658 ], [ -90.221072533379086, 38.606042273749203 ], [ -90.221074917077885, 38.606041028066144 ], [ -90.221218609621914, 38.606251245686401 ], [ -90.221150554660468, 38.606280777522436 ], [ -90.221126665282171, 38.606291017984809 ], [ -90.221125904933075, 38.606289905402079 ], [ -90.220987117162167, 38.606086864071798 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11403000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218908034591891, 38.604531258819755 ], [ -90.219093638874384, 38.604120984379435 ], [ -90.21917605983144, 38.604143996428739 ], [ -90.219258481985719, 38.604167009328989 ], [ -90.219072844943256, 38.604577356909282 ], [ -90.218990439741063, 38.604554307893494 ], [ -90.218908034591891, 38.604531258819755 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11403000280", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219237656650876, 38.604623455703461 ], [ -90.21942332530881, 38.604213034046715 ], [ -90.219505746477665, 38.604236045864234 ], [ -90.21932006201213, 38.604646504545485 ], [ -90.219237656650876, 38.604623455703461 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11405000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217461668365345, 38.60464129546191 ], [ -90.217645750061664, 38.604236488086968 ], [ -90.217662092397489, 38.604241059741938 ], [ -90.21774454612742, 38.604264123319844 ], [ -90.217739844476341, 38.604274468663732 ], [ -90.217565104364127, 38.604658943926481 ], [ -90.217560402664745, 38.60466928926229 ], [ -90.217477986459002, 38.604645922029846 ], [ -90.217461668365345, 38.60464129546191 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11405000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217148321025689, 38.604552453451589 ], [ -90.217153034247147, 38.604542110878384 ], [ -90.217327565997323, 38.604159146500741 ], [ -90.217332279170535, 38.604148803919458 ], [ -90.217414732684645, 38.604171867729349 ], [ -90.21741002181723, 38.604182211225641 ], [ -90.217235449079809, 38.60456547833649 ], [ -90.217230738164204, 38.604575820918541 ], [ -90.217148321025689, 38.604552453451589 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11405000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216901073375936, 38.604482351644975 ], [ -90.216905793504324, 38.604472011789291 ], [ -90.217080200007402, 38.604089952887058 ], [ -90.217084920087643, 38.604079612117125 ], [ -90.217161094572816, 38.604100919580503 ], [ -90.21697730787055, 38.604503966557346 ], [ -90.216901073375936, 38.604482351644975 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11405000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217605087491435, 38.604166810165637 ], [ -90.217609745577803, 38.604156452118517 ], [ -90.21778480482655, 38.603767199185434 ], [ -90.217789462857468, 38.603756841130277 ], [ -90.217871831365642, 38.60377984046265 ], [ -90.217867171053058, 38.603790197609435 ], [ -90.217692006522142, 38.604179462109343 ], [ -90.217687346157533, 38.604189819248106 ], [ -90.217605087491435, 38.604166810165637 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11407000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216218049038574, 38.603848784755805 ], [ -90.21622277840126, 38.603838446761252 ], [ -90.216305183033441, 38.603861498631403 ], [ -90.216387586574385, 38.60388454953474 ], [ -90.216382857235629, 38.60389488665728 ], [ -90.216209181573319, 38.604274498583401 ], [ -90.21620445217971, 38.604284835670391 ], [ -90.216122174474933, 38.604261507468244 ], [ -90.21603989682383, 38.604238178302239 ], [ -90.216044626238002, 38.604227840315737 ], [ -90.216218049038574, 38.603848784755805 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11407000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21562892336452, 38.604121650627519 ], [ -90.215633444115326, 38.604111252703355 ], [ -90.215806243358983, 38.603733588117514 ], [ -90.215811175761772, 38.603723306482529 ], [ -90.21589316383907, 38.603746241428155 ], [ -90.21588843443169, 38.603756580315554 ], [ -90.215715518502179, 38.604134524905376 ], [ -90.215710789047122, 38.604144862878577 ], [ -90.21562892336452, 38.604121650627519 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11407000100", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215299403814527, 38.604028215936388 ], [ -90.215304133320657, 38.604017878885962 ], [ -90.215476416504686, 38.603641322526322 ], [ -90.215481145963324, 38.603630984561704 ], [ -90.215563548970536, 38.603654036044233 ], [ -90.215558819525668, 38.603664374012169 ], [ -90.21538641047583, 38.60404120856834 ], [ -90.215381680983427, 38.604051545622099 ], [ -90.215299403814527, 38.604028215936388 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11407000120", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215004589707689, 38.603657640018788 ], [ -90.215104207968409, 38.603525539108816 ], [ -90.215151532155289, 38.603538778019391 ], [ -90.215192108537209, 38.603550129403317 ], [ -90.215009152591833, 38.603945915974194 ], [ -90.214976066357082, 38.603936534029295 ], [ -90.214970296818805, 38.603934898431227 ], [ -90.214975638166521, 38.603891713717417 ], [ -90.215003263855635, 38.603668362795233 ], [ -90.215004589707689, 38.603657640018788 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11407000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215504794362701, 38.603579296523094 ], [ -90.215509523813154, 38.603568958557204 ], [ -90.215686844596263, 38.603181383565776 ], [ -90.215691573990753, 38.603171045564153 ], [ -90.215773993906481, 38.603194060914177 ], [ -90.215769264522336, 38.603204398891641 ], [ -90.21559192675879, 38.603592010019732 ], [ -90.215587197322094, 38.603602347988954 ], [ -90.215504794362701, 38.603579296523094 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11407000235", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21566960033806, 38.603625398490799 ], [ -90.215674329760944, 38.603615061424378 ], [ -90.215740975817482, 38.603469392968648 ], [ -90.215764048492389, 38.60347584688558 ], [ -90.215879491109888, 38.603223520226315 ], [ -90.215922144384919, 38.603235430423759 ], [ -90.215938832752613, 38.60324009053145 ], [ -90.216021252827233, 38.603263105707619 ], [ -90.216016523473897, 38.603273443695073 ], [ -90.215839137072052, 38.603661164062665 ], [ -90.215834407669632, 38.603671501163191 ], [ -90.215752004547738, 38.603648450749759 ], [ -90.21566960033806, 38.603625398490799 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11414000080", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216485518345991, 38.60003989007005 ], [ -90.216496732560159, 38.599985670919978 ], [ -90.21651744835853, 38.59998834608362 ], [ -90.21691544471139, 38.600039735688227 ], [ -90.216936160544677, 38.600042410805322 ], [ -90.216920013111476, 38.600120491709482 ], [ -90.216915923437725, 38.600139938368137 ], [ -90.216911833765138, 38.600159385054077 ], [ -90.216891739087529, 38.600153752921237 ], [ -90.216505623282117, 38.600045524988431 ], [ -90.216485518345991, 38.60003989007005 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11414000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216371636117401, 38.600581763753695 ], [ -90.216385881526364, 38.600514032295038 ], [ -90.216405975116444, 38.60051966451185 ], [ -90.216792023351161, 38.600627872751957 ], [ -90.216812118156312, 38.600633504901957 ], [ -90.216797873123113, 38.600701236439953 ], [ -90.216777778303737, 38.600695604287523 ], [ -90.216391729725089, 38.600587396000407 ], [ -90.216371636117401, 38.600581763753695 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11414000190", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216287678112622, 38.60098094280039 ], [ -90.216314654213207, 38.600852689644583 ], [ -90.21633474789185, 38.600858321873609 ], [ -90.216720796687994, 38.600966529467335 ], [ -90.21674089157824, 38.600972161629549 ], [ -90.216713645934732, 38.601101705198261 ], [ -90.216287678112622, 38.60098094280039 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11414000430", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21617933006037, 38.599083527787158 ], [ -90.216181674021669, 38.599072196645679 ], [ -90.216207360518752, 38.598947997069232 ], [ -90.216633462643813, 38.599067425894397 ], [ -90.216616410559467, 38.599149877519423 ], [ -90.216595788623337, 38.599146746722042 ], [ -90.216199951956412, 38.599086658657797 ], [ -90.21617933006037, 38.599083527787158 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11414008071", "numunits (2020)": 15, "numunits (2018)": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216496732560159, 38.599985670919978 ], [ -90.216524760456352, 38.599850148240677 ], [ -90.21654547621678, 38.59985282342673 ], [ -90.216943471842555, 38.599904212934511 ], [ -90.216964187634616, 38.599906888019078 ], [ -90.216936160544677, 38.600042410805322 ], [ -90.21691544471139, 38.600039735688227 ], [ -90.21651744835853, 38.59998834608362 ], [ -90.216496732560159, 38.599985670919978 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11414008416", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216163309584587, 38.5991609917875 ], [ -90.21617933006037, 38.599083527787158 ], [ -90.216199951956412, 38.599086658657797 ], [ -90.216595788623337, 38.599146746722042 ], [ -90.216616410559467, 38.599149877519423 ], [ -90.216602397426726, 38.599217638414771 ], [ -90.216581680688151, 38.59921496595485 ], [ -90.216184026291714, 38.599163664321409 ], [ -90.216163309584587, 38.5991609917875 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11415000070", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217670355342364, 38.599956160278403 ], [ -90.217684368767678, 38.599888399235766 ], [ -90.2177050857522, 38.599891069716257 ], [ -90.218102442505142, 38.599942286165046 ], [ -90.21812316066881, 38.599944956574355 ], [ -90.218109147644398, 38.600012717642883 ], [ -90.218100180028017, 38.600056084809538 ], [ -90.217661386325219, 38.599999527408158 ], [ -90.217670355342364, 38.599956160278403 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11415000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217656341886865, 38.60002392219716 ], [ -90.217661386325219, 38.599999527408158 ], [ -90.218100180028017, 38.600056084809538 ], [ -90.218095135737457, 38.60008047961778 ], [ -90.218083364573047, 38.60013739847146 ], [ -90.217644571533583, 38.600080840981278 ], [ -90.217656341886865, 38.60002392219716 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11415000110", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217600000952501, 38.600294929561109 ], [ -90.217606838215588, 38.600262418440828 ], [ -90.218045632325612, 38.600318976047205 ], [ -90.218038795254756, 38.600351487193528 ], [ -90.218011353340032, 38.60048197386088 ], [ -90.217991328660531, 38.600476010542678 ], [ -90.21760725172642, 38.600361635393391 ], [ -90.21758722596644, 38.600355672003367 ], [ -90.217600000952501, 38.600294929561109 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11415000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217516004453969, 38.600694330114536 ], [ -90.217529670942, 38.600629345734674 ], [ -90.217953799824372, 38.600755647773042 ], [ -90.217940133690135, 38.600820632229819 ], [ -90.217920108922712, 38.600814668899446 ], [ -90.217536029154161, 38.60070029351396 ], [ -90.217516004453969, 38.600694330114536 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11415000215", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217435664953456, 38.601076335110008 ], [ -90.217459026759414, 38.600965255666857 ], [ -90.217479051529978, 38.600971219076008 ], [ -90.217863131500152, 38.601085594645461 ], [ -90.217883157485673, 38.60109155798834 ], [ -90.217859796290753, 38.601202637488605 ], [ -90.217839771424011, 38.601196674171959 ], [ -90.217455689752981, 38.601082298495704 ], [ -90.217435664953456, 38.601076335110008 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11415000216", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217412303067519, 38.601187415424867 ], [ -90.217435664953456, 38.601076335110008 ], [ -90.217455689752981, 38.601082298495704 ], [ -90.217839771424011, 38.601196674171959 ], [ -90.217859796290753, 38.601202637488605 ], [ -90.217836435019152, 38.601313717915453 ], [ -90.21781641242967, 38.60130775188189 ], [ -90.217432354505021, 38.601193326651156 ], [ -90.217412303067519, 38.601187415424867 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11415000217", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217390003270694, 38.601293449723933 ], [ -90.217412303067519, 38.601187415424867 ], [ -90.217432354505021, 38.601193326651156 ], [ -90.21781641242967, 38.60130775188189 ], [ -90.217836435019152, 38.601313717915453 ], [ -90.217815339493811, 38.601414028215984 ], [ -90.217390003270694, 38.601293449723933 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11415000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216999081239734, 38.600756312494582 ], [ -90.217013326095199, 38.600688580932051 ], [ -90.217033349603994, 38.600694544414537 ], [ -90.21741742738638, 38.600808921444148 ], [ -90.21743745325783, 38.600814884863141 ], [ -90.21742320877496, 38.600882616449759 ], [ -90.217403182885803, 38.600876653055799 ], [ -90.217019104766223, 38.600762275952064 ], [ -90.216999081239734, 38.600756312494582 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11415000380", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217127019572615, 38.600147987226983 ], [ -90.217127204428166, 38.600147101206964 ], [ -90.217141035842133, 38.60008022625918 ], [ -90.217161758698381, 38.60008287161493 ], [ -90.21755921674017, 38.600133603684228 ], [ -90.217579939631108, 38.600136248059897 ], [ -90.217565956631233, 38.600203824469595 ], [ -90.217545202000494, 38.600201364705697 ], [ -90.217147742447779, 38.600150632585262 ], [ -90.217127019572615, 38.600147987226983 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11415000485", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217399376256196, 38.599481022502744 ], [ -90.217391103245532, 38.599479966569291 ], [ -90.217289132923085, 38.599466951146653 ], [ -90.21726841023893, 38.599464305813804 ], [ -90.217281168380694, 38.599402614724013 ], [ -90.21730188989639, 38.599405260051796 ], [ -90.217437652094887, 38.599422589099412 ], [ -90.217446479313679, 38.599423715724242 ], [ -90.217433721316354, 38.599485405953651 ], [ -90.217399376256196, 38.599481022502744 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11415000491", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217446479313679, 38.599423715724242 ], [ -90.217437652094887, 38.599422589099412 ], [ -90.21730188989639, 38.599405260051796 ], [ -90.217281168380694, 38.599402614724013 ], [ -90.217310183337247, 38.599262311373437 ], [ -90.217311202540415, 38.599257380561461 ], [ -90.217737007899927, 38.599376720874936 ], [ -90.217720068159309, 38.599458635990807 ], [ -90.21769934546127, 38.599455990734235 ], [ -90.217446479313679, 38.599423715724242 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11415008241", "numunits (2020)": 3, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216914464385852, 38.601158637191766 ], [ -90.21693013424499, 38.60108413258957 ], [ -90.216950229188043, 38.601089764715901 ], [ -90.217335645871415, 38.601197821905352 ], [ -90.2173557269751, 38.601203485451869 ], [ -90.217339799008599, 38.601279217409044 ], [ -90.216914464385852, 38.601158637191766 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11416000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218829531087437, 38.599995837613271 ], [ -90.218843574329014, 38.599928101737248 ], [ -90.219268256307259, 38.599983093986921 ], [ -90.219282065744153, 38.599984881923831 ], [ -90.219268058468217, 38.600052623320266 ], [ -90.2192542490221, 38.600050834502994 ], [ -90.218829531087437, 38.599995837613271 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11417000022", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219928884268441, 38.600248322334615 ], [ -90.219931717905311, 38.600234616654724 ], [ -90.219937290398335, 38.600207666273327 ], [ -90.219964903521742, 38.600211275281886 ], [ -90.220093227433765, 38.600228044827297 ], [ -90.220092621418402, 38.600230972181116 ], [ -90.220332955825327, 38.600262788199863 ], [ -90.220360559634059, 38.600266442153462 ], [ -90.220352887290531, 38.600303546881825 ], [ -90.220325271771088, 38.600299949656701 ], [ -90.219956499754801, 38.600251918747034 ], [ -90.219928884268441, 38.600248322334615 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11417000126", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219766703230675, 38.601023805778802 ], [ -90.219780083545857, 38.600960171776322 ], [ -90.219807700455249, 38.600963765536129 ], [ -90.220176437470286, 38.601011965292201 ], [ -90.220204050913878, 38.601015575151166 ], [ -90.220185017239132, 38.60110609270059 ], [ -90.220165939061033, 38.601196825474439 ], [ -90.220139157122205, 38.601189261788917 ], [ -90.219781521162844, 38.601088263777768 ], [ -90.219754739301678, 38.601080700004424 ], [ -90.219757570924656, 38.60106723484099 ], [ -90.219765747660119, 38.601028350302045 ], [ -90.219766703230675, 38.601023805778802 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11417000130", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21975147726755, 38.601096210949081 ], [ -90.219754739301678, 38.601080700004424 ], [ -90.219781521162844, 38.601088263777768 ], [ -90.220139157122205, 38.601189261788917 ], [ -90.220165939061033, 38.601196825474439 ], [ -90.220164540244852, 38.601203477014494 ], [ -90.220150298246836, 38.601271208965166 ], [ -90.220141630462919, 38.601312430180336 ], [ -90.219730430085022, 38.601196304597494 ], [ -90.219737207991898, 38.601164072502371 ], [ -90.21975147726755, 38.601096210949081 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11417000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219608781024533, 38.601774820070752 ], [ -90.219623050541969, 38.601706959419687 ], [ -90.219649969473181, 38.601713870432974 ], [ -90.220009442262295, 38.601806152590981 ], [ -90.220036361268171, 38.601813063488095 ], [ -90.220022119022332, 38.601880795415269 ], [ -90.21999519880994, 38.601873893518686 ], [ -90.219635702310185, 38.601781722058803 ], [ -90.219608781024533, 38.601774820070752 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11417000240", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219579581543456, 38.60191385680352 ], [ -90.219584181258256, 38.601891804985563 ], [ -90.219594511479912, 38.601842680691739 ], [ -90.219621433972137, 38.601849574585465 ], [ -90.219980954186184, 38.601941633534899 ], [ -90.220007876749335, 38.601948527339871 ], [ -90.219995314001338, 38.602008273245893 ], [ -90.219990678852284, 38.602030315082494 ], [ -90.219971302684939, 38.602024825727618 ], [ -90.219579581543456, 38.60191385680352 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11417000390", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219486078673839, 38.600026872260194 ], [ -90.219516894894468, 38.599877834937324 ], [ -90.219651713723707, 38.599915868861068 ], [ -90.21962504066677, 38.6000448658694 ], [ -90.219611030177262, 38.600112628030608 ], [ -90.219499686981564, 38.600098211107372 ], [ -90.219472066909688, 38.600094634401763 ], [ -90.219486078673839, 38.600026872260194 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11418000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220810927156023, 38.601466108826322 ], [ -90.220812398435484, 38.601459110586461 ], [ -90.22122377634372, 38.601574400362395 ], [ -90.221222305105243, 38.601581397701253 ], [ -90.221208064020132, 38.60164912975219 ], [ -90.221187968587699, 38.601643498355728 ], [ -90.220816779931141, 38.601539472315444 ], [ -90.220796685708095, 38.601533840827187 ], [ -90.220810927156023, 38.601466108826322 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11418000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220682752009651, 38.60207569599627 ], [ -90.220696993674849, 38.602007963988775 ], [ -90.22071708916981, 38.602013595469415 ], [ -90.221088280117883, 38.602117621853409 ], [ -90.221108375674348, 38.60212325326696 ], [ -90.221094134372009, 38.602190985324512 ], [ -90.221074038797795, 38.60218535390851 ], [ -90.220702847522361, 38.602081327479347 ], [ -90.220682752009651, 38.60207569599627 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11418000270", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220235375011001, 38.601878593469245 ], [ -90.220249617056041, 38.601810861542809 ], [ -90.220269712460734, 38.601816493100131 ], [ -90.220640901741149, 38.601920520900563 ], [ -90.220660997207332, 38.601926152390817 ], [ -90.220646755525095, 38.601993884367339 ], [ -90.220626660041177, 38.601988252874648 ], [ -90.220255470433401, 38.601884225029018 ], [ -90.220235375011001, 38.601878593469245 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11418000390", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220405225158686, 38.601070812826151 ], [ -90.220419466880131, 38.60100308084116 ], [ -90.22044019362086, 38.60100571211575 ], [ -90.220823034478371, 38.60105431186453 ], [ -90.220843760101346, 38.601056943037548 ], [ -90.220829518770827, 38.601124675075013 ], [ -90.220822540196096, 38.601157863517919 ], [ -90.220401914122263, 38.60108656240272 ], [ -90.220405225158686, 38.601070812826151 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11418000405", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220433708570809, 38.600935348881016 ], [ -90.220447950237954, 38.600867616890788 ], [ -90.22045330561285, 38.600842149755714 ], [ -90.220696141860671, 38.600872976408283 ], [ -90.220692588799636, 38.600889878567038 ], [ -90.220690787716848, 38.600898444463517 ], [ -90.22068993279531, 38.600902508148721 ], [ -90.220871387776242, 38.60092554266889 ], [ -90.220868493205941, 38.600939310420422 ], [ -90.220858001408089, 38.600989211024967 ], [ -90.220837275804158, 38.600986579827065 ], [ -90.220454435296205, 38.600937980125615 ], [ -90.220433708570809, 38.600935348881016 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11418008095", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220881334038566, 38.601131251243295 ], [ -90.220909816581198, 38.600995787180473 ], [ -90.220930542190516, 38.600998418365577 ], [ -90.221313382205537, 38.60104701560244 ], [ -90.221334108996075, 38.601049646691408 ], [ -90.221305627221184, 38.601185111792681 ], [ -90.221284900396398, 38.601182480671127 ], [ -90.220902059685756, 38.601133882433516 ], [ -90.220881334038566, 38.601131251243295 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11419000012", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222037760417521, 38.601039902651515 ], [ -90.222051613515475, 38.600974011865674 ], [ -90.22207232977857, 38.600976694175188 ], [ -90.222454971677166, 38.601026232245253 ], [ -90.222475686829924, 38.601028913574581 ], [ -90.222461835256212, 38.601094804414089 ], [ -90.222441118940779, 38.601092122173405 ], [ -90.222058475551307, 38.601042584960815 ], [ -90.222037760417521, 38.601039902651515 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11419000045", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222032064108873, 38.601066995158149 ], [ -90.222037760417521, 38.601039902651515 ], [ -90.222058475551307, 38.601042584960815 ], [ -90.222441118940779, 38.601092122173405 ], [ -90.222461835256212, 38.601094804414089 ], [ -90.222456137954609, 38.601121896938956 ], [ -90.222447594289477, 38.601162535744621 ], [ -90.22244262313653, 38.601186184075182 ], [ -90.222018393404468, 38.601132017920293 ], [ -90.22202352021155, 38.601107633932394 ], [ -90.222032064108873, 38.601066995158149 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11419000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222009279974941, 38.601175366116792 ], [ -90.222018393404468, 38.601132017920293 ], [ -90.22244262313653, 38.601186184075182 ], [ -90.22243335444, 38.601230267953937 ], [ -90.222428227765974, 38.601254651959778 ], [ -90.222004153161691, 38.601199750076319 ], [ -90.222009279974941, 38.601175366116792 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11419000110", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221912874349655, 38.601633911800064 ], [ -90.221927114769883, 38.601566179660772 ], [ -90.221947185706838, 38.601571921670256 ], [ -90.22231794697629, 38.601677992670389 ], [ -90.22233801912013, 38.601683734615655 ], [ -90.222323779065192, 38.601751466832404 ], [ -90.222322104444302, 38.601759433041131 ], [ -90.22191119968619, 38.601641878909064 ], [ -90.221912874349655, 38.601633911800064 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11419000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221898633905653, 38.601701643964226 ], [ -90.22191119968619, 38.601641878909064 ], [ -90.222322104444302, 38.601759433041131 ], [ -90.222309537831961, 38.60181919901634 ], [ -90.222295297719256, 38.601886931227867 ], [ -90.222275226666653, 38.601881189277961 ], [ -90.221904464417506, 38.601775118142577 ], [ -90.221884393431026, 38.601769376125766 ], [ -90.221898633905653, 38.601701643964226 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11419000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221770468667728, 38.602311232335808 ], [ -90.221784709359511, 38.602243500195122 ], [ -90.22180478046964, 38.602249242256462 ], [ -90.222175545004831, 38.602355313680007 ], [ -90.222195616181068, 38.602361055674443 ], [ -90.222181375851378, 38.602428787837646 ], [ -90.222161304657334, 38.602423045868235 ], [ -90.221790539795663, 38.60231697437213 ], [ -90.221770468667728, 38.602311232335808 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11419000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221295139466449, 38.602247052581198 ], [ -90.22130938059145, 38.602179320499168 ], [ -90.221329452796738, 38.602185062617188 ], [ -90.22170021514934, 38.602291134662714 ], [ -90.221720287413646, 38.602296876741228 ], [ -90.221711618055878, 38.602338111572728 ], [ -90.221706046654134, 38.602364608845789 ], [ -90.221685974368555, 38.602358866792265 ], [ -90.221315211689401, 38.60225279470162 ], [ -90.221295139466449, 38.602247052581198 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11420000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223128744851749, 38.601257128949335 ], [ -90.223137954676773, 38.601213319633118 ], [ -90.223565276443779, 38.601268635837314 ], [ -90.223556054008014, 38.601312507325034 ], [ -90.223128744851749, 38.601257128949335 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11421000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224298798197708, 38.60210578162318 ], [ -90.224312982697299, 38.602038302183821 ], [ -90.224719251641133, 38.602090888250409 ], [ -90.224704942429639, 38.602158353030632 ], [ -90.224298798197708, 38.60210578162318 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11421000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224273222546074, 38.602227448071375 ], [ -90.224281712690541, 38.602187060374412 ], [ -90.224687707045476, 38.602239612570465 ], [ -90.22467575692221, 38.602295958662523 ], [ -90.224666995979931, 38.602337266486998 ], [ -90.224273222546074, 38.602227448071375 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11422000080", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225388098932058, 38.6023410033985 ], [ -90.225402460163451, 38.602273286417571 ], [ -90.225830934292588, 38.602326560119074 ], [ -90.225816786891485, 38.602394303792522 ], [ -90.2258026417624, 38.602462046535159 ], [ -90.225373737680229, 38.602408719470652 ], [ -90.225380918886898, 38.602374860983161 ], [ -90.225388098932058, 38.6023410033985 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11422000161", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22530137807415, 38.60274990116303 ], [ -90.225319760880069, 38.602663224464969 ], [ -90.225736338207909, 38.602779548345111 ], [ -90.225718221938706, 38.602866299594837 ], [ -90.22530137807415, 38.60274990116303 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11422000162", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225319760880069, 38.602663224464969 ], [ -90.225338143641181, 38.60257654776256 ], [ -90.225754454432916, 38.602692797091152 ], [ -90.225736338207909, 38.602779548345111 ], [ -90.225319760880069, 38.602663224464969 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11422000163", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225338143641181, 38.60257654776256 ], [ -90.225357675497492, 38.602484453079015 ], [ -90.225773702514758, 38.602600624187261 ], [ -90.225754454432916, 38.602692797091152 ], [ -90.225338143641181, 38.60257654776256 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11422000170", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225276619386946, 38.602866636467127 ], [ -90.225281007892534, 38.602845945194424 ], [ -90.225697675776544, 38.602964683797623 ], [ -90.225693349307733, 38.602985393271169 ], [ -90.225679202792222, 38.603053136894708 ], [ -90.225262263774511, 38.602934321915527 ], [ -90.225276619386946, 38.602866636467127 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11422000180", "numunits (2020)": 6, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225219196787179, 38.603137376405179 ], [ -90.225233552481527, 38.603069690992143 ], [ -90.225247908141696, 38.603002006455142 ], [ -90.225262263774511, 38.602934321915527 ], [ -90.225679202792222, 38.603053136894708 ], [ -90.225665055098517, 38.603120881419166 ], [ -90.225655435017103, 38.603166947602915 ], [ -90.225425196000828, 38.603101336750989 ], [ -90.225420669444276, 38.603123014204201 ], [ -90.225406521493653, 38.603190758695675 ], [ -90.225219196787179, 38.603137376405179 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11422000240", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225144112876748, 38.60349776397738 ], [ -90.225142837593822, 38.603497402459958 ], [ -90.225157353599016, 38.603428959754403 ], [ -90.225225094746705, 38.60344246124999 ], [ -90.225395357670678, 38.603501257656241 ], [ -90.225453716134282, 38.603519485691109 ], [ -90.225457016326445, 38.603514487153859 ], [ -90.225574499355616, 38.603554502533306 ], [ -90.225561644742555, 38.603616058261331 ], [ -90.225144112876748, 38.60349776397738 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11422000325", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224782131332731, 38.602797954957254 ], [ -90.22479649205134, 38.602730244371138 ], [ -90.225226821384169, 38.602850539147347 ], [ -90.225212461041266, 38.60291824981369 ], [ -90.224782131332731, 38.602797954957254 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11422000327", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22479649205134, 38.602730244371138 ], [ -90.224810853893828, 38.602662533785107 ], [ -90.225241181696106, 38.602782828505802 ], [ -90.225226821384169, 38.602850539147347 ], [ -90.22479649205134, 38.602730244371138 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11423000145", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225942281841824, 38.603202712903389 ], [ -90.226019285786705, 38.603170134295475 ], [ -90.226160442686975, 38.603375579752367 ], [ -90.226083438585221, 38.603408157545338 ], [ -90.226006434414145, 38.603440736193363 ], [ -90.225828200513789, 38.603516141175568 ], [ -90.225800061189602, 38.603512523288686 ], [ -90.225796130958955, 38.603512017738119 ], [ -90.225852819651195, 38.60324056141414 ], [ -90.225865277831005, 38.603235290554089 ], [ -90.225942281841824, 38.603202712903389 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11424050010", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227810885102926, 38.602992973838475 ], [ -90.228019450846062, 38.602904783046384 ], [ -90.227989280049059, 38.603051065496793 ], [ -90.227959250610539, 38.603196666286657 ], [ -90.227810885102926, 38.602992973838475 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11424050030", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227570795894067, 38.6036107478376 ], [ -90.227652180988045, 38.603431273812994 ], [ -90.227734600456003, 38.603454286124112 ], [ -90.227817021124636, 38.60347729931356 ], [ -90.227896778824473, 38.603499568423175 ], [ -90.227894275066902, 38.603511710237633 ], [ -90.227857346758285, 38.60369075586501 ], [ -90.227818058439226, 38.603679786644079 ], [ -90.227768267107962, 38.603665884080996 ], [ -90.227735637539084, 38.60365677345532 ], [ -90.227731523719029, 38.60365562519182 ], [ -90.227653216688353, 38.603633761142248 ], [ -90.227570795894067, 38.6036107478376 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11424050040", "numunits (2020)": 1, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226967598315213, 38.603349547445575 ], [ -90.227072901094218, 38.603305022340187 ], [ -90.227588442190623, 38.603448969105351 ], [ -90.227558686981553, 38.603514588498015 ], [ -90.22752134298247, 38.603596940550844 ], [ -90.227133650946939, 38.603488690916514 ], [ -90.227013577839216, 38.603455164713445 ], [ -90.226944564267313, 38.603435894676032 ], [ -90.226965138658031, 38.603350587678328 ], [ -90.226967598315213, 38.603349547445575 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11424050070", "numunits (2020)": 4, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22770746477795, 38.603186491372767 ], [ -90.227654181610504, 38.603059235206274 ], [ -90.22780926030056, 38.602993661057909 ], [ -90.227810885102926, 38.602992973838475 ], [ -90.227959250610539, 38.603196666286657 ], [ -90.227958126796921, 38.603202115870396 ], [ -90.227953789421363, 38.603223146125472 ], [ -90.227947524847124, 38.603253518639733 ], [ -90.227852582943584, 38.603227009932731 ], [ -90.22770746477795, 38.603186491372767 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11424060010", "numunits (2020)": 12, "numunits (2018)": 13 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227686050702417, 38.602308437915369 ], [ -90.227713796608541, 38.602175082167506 ], [ -90.228142178468417, 38.602295591447302 ], [ -90.228128226024126, 38.602363360183105 ], [ -90.227686050702417, 38.602308437915369 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11424060020", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227671955531804, 38.602376189103339 ], [ -90.227686050702417, 38.602308437915369 ], [ -90.228128226024126, 38.602363360183105 ], [ -90.228114272402181, 38.602431129792372 ], [ -90.228100319901273, 38.602498898495618 ], [ -90.227657858042207, 38.602443940310899 ], [ -90.227671955531804, 38.602376189103339 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11424060070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227162036637168, 38.602398644760846 ], [ -90.227176133439087, 38.602330893611466 ], [ -90.227616850820112, 38.602385419837589 ], [ -90.227602755572363, 38.60245317013738 ], [ -90.227162036637168, 38.602398644760846 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11424060090", "numunits (2020)": 4, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227204325807548, 38.602195392235927 ], [ -90.227236488893041, 38.602040807474616 ], [ -90.227663553731404, 38.602160947881636 ], [ -90.227645043530416, 38.602249918356954 ], [ -90.227630947192111, 38.602317668659218 ], [ -90.227190229063012, 38.602263143362997 ], [ -90.227204325807548, 38.602195392235927 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11425050110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228701154470215, 38.603926353650841 ], [ -90.228866909088765, 38.60355879656376 ], [ -90.228885583720299, 38.603563981902042 ], [ -90.228910012246544, 38.603570765207607 ], [ -90.228966955966357, 38.603586576542845 ], [ -90.228801136954758, 38.60395427868869 ], [ -90.228787436355432, 38.603950450728519 ], [ -90.228719818752978, 38.603931565160053 ], [ -90.228701154470215, 38.603926353650841 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11426000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230069813286406, 38.604006398147497 ], [ -90.229947446464763, 38.604275379493856 ], [ -90.229880214955756, 38.604256547738252 ], [ -90.229998228322103, 38.603997129305881 ], [ -90.230069813286406, 38.604006398147497 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11426000140", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230045950081646, 38.603892190690772 ], [ -90.230005927505175, 38.603980192242346 ], [ -90.229998228322103, 38.603997129305881 ], [ -90.229880214955756, 38.604256547738252 ], [ -90.229765119459941, 38.604224307819969 ], [ -90.229930350275239, 38.603858938975279 ], [ -90.230045950081646, 38.603892190690772 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11426000171", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229634667424264, 38.603773887155185 ], [ -90.229733216825451, 38.603802235118238 ], [ -90.229567379776697, 38.604168918492711 ], [ -90.229468510623562, 38.604141223705312 ], [ -90.229634667424264, 38.603773887155185 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11426000172", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229733216825451, 38.603802235118238 ], [ -90.229831788099133, 38.603830588457981 ], [ -90.229666250153983, 38.604196613199342 ], [ -90.229567379776697, 38.604168918492711 ], [ -90.229733216825451, 38.603802235118238 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11426000173", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229831788099133, 38.603830588457981 ], [ -90.229930350275239, 38.603858938975279 ], [ -90.229765119459941, 38.604224307819969 ], [ -90.229666250153983, 38.604196613199342 ], [ -90.229831788099133, 38.603830588457981 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11427000010", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231176241413962, 38.603296004238132 ], [ -90.231203898174414, 38.603153504361821 ], [ -90.23122951817875, 38.603160675463357 ], [ -90.23146258604821, 38.603225909293492 ], [ -90.231442294496929, 38.60332520948095 ], [ -90.2314415356024, 38.603328921216793 ], [ -90.231176241413962, 38.603296004238132 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11427000065", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230945001357824, 38.603541506305938 ], [ -90.230958040602658, 38.603475069395898 ], [ -90.23140085645889, 38.603527985306371 ], [ -90.231386888594898, 38.603596336327207 ], [ -90.230945001357824, 38.603541506305938 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11427000075", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230958040602658, 38.603475069395898 ], [ -90.230971633368299, 38.603405810370191 ], [ -90.231414591600441, 38.60346077245601 ], [ -90.23140085645889, 38.603527985306371 ], [ -90.230958040602658, 38.603475069395898 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11427000096", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231013236219084, 38.604249435890949 ], [ -90.231067400362363, 38.604132293701063 ], [ -90.231149815936121, 38.604155320732005 ], [ -90.231232231562615, 38.604178346826288 ], [ -90.231266020146492, 38.604187787923593 ], [ -90.231254713501883, 38.604243117245979 ], [ -90.231243406846431, 38.604298445688045 ], [ -90.231243030315227, 38.60430028623945 ], [ -90.231240465878784, 38.604312835177879 ], [ -90.231178093117776, 38.604295432365035 ], [ -90.231117096659716, 38.604278413746385 ], [ -90.231095664641984, 38.604272434156961 ], [ -90.231087442555562, 38.604270139691074 ], [ -90.231013236219084, 38.604249435890949 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11427000100", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230984315538436, 38.604565578406309 ], [ -90.231117096659716, 38.604278413746385 ], [ -90.231178093117776, 38.604295432365035 ], [ -90.231240465878784, 38.604312835177879 ], [ -90.231222533505218, 38.604400588572481 ], [ -90.23120336391581, 38.604494387730931 ], [ -90.231177783713434, 38.604619557400873 ], [ -90.231127741021041, 38.604605595337603 ], [ -90.231045312207357, 38.604582597094073 ], [ -90.230984315538436, 38.604565578406309 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11427000125", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230798027224694, 38.604513602924513 ], [ -90.230930808993449, 38.604226437542096 ], [ -90.230983517909308, 38.604241144527791 ], [ -90.231013236219084, 38.604249435890949 ], [ -90.231087442555562, 38.604270139691074 ], [ -90.231095664641984, 38.604272434156961 ], [ -90.231117096659716, 38.604278413746385 ], [ -90.230984315538436, 38.604565578406309 ], [ -90.230962883446594, 38.604559598792598 ], [ -90.230953334369886, 38.604556934617058 ], [ -90.230880454735228, 38.604536600433143 ], [ -90.230839240975158, 38.604525101672365 ], [ -90.230798027224694, 38.604513602924513 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11427000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230510244663378, 38.603190189159399 ], [ -90.230523877811081, 38.603122516729741 ], [ -90.230963499637028, 38.60317664225974 ], [ -90.230950112869394, 38.603244854026272 ], [ -90.230510244663378, 38.603190189159399 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11427000280", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231030665353344, 38.60310501849289 ], [ -90.231204314486206, 38.603153621521308 ], [ -90.231172695838694, 38.603313989608509 ], [ -90.231172202396678, 38.603313928124464 ], [ -90.230994004347224, 38.603291817004475 ], [ -90.231030665353344, 38.60310501849289 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11428000100", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232101817105601, 38.604877363422005 ], [ -90.232269637477046, 38.6045143097897 ], [ -90.232351630997584, 38.604537438615715 ], [ -90.232271108247204, 38.604711638660838 ], [ -90.232264456834002, 38.604726027823098 ], [ -90.232183915141462, 38.604900268288773 ], [ -90.232126599506643, 38.604884277485489 ], [ -90.232101817105601, 38.604877363422005 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11428000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231609229988905, 38.604739933068721 ], [ -90.231777675186635, 38.604375532933005 ], [ -90.231859669534074, 38.604398663011914 ], [ -90.231691327709868, 38.604762838280507 ], [ -90.231609229988905, 38.604739933068721 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11428000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231432897443753, 38.604411744152792 ], [ -90.231458686444128, 38.604285549683276 ], [ -90.231531363301883, 38.604306051534095 ], [ -90.231613688942872, 38.604329274420692 ], [ -90.231559108763165, 38.604447347407763 ], [ -90.231497227390875, 38.604429890941809 ], [ -90.231476783008716, 38.604424123576699 ], [ -90.231459655422711, 38.604419292593896 ], [ -90.231432897443753, 38.604411744152792 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11428000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231495185447471, 38.604106941567487 ], [ -90.231508441177411, 38.604042076255936 ], [ -90.231950101777386, 38.604090547848116 ], [ -90.231936885457188, 38.604155416896674 ], [ -90.231927592387279, 38.604201030301084 ], [ -90.231485865712145, 38.604152551251339 ], [ -90.231495185447471, 38.604106941567487 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11428000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231604853227424, 38.603570282392049 ], [ -90.231618567132045, 38.603503173979149 ], [ -90.232059903181735, 38.60355160929597 ], [ -90.232046186560609, 38.603618938471222 ], [ -90.231604853227424, 38.603570282392049 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11428000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231632276332661, 38.603436088975805 ], [ -90.231642098665645, 38.603388025516367 ], [ -90.232075979520687, 38.603472701841824 ], [ -90.232073571815548, 38.603484519645193 ], [ -90.232059903181735, 38.60355160929597 ], [ -90.231618567132045, 38.603503173979149 ], [ -90.231632276332661, 38.603436088975805 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11428000280", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231642098665645, 38.603388025516367 ], [ -90.231643400126984, 38.603381656475044 ], [ -90.231643663220069, 38.603380370613102 ], [ -90.231664492373241, 38.603278444626227 ], [ -90.232091585742737, 38.603396102327935 ], [ -90.232077171099107, 38.603466852374993 ], [ -90.232075979520687, 38.603472701841824 ], [ -90.231642098665645, 38.603388025516367 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11430000012", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23296798777686, 38.605507430577802 ], [ -90.233012765668747, 38.605409087605942 ], [ -90.233370667983522, 38.605451563596162 ], [ -90.233349061810159, 38.605552656542258 ], [ -90.23296798777686, 38.605507430577802 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11430000140", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232605060019623, 38.606916966065775 ], [ -90.232679730805188, 38.606567603419052 ], [ -90.232828401120287, 38.606585923276533 ], [ -90.232753732183212, 38.606935286022093 ], [ -90.232616743778905, 38.6069184061651 ], [ -90.232605060019623, 38.606916966065775 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11430000241", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232458739031998, 38.605401660150442 ], [ -90.232409272693587, 38.605387791826587 ], [ -90.232421383819286, 38.605331124610906 ], [ -90.232459814231433, 38.605151317058031 ], [ -90.23263491550766, 38.605200325760833 ], [ -90.232533676034123, 38.605422669189544 ], [ -90.232480706999183, 38.605407819084427 ], [ -90.232458739031998, 38.605401660150442 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11431000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232440953847686, 38.607698047493969 ], [ -90.232455467674441, 38.607630106614209 ], [ -90.232469298762197, 38.607631802950593 ], [ -90.232875583232683, 38.607681643647418 ], [ -90.232889414344029, 38.607683339934212 ], [ -90.232874907912063, 38.60775125114619 ], [ -90.232861075640372, 38.607749555761217 ], [ -90.232454786099325, 38.60769974292856 ], [ -90.232440953847686, 38.607698047493969 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11431000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232324846843909, 38.608241568899352 ], [ -90.232339359747883, 38.608173627159744 ], [ -90.232353192111688, 38.608175316290961 ], [ -90.232759525144843, 38.608224940380779 ], [ -90.232773358676454, 38.60822662946498 ], [ -90.232758850874987, 38.608294540652935 ], [ -90.23274501732736, 38.608292852473141 ], [ -90.232338678059193, 38.608243261626811 ], [ -90.232324846843909, 38.608241568899352 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11431000350", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231943484935897, 38.607567298366554 ], [ -90.231958006218434, 38.607499324229124 ], [ -90.231971839594763, 38.607501012529042 ], [ -90.232387058104948, 38.607551697809605 ], [ -90.232400891501797, 38.60755338603142 ], [ -90.232386314544271, 38.607621623155687 ], [ -90.23237248345697, 38.607619926809498 ], [ -90.231957315999196, 38.607568994763376 ], [ -90.231943484935897, 38.607567298366554 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11431000391", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232016089912435, 38.607227428638446 ], [ -90.232029761595768, 38.607163435420198 ], [ -90.232043578569161, 38.607165196633289 ], [ -90.232458333661398, 38.607218047215397 ], [ -90.232472151807116, 38.607219807501842 ], [ -90.232458887095675, 38.607281899931301 ], [ -90.232445057239644, 38.60728019818702 ], [ -90.232029920895613, 38.607229129529827 ], [ -90.232016089912435, 38.607227428638446 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11431000392", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232029761595768, 38.607163435420198 ], [ -90.232030612203872, 38.607159454517678 ], [ -90.232045132168409, 38.607091480389002 ], [ -90.23205896197193, 38.607093183965262 ], [ -90.232474085869342, 38.607144307437132 ], [ -90.232487915689788, 38.60714601099022 ], [ -90.232472151807116, 38.607219807501842 ], [ -90.232458333661398, 38.607218047215397 ], [ -90.232043578569161, 38.607165196633289 ], [ -90.232029761595768, 38.607163435420198 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11432000005", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233708661297513, 38.607275068316071 ], [ -90.233720170103808, 38.607221204984107 ], [ -90.234153825588905, 38.607275777989592 ], [ -90.234142252855307, 38.607329939398561 ], [ -90.234128433455567, 38.607328191031492 ], [ -90.233722480673251, 38.60727681763877 ], [ -90.233708661297513, 38.607275068316071 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11432000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233529839842646, 38.608111940584095 ], [ -90.233540455155946, 38.608062261703083 ], [ -90.233554277007173, 38.608064001111018 ], [ -90.23396029368341, 38.60811509597054 ], [ -90.23397411555861, 38.608116835356405 ], [ -90.233963664093025, 38.608165749800044 ], [ -90.233949197232178, 38.608233452211195 ], [ -90.233935369506312, 38.608231737165447 ], [ -90.233529200294669, 38.608181358063675 ], [ -90.233515372585643, 38.608179642940868 ], [ -90.233529839842646, 38.608111940584095 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11432000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233500905301241, 38.608247346201118 ], [ -90.233515372585643, 38.608179642940868 ], [ -90.233529200294669, 38.608181358063675 ], [ -90.233935369506312, 38.608231737165447 ], [ -90.233949197232178, 38.608233452211195 ], [ -90.23393473148829, 38.608301155528444 ], [ -90.233932127381351, 38.608313341390399 ], [ -90.233918299637182, 38.608311626315128 ], [ -90.233512129991183, 38.608261246247125 ], [ -90.233498301122836, 38.608259531147141 ], [ -90.233500905301241, 38.608247346201118 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11432000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233024440786778, 38.608047892551809 ], [ -90.233025130119486, 38.60804466530481 ], [ -90.233038955464721, 38.608046387701926 ], [ -90.23344780479232, 38.608097307895953 ], [ -90.23346163015816, 38.608099030215698 ], [ -90.233460940844537, 38.608102257437864 ], [ -90.233446427947186, 38.608170176802219 ], [ -90.233443966288092, 38.608181697201765 ], [ -90.233430139742381, 38.608179979380537 ], [ -90.23302127000261, 38.608129177976728 ], [ -90.233007443477348, 38.608127460105621 ], [ -90.233009922734979, 38.608115855071176 ], [ -90.233024440786778, 38.608047892551809 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11433000130", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233765640549464, 38.606968293200758 ], [ -90.233784767108943, 38.606876103464664 ], [ -90.233793406198686, 38.606877191470204 ], [ -90.234228770587848, 38.606932020309578 ], [ -90.234209651620247, 38.607024169605467 ], [ -90.233774278505351, 38.606969380326454 ], [ -90.233765640549464, 38.606968293200758 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11433000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233502776275685, 38.605829572958051 ], [ -90.233520139165392, 38.605748330460465 ], [ -90.233950628413709, 38.605800389855077 ], [ -90.233959274419931, 38.605801435522046 ], [ -90.233941912011716, 38.605882678085742 ], [ -90.233933265992491, 38.60588163241745 ], [ -90.233502776275685, 38.605829572958051 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11433000370", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234196388579974, 38.605788434399386 ], [ -90.234268737405543, 38.605449892287645 ], [ -90.234322200368922, 38.605456357217719 ], [ -90.234367156219477, 38.605461793908134 ], [ -90.234296867787322, 38.605800584878345 ], [ -90.234251912871997, 38.605795149069252 ], [ -90.234196388579974, 38.605788434399386 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11434000010", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235492802074077, 38.60594957356723 ], [ -90.235563081551533, 38.605610793585598 ], [ -90.235571769867036, 38.605611887007619 ], [ -90.235673651902673, 38.605624704302592 ], [ -90.235603372930669, 38.605963484351555 ], [ -90.235492802074077, 38.60594957356723 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11434000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234971462076516, 38.606812871106634 ], [ -90.23498692405262, 38.606738339365982 ], [ -90.23543109413599, 38.606793934021425 ], [ -90.235415632610156, 38.606868465821577 ], [ -90.234971462076516, 38.606812871106634 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11434000160", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234891339595862, 38.607199078307914 ], [ -90.234911017624455, 38.607104222991588 ], [ -90.235355189901043, 38.607159817939241 ], [ -90.235335512441026, 38.60725467333134 ], [ -90.234891339595862, 38.607199078307914 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11434000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234480416643805, 38.606744451865922 ], [ -90.234494474164478, 38.606676695285365 ], [ -90.234935088220269, 38.606731847765261 ], [ -90.234921031105856, 38.606799603493357 ], [ -90.234480416643805, 38.606744451865922 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11434000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234537207603552, 38.606470721435855 ], [ -90.234537517351328, 38.606469225748057 ], [ -90.234540961882274, 38.606452620236524 ], [ -90.234554429038852, 38.606387707328956 ], [ -90.234568251745642, 38.606389446619147 ], [ -90.234981163672671, 38.60644139675734 ], [ -90.234994985248974, 38.606443136022058 ], [ -90.234981637699278, 38.606507473568406 ], [ -90.234977820437948, 38.60652587284639 ], [ -90.234537207603552, 38.606470721435855 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11434000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234624714507802, 38.606048928861433 ], [ -90.234638771750085, 38.605981173160778 ], [ -90.234652592085439, 38.605982912435707 ], [ -90.23506550289531, 38.606034862274612 ], [ -90.235079324399351, 38.606036601501778 ], [ -90.235073266650687, 38.606065800094356 ], [ -90.235065267556351, 38.606104357256108 ], [ -90.235051446043144, 38.606102618027244 ], [ -90.234638536003601, 38.606050668140639 ], [ -90.234624714507802, 38.606048928861433 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11434000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234638771750085, 38.605981173160778 ], [ -90.234658450930112, 38.605886314245353 ], [ -90.23509900301211, 38.605941743444852 ], [ -90.235079324399351, 38.606036601501778 ], [ -90.23506550289531, 38.606034862274612 ], [ -90.234652592085439, 38.605982912435707 ], [ -90.234638771750085, 38.605981173160778 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11434000390", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235135128008395, 38.605904573971131 ], [ -90.23513737671847, 38.605893733242432 ], [ -90.235139626582509, 38.605882891610108 ], [ -90.235200911737849, 38.605587475696133 ], [ -90.235203160431382, 38.605576634965523 ], [ -90.235205409120823, 38.605565794207372 ], [ -90.235292121199052, 38.605576703840185 ], [ -90.235289872518905, 38.60558754457255 ], [ -90.235287623841444, 38.605598385332321 ], [ -90.235226339028344, 38.605893801264884 ], [ -90.235224089180505, 38.605904642898913 ], [ -90.235221840482993, 38.605915483656759 ], [ -90.235135128008395, 38.605904573971131 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11434000400", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235221840482993, 38.605915483656759 ], [ -90.235224089180505, 38.605904642898913 ], [ -90.235226339028344, 38.605893801264884 ], [ -90.235287623841444, 38.605598385332321 ], [ -90.235289872518905, 38.60558754457255 ], [ -90.235292121199052, 38.605576703840185 ], [ -90.235378832152719, 38.605587613378773 ], [ -90.235376583488645, 38.605598454140271 ], [ -90.235374334823987, 38.605609294874299 ], [ -90.235313050356396, 38.605904710880367 ], [ -90.235310800521233, 38.605915552516066 ], [ -90.235308551833043, 38.60592639324814 ], [ -90.235221840482993, 38.605915483656759 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11435000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234797851326832, 38.607635484367883 ], [ -90.234812304423116, 38.607567840355749 ], [ -90.234826120352835, 38.607569612056878 ], [ -90.235240565276499, 38.607622767420573 ], [ -90.235254381227676, 38.607624539043734 ], [ -90.235239953055384, 38.607692071462566 ], [ -90.235239335112496, 38.607694957401598 ], [ -90.235225520296027, 38.607693185779233 ], [ -90.234811073831281, 38.607640030358922 ], [ -90.23479725903276, 38.607638258658582 ], [ -90.234797851326832, 38.607635484367883 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11435000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234667773368315, 38.60824428115663 ], [ -90.234682226711911, 38.608176637195825 ], [ -90.234696049757943, 38.608178377377747 ], [ -90.23511070017031, 38.608230590414188 ], [ -90.235124522092903, 38.608232330570445 ], [ -90.235110093670627, 38.608299862938011 ], [ -90.235096270577813, 38.608298126402026 ], [ -90.234681597588192, 38.60824601865189 ], [ -90.234667773368315, 38.60824428115663 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11435000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234624414320265, 38.608447213080616 ], [ -90.23463886774644, 38.6083795691003 ], [ -90.234652693165799, 38.608381299407398 ], [ -90.235067411310538, 38.608433197436177 ], [ -90.235081235602919, 38.608434927690098 ], [ -90.235066805950595, 38.608502460047148 ], [ -90.235064884260595, 38.608511451995078 ], [ -90.235051058779618, 38.608509728958289 ], [ -90.234636295806993, 38.608458040668339 ], [ -90.234622469198911, 38.60845631757838 ], [ -90.234624414320265, 38.608447213080616 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11435000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234767954675377, 38.608684681814417 ], [ -90.234770268948608, 38.608673848440283 ], [ -90.234814619136841, 38.608679375469734 ], [ -90.234901025412412, 38.608690144164989 ], [ -90.234898710010427, 38.608700977539137 ], [ -90.234831008917936, 38.609017837798184 ], [ -90.234828694642303, 38.609028670266731 ], [ -90.234742287972153, 38.609017901544767 ], [ -90.234697937584897, 38.609012374487534 ], [ -90.234700251876234, 38.609001541994175 ], [ -90.234767954675377, 38.608684681814417 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11435000230", "numunits (2020)": 3, "numunits (2018)": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234293868824821, 38.608625597221689 ], [ -90.234296183163977, 38.608614764763225 ], [ -90.234382589285914, 38.608625533840872 ], [ -90.234468995433986, 38.608636301921187 ], [ -90.23446668112004, 38.608647134383133 ], [ -90.23439897702653, 38.608963995319755 ], [ -90.234396662691253, 38.608974827779626 ], [ -90.234310256148802, 38.608964059617691 ], [ -90.234223849635768, 38.608953290513341 ], [ -90.234226163996254, 38.608942458056923 ], [ -90.2342629097122, 38.608770486622333 ], [ -90.234293868824821, 38.608625597221689 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11435000240", "numunits (2020)": 7, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234013882060438, 38.6089271221079 ], [ -90.234052942654685, 38.608744319194109 ], [ -90.234066768152587, 38.608746042348827 ], [ -90.234176503435165, 38.608759718362158 ], [ -90.2342629097122, 38.608770486622333 ], [ -90.234226163996254, 38.608942458056923 ], [ -90.234223849635768, 38.608953290513341 ], [ -90.234137443148924, 38.608942521345256 ], [ -90.234013882060438, 38.6089271221079 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11435000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234144109360855, 38.608317651708305 ], [ -90.234158590079133, 38.608249882634304 ], [ -90.234172413156202, 38.608251615683848 ], [ -90.234587662298793, 38.608303690485222 ], [ -90.234601486541251, 38.608305424392874 ], [ -90.23458702960211, 38.608373081871356 ], [ -90.234573205333803, 38.608371351559093 ], [ -90.234413676578242, 38.608351387807225 ], [ -90.234157933608387, 38.608319382043724 ], [ -90.234144109360855, 38.608317651708305 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11435000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234274432529602, 38.607707731726194 ], [ -90.234283042548597, 38.607667434605673 ], [ -90.234296862017032, 38.607669182048454 ], [ -90.234712017952106, 38.607721676022194 ], [ -90.234725838589483, 38.607723423416971 ], [ -90.234717133022713, 38.607764167197267 ], [ -90.234705586327735, 38.607818209818447 ], [ -90.234691765669183, 38.607816462421255 ], [ -90.234276609207171, 38.607763968374691 ], [ -90.23426278971759, 38.607762220929473 ], [ -90.234274432529602, 38.607707731726194 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11435000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234303392290514, 38.607572193525016 ], [ -90.23431787155404, 38.607504425325274 ], [ -90.234331686311293, 38.607506197082103 ], [ -90.234746684792924, 38.607559423901741 ], [ -90.234760499571578, 38.607561195608014 ], [ -90.234746044082797, 38.607628853118307 ], [ -90.234732228127015, 38.607627085004815 ], [ -90.234317207073602, 38.607573961686484 ], [ -90.234303392290514, 38.607572193525016 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11436000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235900327173539, 38.607852675090719 ], [ -90.235914248961237, 38.60778750991647 ], [ -90.23637050070954, 38.607845454245741 ], [ -90.236384319086753, 38.60784720954004 ], [ -90.236370649040808, 38.607912406885326 ], [ -90.236356830648049, 38.60791065156193 ], [ -90.235900327173539, 38.607852675090719 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11436000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235419638213514, 38.607847532696731 ], [ -90.2354531972682, 38.607690459803415 ], [ -90.235467015596058, 38.60769221429976 ], [ -90.23592225532704, 38.607750032884823 ], [ -90.235914248961237, 38.60778750991647 ], [ -90.235900327173539, 38.607852675090719 ], [ -90.235888697265437, 38.607907105914471 ], [ -90.235433456567293, 38.607849288103246 ], [ -90.235419638213514, 38.607847532696731 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11437000125", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236173415603375, 38.607358672219313 ], [ -90.23624364304753, 38.607020133239146 ], [ -90.236252592022311, 38.60702126681916 ], [ -90.236320511508808, 38.607029870467088 ], [ -90.236250278587747, 38.607368433809739 ], [ -90.236182363461253, 38.607359808520627 ], [ -90.236173415603375, 38.607358672219313 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11437000280", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235810977288693, 38.605988189671869 ], [ -90.235881255310275, 38.605649409496372 ], [ -90.236002191895281, 38.605664618869525 ], [ -90.235999943322525, 38.605675459615718 ], [ -90.235997694749003, 38.605686300389351 ], [ -90.235936412767515, 38.605981716699105 ], [ -90.235934163023572, 38.605992558346976 ], [ -90.235931914426502, 38.60600339911867 ], [ -90.235810977288693, 38.605988189671869 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11438000010", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237799133940399, 38.606231643505097 ], [ -90.237869404027876, 38.60589285852388 ], [ -90.237955826123127, 38.605903536691706 ], [ -90.237885557578636, 38.606242321755573 ], [ -90.237799133940399, 38.606231643505097 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11438000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236683499625684, 38.607422329786445 ], [ -90.236701373254206, 38.607336166417824 ], [ -90.237133681067164, 38.60738865150995 ], [ -90.237115742504642, 38.6074751283005 ], [ -90.236683499625684, 38.607422329786445 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11438000300", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23692689822721, 38.606248950897218 ], [ -90.236940953346874, 38.606181194887576 ], [ -90.23733849591072, 38.606230319458582 ], [ -90.237344881830026, 38.60623724086517 ], [ -90.237367441838714, 38.606261693670007 ], [ -90.237359009234453, 38.606302346390478 ], [ -90.2373504387227, 38.60634366454947 ], [ -90.236918304097742, 38.606290382487991 ], [ -90.23692689822721, 38.606248950897218 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11438000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237228747529684, 38.606161162375564 ], [ -90.237299020225876, 38.605822377741724 ], [ -90.237316304148749, 38.605824513650241 ], [ -90.237402726081299, 38.605835192226102 ], [ -90.237332455007262, 38.60617397692566 ], [ -90.237246032679465, 38.606163298297155 ], [ -90.237228747529684, 38.606161162375564 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11438000370", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237712711478864, 38.606220963436058 ], [ -90.237782981958432, 38.605882179386164 ], [ -90.237834834965255, 38.605888586892412 ], [ -90.237869404027876, 38.60589285852388 ], [ -90.237799133940399, 38.606231643505097 ], [ -90.237764565870791, 38.606227370948965 ], [ -90.237712711478864, 38.606220963436058 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11439000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236607994300272, 38.607795300007751 ], [ -90.236621998295334, 38.607728507894251 ], [ -90.237054159881225, 38.607781736188919 ], [ -90.237040219362314, 38.607848230262029 ], [ -90.237026003071676, 38.607916038130938 ], [ -90.237025756530855, 38.607917214149552 ], [ -90.236593593006702, 38.607863985773399 ], [ -90.236593785806718, 38.607863065499743 ], [ -90.236607994300272, 38.607795300007751 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11440000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238058761363902, 38.608947446564848 ], [ -90.238061323847759, 38.608934838032127 ], [ -90.238493324467171, 38.608988836290827 ], [ -90.238490877784059, 38.609000875752372 ], [ -90.238475693805384, 38.609075596837243 ], [ -90.238472844193808, 38.609075244565787 ], [ -90.238043567589727, 38.60902221622959 ], [ -90.238058761363902, 38.608947446564848 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11440000165", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238084353779783, 38.609402518421277 ], [ -90.23814835752863, 38.609090756081677 ], [ -90.238170827342628, 38.609093531326337 ], [ -90.238257252178087, 38.609104207491598 ], [ -90.238255037112722, 38.609115052853056 ], [ -90.238190235553532, 38.609432276499909 ], [ -90.238188020470986, 38.609443120953266 ], [ -90.238101636550368, 38.609432450265118 ], [ -90.238079015148799, 38.609429655722529 ], [ -90.238081148763726, 38.609418801176936 ], [ -90.238084353779783, 38.609402518421277 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11440000200", "numunits (2020)": 6, "numunits (2018)": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237462396367846, 38.609353482699717 ], [ -90.237531280221205, 38.609014525613652 ], [ -90.237652275420686, 38.6090294730705 ], [ -90.237738701248304, 38.60904014959344 ], [ -90.237736494142098, 38.609050995896474 ], [ -90.237671924480381, 38.609368247673082 ], [ -90.237669717353882, 38.609379093946757 ], [ -90.23758333358893, 38.609368422876365 ], [ -90.237462396367846, 38.609353482699717 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11441000010", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238871028510985, 38.606364085978555 ], [ -90.238939698533798, 38.606025103104464 ], [ -90.23909499082167, 38.606044290034419 ], [ -90.23902664054755, 38.606383312454241 ], [ -90.238871028510985, 38.606364085978555 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11441000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238517111978496, 38.606670106099578 ], [ -90.238525232632099, 38.606629826460058 ], [ -90.238966021903323, 38.606683979469842 ], [ -90.238957791603397, 38.606724802121093 ], [ -90.238946806937207, 38.606779288762311 ], [ -90.238506094261552, 38.606724752960119 ], [ -90.238517111978496, 38.606670106099578 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11441000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238462559853559, 38.606940676805323 ], [ -90.238476197636729, 38.6068730341388 ], [ -90.238916831680072, 38.606927969848861 ], [ -90.23890317793628, 38.60699569183322 ], [ -90.238462559853559, 38.606940676805323 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11441000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238448922047581, 38.607008318590744 ], [ -90.238462559853559, 38.606940676805323 ], [ -90.23890317793628, 38.60699569183322 ], [ -90.238889524166822, 38.607063414693826 ], [ -90.238886658728902, 38.607077627976139 ], [ -90.238445943129065, 38.607023091941564 ], [ -90.238448922047581, 38.607008318590744 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11441000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238502381228869, 38.607644284475391 ], [ -90.238571271137289, 38.60730532849724 ], [ -90.238675252938805, 38.607318369499623 ], [ -90.238693009962731, 38.607320596322722 ], [ -90.238624656550741, 38.607659619330143 ], [ -90.238606575814472, 38.607657352125706 ], [ -90.238502381228869, 38.607644284475391 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11441000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237938286915693, 38.607013718867456 ], [ -90.237945090311882, 38.606980916431112 ], [ -90.238390047590144, 38.607036725926491 ], [ -90.238383445525542, 38.60706947029383 ], [ -90.238369809948679, 38.607137103039321 ], [ -90.238369585479987, 38.607138215130234 ], [ -90.237924054929593, 38.607082334917081 ], [ -90.237924285140934, 38.607081223718545 ], [ -90.237938286915693, 38.607013718867456 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11441000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23795228866048, 38.606946213986362 ], [ -90.237966290382062, 38.6068787091302 ], [ -90.238410717752643, 38.606934203864455 ], [ -90.238397082227678, 38.607001836614835 ], [ -90.238390047590144, 38.607036725926491 ], [ -90.237945090311882, 38.606980916431112 ], [ -90.23795228866048, 38.606946213986362 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11441000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237980292073701, 38.606811204244025 ], [ -90.237994293742105, 38.606743699382797 ], [ -90.238437989869141, 38.606798938331416 ], [ -90.238424354399584, 38.606866571086705 ], [ -90.238410717752643, 38.606934203864455 ], [ -90.237966290382062, 38.6068787091302 ], [ -90.237980292073701, 38.606811204244025 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11441000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238022296999105, 38.606608688719113 ], [ -90.23803629858439, 38.606541183822827 ], [ -90.238478898431794, 38.606596039094889 ], [ -90.238465261888635, 38.606663671882423 ], [ -90.238022296999105, 38.606608688719113 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11441000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238083993993499, 38.606311231745138 ], [ -90.238084538539866, 38.606308605060967 ], [ -90.238491287550033, 38.606358863326555 ], [ -90.238520388961831, 38.606390256518083 ], [ -90.238506171443305, 38.606460772661215 ], [ -90.238064301678563, 38.606406174050065 ], [ -90.238083993993499, 38.606311231745138 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11441000320", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238363522956064, 38.606301379682819 ], [ -90.238427145861522, 38.60596177328641 ], [ -90.238525586937655, 38.605973936330798 ], [ -90.238456064644353, 38.606312814341258 ], [ -90.238363522956064, 38.606301379682819 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11442000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23901770111776, 38.6074820607897 ], [ -90.239027264240917, 38.607434624071274 ], [ -90.239459484605149, 38.607487481429523 ], [ -90.239449920611236, 38.607534918181244 ], [ -90.239441713858469, 38.607575627396855 ], [ -90.239009494127188, 38.607522769974558 ], [ -90.23901770111776, 38.6074820607897 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11442000340", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239559758391309, 38.606110331739984 ], [ -90.239561851521103, 38.606099470728111 ], [ -90.239585123751866, 38.606102352895398 ], [ -90.239673315863996, 38.606113276977581 ], [ -90.239676588824707, 38.606113682412349 ], [ -90.239674441776543, 38.606124536085069 ], [ -90.239671102998784, 38.606140802341777 ], [ -90.239587656035852, 38.606547452969295 ], [ -90.23958431836607, 38.606563719252229 ], [ -90.239582093253091, 38.606574562836656 ], [ -90.239580362657136, 38.606574348198109 ], [ -90.239492169992403, 38.606563424951005 ], [ -90.239462955298492, 38.606559806180783 ], [ -90.23946517583741, 38.606548961682336 ], [ -90.239468506649573, 38.606532694508864 ], [ -90.239479401280988, 38.606479494984683 ], [ -90.239500027875536, 38.606390489564383 ], [ -90.23955629335218, 38.606126581512711 ], [ -90.239559758391309, 38.606110331739984 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11443000010", "numunits (2020)": 46, "numunits (2018)": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240189214186884, 38.609688298343436 ], [ -90.240240063012436, 38.609438041017313 ], [ -90.240257353738102, 38.609440147674171 ], [ -90.240278979801914, 38.609333715766944 ], [ -90.240267140232504, 38.609324365379109 ], [ -90.24026989123314, 38.609310954528894 ], [ -90.240273069955023, 38.609295459951873 ], [ -90.240287506206172, 38.609225099061881 ], [ -90.24052264233211, 38.609253852274108 ], [ -90.240577706564991, 38.608985458387529 ], [ -90.240607896213206, 38.608822407276762 ], [ -90.2406165115775, 38.608779034059822 ], [ -90.240676873866818, 38.608475123401064 ], [ -90.240910777427459, 38.608503724478375 ], [ -90.240839543434447, 38.608850732357155 ], [ -90.240837278271769, 38.608861571369786 ], [ -90.240835123298183, 38.608872418725788 ], [ -90.240810651693195, 38.608991710981726 ], [ -90.240808427838871, 38.609002554587946 ], [ -90.240806198241117, 38.609013398181411 ], [ -90.240707371240831, 38.609495182964984 ], [ -90.240656028202267, 38.60974537995402 ], [ -90.240189214186884, 38.609688298343436 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11443000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239290160625828, 38.609578357538965 ], [ -90.239360416551818, 38.609232619626042 ], [ -90.239394998941748, 38.609236848521405 ], [ -90.239481442885264, 38.609247419315473 ], [ -90.239411187524794, 38.609593157274659 ], [ -90.239324745473169, 38.609582586433014 ], [ -90.239290160625828, 38.609578357538965 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11444008025", "numunits (2020)": 6, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240358343491607, 38.608791891774842 ], [ -90.240427322313494, 38.608444608048416 ], [ -90.240671683051147, 38.60847448854269 ], [ -90.240676873866818, 38.608475123401064 ], [ -90.2406165115775, 38.608779034059822 ], [ -90.240607896213206, 38.608822407276762 ], [ -90.240358343491607, 38.608791891774842 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11445000020", "numunits (2020)": 108, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240352605650884, 38.606578228740823 ], [ -90.240353506926994, 38.606573756040127 ], [ -90.24082015827986, 38.606631551927279 ], [ -90.241287792750882, 38.606689467070943 ], [ -90.241286947808206, 38.606693612918995 ], [ -90.241273152822984, 38.606761335753042 ], [ -90.241259357807976, 38.60682905858458 ], [ -90.241242615379747, 38.606911246841534 ], [ -90.24122606106333, 38.606992513869507 ], [ -90.241223167437511, 38.607006711825477 ], [ -90.240756189696043, 38.60694887805365 ], [ -90.240289537493965, 38.606891081910277 ], [ -90.240292282239722, 38.606877466524175 ], [ -90.240308684068012, 38.606796107385172 ], [ -90.240325270569471, 38.606713827038533 ], [ -90.240338938123045, 38.606646027451546 ], [ -90.240352605650884, 38.606578228740823 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11446000010", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241424049460861, 38.605215857177846 ], [ -90.241494818443243, 38.604870569308055 ], [ -90.241617320908802, 38.604884818684923 ], [ -90.241655357565705, 38.604889242766667 ], [ -90.241606434798939, 38.605128118810867 ], [ -90.241584441172449, 38.605235508779771 ], [ -90.241424049460861, 38.605215857177846 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11446000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239907685265777, 38.604644303067772 ], [ -90.239977307626944, 38.60430716481104 ], [ -90.240103728116836, 38.60432245144095 ], [ -90.240034262189781, 38.604659028880491 ], [ -90.239907685265777, 38.604644303067772 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11446000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240034262189781, 38.604659028880491 ], [ -90.240103728116836, 38.60432245144095 ], [ -90.240231299688304, 38.604337876511096 ], [ -90.240161992520882, 38.604673887702027 ], [ -90.240034262189781, 38.604659028880491 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11447000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239460206827715, 38.605920491830865 ], [ -90.23953185012752, 38.605574020655673 ], [ -90.239585687897289, 38.605580815554234 ], [ -90.239669944705156, 38.605591449820253 ], [ -90.239598405919409, 38.605937453736445 ], [ -90.239514086837275, 38.60592710576266 ], [ -90.239460206827715, 38.605920491830865 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11447000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240341152460516, 38.60563444307531 ], [ -90.240418646970625, 38.605259415265849 ], [ -90.240533655644199, 38.605273506877872 ], [ -90.240456081014671, 38.605648947187916 ], [ -90.24041007538591, 38.605643142070456 ], [ -90.240341152460516, 38.60563444307531 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11447008011", "numunits (2020)": 9, "numunits (2018)": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241355218163889, 38.605804137258296 ], [ -90.241464815483099, 38.605817968310404 ], [ -90.241454221999547, 38.605869264176128 ], [ -90.241441049865145, 38.605933065949003 ], [ -90.241414831729301, 38.60606005174202 ], [ -90.241394632912645, 38.606157893493133 ], [ -90.241101335655458, 38.606121901401472 ], [ -90.241171740124045, 38.605780983190094 ], [ -90.241318277191624, 38.605799475826885 ], [ -90.241355218163889, 38.605804137258296 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11448000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238129832684209, 38.604422749004208 ], [ -90.238198172430117, 38.604092020581817 ], [ -90.238312205173131, 38.604105810399439 ], [ -90.23824382278211, 38.604436724389856 ], [ -90.238129832684209, 38.604422749004208 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11448000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238934677353669, 38.60452142210022 ], [ -90.239003320167981, 38.604189387593891 ], [ -90.239117354367977, 38.604203177536441 ], [ -90.239048668915871, 38.60453539670528 ], [ -90.238934677353669, 38.60452142210022 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11448000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23916265937865, 38.604549371196889 ], [ -90.239231389760022, 38.604216967370547 ], [ -90.239345424045041, 38.604230757091074 ], [ -90.239276649886307, 38.604563345550076 ], [ -90.23916265937865, 38.604549371196889 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11449000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238811929508032, 38.605840925119288 ], [ -90.238882887832716, 38.605498347353084 ], [ -90.238891531548376, 38.605499402590858 ], [ -90.238995261874962, 38.605512067082245 ], [ -90.238924329055592, 38.605854720623078 ], [ -90.238820576684347, 38.605841986658142 ], [ -90.238811929508032, 38.605840925119288 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11450030010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235795783307864, 38.604525791533085 ], [ -90.235866014472691, 38.604185943617971 ], [ -90.235969352995383, 38.60419865675636 ], [ -90.235924811904326, 38.604414449548656 ], [ -90.235921083488478, 38.604432510327541 ], [ -90.235899201437519, 38.604538528334885 ], [ -90.235795783307864, 38.604525791533085 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11450040040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236608856721816, 38.604625681100003 ], [ -90.236679391689847, 38.604286189222414 ], [ -90.236800711644477, 38.604301158087807 ], [ -90.23673008806793, 38.604640544424065 ], [ -90.236608856721816, 38.604625681100003 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11450040050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236508410355498, 38.604613366907891 ], [ -90.236578869183234, 38.60427378663875 ], [ -90.236644729346921, 38.604281912526908 ], [ -90.236679391689847, 38.604286189222414 ], [ -90.236608856721816, 38.604625681100003 ], [ -90.236574220514598, 38.604621435059215 ], [ -90.236508410355498, 38.604613366907891 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11450040090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236106625363419, 38.604564075036791 ], [ -90.236176782958097, 38.604224175421805 ], [ -90.236277304176568, 38.604236578347923 ], [ -90.236207065732899, 38.604576421083408 ], [ -90.236164527361666, 38.604571205861362 ], [ -90.236106625363419, 38.604564075036791 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11450040100", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236250693777322, 38.60386612403677 ], [ -90.236253107096175, 38.603854471931108 ], [ -90.236391891245333, 38.603871525433277 ], [ -90.236375163605317, 38.603952423881289 ], [ -90.236361223305209, 38.604019838623572 ], [ -90.236344542355667, 38.604100508352467 ], [ -90.236323839832323, 38.604200626439052 ], [ -90.236185173520042, 38.604183517268922 ], [ -90.236205687570575, 38.604084131202519 ], [ -90.236222491907057, 38.604002725754405 ], [ -90.236224194763992, 38.603994480124001 ], [ -90.23623640238884, 38.603935337075335 ], [ -90.236250693777322, 38.60386612403677 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11450040140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236648288647956, 38.604136331264336 ], [ -90.236695517522222, 38.603908834429042 ], [ -90.236755752115599, 38.603916235937042 ], [ -90.236782266629859, 38.603919494398667 ], [ -90.236765434618917, 38.604000481828514 ], [ -90.236751408296897, 38.604067971223337 ], [ -90.236735074012188, 38.604146567023356 ], [ -90.236713838684267, 38.604248745236191 ], [ -90.236627171973879, 38.604238052092647 ], [ -90.236648288647956, 38.604136331264336 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11451040120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236340601512751, 38.605148612839422 ], [ -90.236419273529563, 38.604769191242866 ], [ -90.236540452290413, 38.604784047451005 ], [ -90.236549107343336, 38.604785108296674 ], [ -90.236470153242934, 38.605165245538025 ], [ -90.236461520128032, 38.605164137917832 ], [ -90.236340601512751, 38.605148612839422 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11451040130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236470153242934, 38.605165245538025 ], [ -90.236549107343336, 38.604785108296674 ], [ -90.2365931664133, 38.604790510571441 ], [ -90.236678941215629, 38.604801026085269 ], [ -90.236599474368603, 38.605181850556562 ], [ -90.236470153242934, 38.605165245538025 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11451040160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236848637495584, 38.60511088886436 ], [ -90.236907449974737, 38.604829041109689 ], [ -90.237007855396925, 38.60484135036436 ], [ -90.23695821704834, 38.605078930948622 ], [ -90.236948851833759, 38.605123755382628 ], [ -90.236848637495584, 38.60511088886436 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11452010094", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233856808409314, 38.604042007147498 ], [ -90.233858094228552, 38.604035470490686 ], [ -90.233876494594583, 38.603941949337425 ], [ -90.234032201265535, 38.603961127723245 ], [ -90.234013544753424, 38.604055048319083 ], [ -90.234012329377705, 38.604061164407462 ], [ -90.233856808409314, 38.604042007147498 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11452010120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234108890627454, 38.603659809402373 ], [ -90.234122375142007, 38.60359201188345 ], [ -90.234208790495558, 38.603602684703056 ], [ -90.234195239607601, 38.603670445149191 ], [ -90.234181845424814, 38.603737421246372 ], [ -90.234168075768125, 38.603806276649557 ], [ -90.234150193761835, 38.603895698187308 ], [ -90.234142724689718, 38.603933047498543 ], [ -90.234056650813841, 38.603922445671031 ], [ -90.234067062554104, 38.603870098695573 ], [ -90.23408187007351, 38.603795658341504 ], [ -90.23409556751632, 38.603726793750965 ], [ -90.234108890627454, 38.603659809402373 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11452020010", "numunits (2020)": 12, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234331710243197, 38.605291163643273 ], [ -90.234401578921592, 38.604951441988177 ], [ -90.23463896772094, 38.604981040037153 ], [ -90.234592218513257, 38.605205075846762 ], [ -90.234588576917346, 38.605222528665514 ], [ -90.234568212734303, 38.605320113003479 ], [ -90.234331710243197, 38.605291163643273 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11452020120", "numunits (2020)": 14, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234409033016021, 38.604910665617886 ], [ -90.234487040550164, 38.604531368150397 ], [ -90.2347266429786, 38.604560880956932 ], [ -90.234672376340626, 38.604820939935053 ], [ -90.234670414144873, 38.604830346204601 ], [ -90.234647449904301, 38.604940392120511 ], [ -90.234409033016021, 38.604910665617886 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11453000160", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233262159341578, 38.605160239872198 ], [ -90.233411007941314, 38.60481152156683 ], [ -90.233419638454762, 38.604813933003101 ], [ -90.233488679111886, 38.604833224489987 ], [ -90.233464564732088, 38.604955781808343 ], [ -90.233420519823497, 38.605179625079344 ], [ -90.23330416539838, 38.605165381981905 ], [ -90.233276665910651, 38.605162016014923 ], [ -90.233262159341578, 38.605160239872198 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11453000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233028459154781, 38.605131631190375 ], [ -90.23319773876581, 38.60475193020234 ], [ -90.233263743430641, 38.604770373497992 ], [ -90.233321750726304, 38.604786581527875 ], [ -90.23316390347442, 38.605148211572448 ], [ -90.23310095065132, 38.605140504742636 ], [ -90.23306728064442, 38.605136383287451 ], [ -90.233028459154781, 38.605131631190375 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11453000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23294980167293, 38.605113942779077 ], [ -90.233116444684924, 38.604729215253236 ], [ -90.233168781592326, 38.604743839322623 ], [ -90.23319773876581, 38.60475193020234 ], [ -90.233028459154781, 38.605131631190375 ], [ -90.233001275278241, 38.605128303714373 ], [ -90.23294980167293, 38.605113942779077 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11453000210", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232771903633008, 38.605064311975916 ], [ -90.232943799270132, 38.604682575903198 ], [ -90.232973061651236, 38.604689150412547 ], [ -90.233031152538643, 38.60470538219915 ], [ -90.232853754363219, 38.605087147327012 ], [ -90.232771903633008, 38.605064311975916 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11453000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232688839518232, 38.605041137762207 ], [ -90.232861813242181, 38.604664155549997 ], [ -90.232943799270132, 38.604682575903198 ], [ -90.232771903633008, 38.605064311975916 ], [ -90.232688839518232, 38.605041137762207 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11453000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232523959292649, 38.604995137956465 ], [ -90.232691444879393, 38.604625876721357 ], [ -90.232776758663093, 38.604645045307258 ], [ -90.232605649298208, 38.605017928988474 ], [ -90.232547722173038, 38.605001767632032 ], [ -90.232523959292649, 38.604995137956465 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11453000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232633845999544, 38.604281602175334 ], [ -90.232643260649098, 38.604235592618238 ], [ -90.23307555757529, 38.604286737733695 ], [ -90.233066045358839, 38.604332814653453 ], [ -90.233059279138985, 38.604365588976933 ], [ -90.232627058591973, 38.604314775517345 ], [ -90.232633845999544, 38.604281602175334 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11453000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232703126205706, 38.603943017038418 ], [ -90.232716778029811, 38.603876295752826 ], [ -90.233149501538335, 38.603928564069761 ], [ -90.233149330859177, 38.603929391603984 ], [ -90.233135706214028, 38.603995387777182 ], [ -90.232703126205706, 38.603943017038418 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11454000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233604461072943, 38.602044267468123 ], [ -90.233618941553473, 38.601974481290398 ], [ -90.234052336304302, 38.602029854060085 ], [ -90.234037989697697, 38.602099562198276 ], [ -90.233604461072943, 38.602044267468123 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11454000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233589980564261, 38.602114054521827 ], [ -90.233604461072943, 38.602044267468123 ], [ -90.234037989697697, 38.602099562198276 ], [ -90.234023643055991, 38.602169271267357 ], [ -90.233589980564261, 38.602114054521827 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11454000040", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23357550002703, 38.602183841600315 ], [ -90.233589980564261, 38.602114054521827 ], [ -90.234023643055991, 38.602169271267357 ], [ -90.234009297537355, 38.602238979402777 ], [ -90.23357550002703, 38.602183841600315 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11454000090", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233503096907825, 38.602532776896958 ], [ -90.233517577587151, 38.602462989832084 ], [ -90.233951910580544, 38.60251781555926 ], [ -90.233937564924631, 38.602587523708735 ], [ -90.233503096907825, 38.602532776896958 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11454000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23345386421569, 38.602770052500553 ], [ -90.233464448083993, 38.602719044676952 ], [ -90.233899174506391, 38.602774063403807 ], [ -90.233888786938778, 38.602824533868016 ], [ -90.23345386421569, 38.602770052500553 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11454000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232883084790799, 38.603063487300709 ], [ -90.232896966595803, 38.602995643068851 ], [ -90.233325100624043, 38.603048871483573 ], [ -90.233311045101061, 38.603116608143729 ], [ -90.232883084790799, 38.603063487300709 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11454000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23295249125519, 38.60272426709961 ], [ -90.23296637293447, 38.602656421976498 ], [ -90.23339537436398, 38.602710196236913 ], [ -90.23338132012934, 38.602777931100192 ], [ -90.23295249125519, 38.60272426709961 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11454000350", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233048493317682, 38.602255053862272 ], [ -90.233051969107805, 38.602238103401731 ], [ -90.233062408088841, 38.602187213300645 ], [ -90.233492580783349, 38.602241738485915 ], [ -90.233478525582811, 38.602309474270434 ], [ -90.233048493317682, 38.602255053862272 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11454000360", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23307632857221, 38.60211937274952 ], [ -90.233090249025636, 38.602051533102014 ], [ -90.233520689953039, 38.602106267785352 ], [ -90.233512273222473, 38.602146832916027 ], [ -90.233506635953717, 38.602174003605015 ], [ -90.233492580783349, 38.602241738485915 ], [ -90.233062408088841, 38.602187213300645 ], [ -90.23307632857221, 38.60211937274952 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11454000370", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233090249025636, 38.602051533102014 ], [ -90.233104170607106, 38.601983692548494 ], [ -90.233534745073214, 38.602038531993202 ], [ -90.233520689953039, 38.602106267785352 ], [ -90.233090249025636, 38.602051533102014 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11454000380", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233104170607106, 38.601983692548494 ], [ -90.233118092151912, 38.601915853777207 ], [ -90.233548799015551, 38.601970797102027 ], [ -90.233534745073214, 38.602038531993202 ], [ -90.233104170607106, 38.601983692548494 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11454000410", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233162248616836, 38.601700670993054 ], [ -90.233218825070082, 38.601424963943408 ], [ -90.233367182805523, 38.601466355079104 ], [ -90.233245420285058, 38.601723875740468 ], [ -90.233162248616836, 38.601700670993054 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11455000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234550601227653, 38.603125799011544 ], [ -90.234567444995676, 38.603044731736723 ], [ -90.235026366911967, 38.603102713460373 ], [ -90.235009838990877, 38.603183569830314 ], [ -90.234550601227653, 38.603125799011544 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11455000115", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234720883764879, 38.602306231100236 ], [ -90.234733981440726, 38.602243193852402 ], [ -90.235190240104515, 38.602301009468647 ], [ -90.23517734937252, 38.602364073374851 ], [ -90.234720883764879, 38.602306231100236 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11455000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234162634901381, 38.602527313920199 ], [ -90.234176574692782, 38.602459578700447 ], [ -90.23460686140811, 38.602513742392063 ], [ -90.234592806375971, 38.602581390027545 ], [ -90.234162634901381, 38.602527313920199 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11455000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234232333606798, 38.602188636835052 ], [ -90.234246287293942, 38.602120834057317 ], [ -90.23467713618443, 38.602175500579193 ], [ -90.23466308127928, 38.602243149106137 ], [ -90.234232333606798, 38.602188636835052 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11456000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235866860220341, 38.602525388877723 ], [ -90.235877166769342, 38.602474705435107 ], [ -90.235878706434491, 38.602467135101683 ], [ -90.236318387767824, 38.602517243420372 ], [ -90.236315988693079, 38.6025287829519 ], [ -90.236313395625032, 38.602541258049499 ], [ -90.236310801404898, 38.602553734078022 ], [ -90.236306226453166, 38.602575737955078 ], [ -90.235866860220341, 38.602525388877723 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11456000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235811735844223, 38.602796459966079 ], [ -90.23582000008679, 38.602755820465042 ], [ -90.236258196810894, 38.602806759882512 ], [ -90.236249715260598, 38.602847553878945 ], [ -90.236235588260826, 38.602915506949266 ], [ -90.235797951178725, 38.602864245291059 ], [ -90.235811735844223, 38.602796459966079 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11456000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235673924209721, 38.603474140192503 ], [ -90.23568770560253, 38.603406372895243 ], [ -90.236122567859766, 38.60345912421694 ], [ -90.23610844062695, 38.603527074545582 ], [ -90.235673924209721, 38.603474140192503 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11456000170", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235645673865804, 38.603613065952636 ], [ -90.23564917535974, 38.603595845222713 ], [ -90.235660142784113, 38.60354190927211 ], [ -90.236094312212472, 38.603595025802726 ], [ -90.236088432952542, 38.603623305061134 ], [ -90.236079479071648, 38.603666374509807 ], [ -90.235888648952738, 38.603642924488796 ], [ -90.235645673865804, 38.603613065952636 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11456000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235285891991381, 38.602873349683271 ], [ -90.235299422190721, 38.602807153019164 ], [ -90.235728465451331, 38.602857435981583 ], [ -90.235714960096175, 38.602923849870876 ], [ -90.23571465379581, 38.602925356361922 ], [ -90.235285585701803, 38.60287484988509 ], [ -90.235285891991381, 38.602873349683271 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11456000330", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.2353548858935, 38.602535805491392 ], [ -90.235365840637144, 38.602482211863894 ], [ -90.235794764271986, 38.602531413246162 ], [ -90.235783829857027, 38.602585184428158 ], [ -90.235770055727784, 38.602652917521155 ], [ -90.235768244818146, 38.602661822336287 ], [ -90.235339272642705, 38.602612188347841 ], [ -90.235341086931953, 38.60260331504265 ], [ -90.2353548858935, 38.602535805491392 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11456000380", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235960646149692, 38.602355756592459 ], [ -90.236029885516487, 38.602020410655861 ], [ -90.236116816602348, 38.602030576027005 ], [ -90.236047530499349, 38.602365623703172 ], [ -90.235960646149692, 38.602355756592459 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11457000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23682670136742, 38.603548667730372 ], [ -90.236840821612262, 38.603480560534315 ], [ -90.237278954872792, 38.603534262609898 ], [ -90.237264879663584, 38.603602408704269 ], [ -90.23682670136742, 38.603548667730372 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11457000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.2368125811022, 38.603616774045165 ], [ -90.23682670136742, 38.603548667730372 ], [ -90.237264879663584, 38.603602408704269 ], [ -90.23725080557854, 38.603670553892499 ], [ -90.2368125811022, 38.603616774045165 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11457000160", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236301065013706, 38.603623800348167 ], [ -90.236315216618991, 38.603555733817139 ], [ -90.236562825785484, 38.60358612205917 ], [ -90.236543073089763, 38.603653519295918 ], [ -90.236523321514255, 38.603720913867512 ], [ -90.236407237549358, 38.603706649225352 ], [ -90.236386155685878, 38.603704058726727 ], [ -90.236286914539036, 38.603691864160787 ], [ -90.236301065013706, 38.603623800348167 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11457000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236400122215628, 38.603147341790503 ], [ -90.236414272476992, 38.603079277023596 ], [ -90.236842271800185, 38.603131575161918 ], [ -90.236828152797926, 38.603199676955583 ], [ -90.236400122215628, 38.603147341790503 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11457000360", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236930727926577, 38.602472288232043 ], [ -90.23700087844648, 38.602133951039441 ], [ -90.237087427668641, 38.602144071586963 ], [ -90.23701723823504, 38.602482799735661 ], [ -90.236930727926577, 38.602472288232043 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11457000370", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23701723823504, 38.602482799735661 ], [ -90.237087427668641, 38.602144071586963 ], [ -90.237173976918754, 38.602154191164423 ], [ -90.237103748569112, 38.602493311175415 ], [ -90.23701723823504, 38.602482799735661 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11459010170", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239631438221309, 38.602794272198359 ], [ -90.23970307230374, 38.602449880881167 ], [ -90.239838681077757, 38.602465734089989 ], [ -90.239772435633313, 38.602784262956163 ], [ -90.23976704937057, 38.602810278635168 ], [ -90.239631438221309, 38.602794272198359 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11459020010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239386835474221, 38.604069065292663 ], [ -90.239456957457705, 38.603730476188858 ], [ -90.239573653043067, 38.603744367968353 ], [ -90.239525146021776, 38.603978646858771 ], [ -90.239503504407992, 38.604083173296452 ], [ -90.239386835474221, 38.604069065292663 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11459020020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23927016888247, 38.604054957150318 ], [ -90.23934026306587, 38.603716584268213 ], [ -90.239398598205838, 38.603723528857124 ], [ -90.239449741447885, 38.60372961694862 ], [ -90.239456957457705, 38.603730476188858 ], [ -90.239386835474221, 38.604069065292663 ], [ -90.239328490122247, 38.604062009850082 ], [ -90.23927016888247, 38.604054957150318 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11459020030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239153496597993, 38.604040848906493 ], [ -90.239223545773626, 38.603702688583247 ], [ -90.23934026306587, 38.603716584268213 ], [ -90.23927016888247, 38.604054957150318 ], [ -90.239153496597993, 38.604040848906493 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11459020150", "numunits (2020)": 13, "numunits (2018)": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239231967841661, 38.603662032088423 ], [ -90.239303146971608, 38.60331850400884 ], [ -90.239332840709096, 38.603321992352264 ], [ -90.239470941014147, 38.60333821636258 ], [ -90.239472031220743, 38.603338344926613 ], [ -90.239478228177518, 38.603339073068241 ], [ -90.239653308336941, 38.603359640929789 ], [ -90.239582070330911, 38.603703710531654 ], [ -90.239407019036719, 38.603682871440839 ], [ -90.239231967841661, 38.603662032088423 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11460000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240657103759574, 38.602915329355824 ], [ -90.24072840442463, 38.60256974209215 ], [ -90.24084219246518, 38.602583043317594 ], [ -90.240770907938753, 38.602928761336855 ], [ -90.240657103759574, 38.602915329355824 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11460000300", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241864943890093, 38.60309952564586 ], [ -90.241869113985203, 38.603079191801164 ], [ -90.242024303952533, 38.603097506170364 ], [ -90.242020138494681, 38.603117840030741 ], [ -90.242006382563844, 38.603184982015584 ], [ -90.24199637378203, 38.603233831552934 ], [ -90.241995847969577, 38.603236403324686 ], [ -90.241840617235212, 38.603218169915309 ], [ -90.24184170271424, 38.603212874158871 ], [ -90.241864943890093, 38.60309952564586 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11461000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240963521941623, 38.604259714200104 ], [ -90.241034720011655, 38.603913573464261 ], [ -90.241148684168195, 38.603926712632763 ], [ -90.241077374169379, 38.60427348022165 ], [ -90.240963521941623, 38.604259714200104 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11461000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240849658279799, 38.604245947163896 ], [ -90.240920768516389, 38.603900436025029 ], [ -90.241034720011655, 38.603913573464261 ], [ -90.240963521941623, 38.604259714200104 ], [ -90.240849658279799, 38.604245947163896 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11461000082", "numunits (2020)": 4, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240508066411067, 38.604204644455088 ], [ -90.240578921174162, 38.603861023908685 ], [ -90.240692874838402, 38.603874161712966 ], [ -90.240621923053595, 38.604218410901957 ], [ -90.240508066411067, 38.604204644455088 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11461000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239711021791777, 38.60410826697521 ], [ -90.239781254755641, 38.60376905361133 ], [ -90.23989521041716, 38.603782193075368 ], [ -90.239824886160363, 38.604122036054299 ], [ -90.239711021791777, 38.60410826697521 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11462000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241196442481694, 38.602456960498529 ], [ -90.241265230329631, 38.602124232058912 ], [ -90.24136212041914, 38.602135699228377 ], [ -90.241293343536782, 38.602468371869477 ], [ -90.241196442481694, 38.602456960498529 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11462000140", "numunits (2020)": 10, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240078620355121, 38.602325313419911 ], [ -90.240149198494137, 38.601983953677532 ], [ -90.240321979134748, 38.602005570410796 ], [ -90.240292155559885, 38.602149819929942 ], [ -90.240251657662469, 38.602345693018812 ], [ -90.240078620355121, 38.602325313419911 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11462000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240157604913108, 38.601943296162723 ], [ -90.240224852483536, 38.601618038694404 ], [ -90.240326246862764, 38.601630723837616 ], [ -90.24025899973411, 38.60195598227115 ], [ -90.240157604913108, 38.601943296162723 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11462000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240588111154892, 38.601997157280969 ], [ -90.240656801575369, 38.601672080218385 ], [ -90.240743192157765, 38.601682888696025 ], [ -90.240675946865963, 38.602008146466318 ], [ -90.240588111154892, 38.601997157280969 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11462000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240675946865963, 38.602008146466318 ], [ -90.240743192157765, 38.601682888696025 ], [ -90.240829581622194, 38.601693697107443 ], [ -90.240760887371465, 38.602018773356541 ], [ -90.240675946865963, 38.602008146466318 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11462000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240760887371465, 38.602018773356541 ], [ -90.240829581622194, 38.601693697107443 ], [ -90.240915972260609, 38.601704505457683 ], [ -90.240848727723659, 38.602029763328616 ], [ -90.240760887371465, 38.602018773356541 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11464000100", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239084089722539, 38.600961885228934 ], [ -90.239187920670105, 38.600974772304312 ], [ -90.23911879176876, 38.601311858215091 ], [ -90.239015039027507, 38.601298801911334 ], [ -90.239084089722539, 38.600961885228934 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11464000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238081262606514, 38.601181290980065 ], [ -90.237977510246338, 38.601168233729986 ], [ -90.238045778862997, 38.60083300962561 ], [ -90.238149609434217, 38.600845897593807 ], [ -90.238081262606514, 38.601181290980065 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11464000250", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238663841576894, 38.600517581909045 ], [ -90.23874692676857, 38.600527987231423 ], [ -90.238798854883427, 38.600534489954455 ], [ -90.238729081333162, 38.600876122841974 ], [ -90.238677078179435, 38.600869668551461 ], [ -90.238594077189546, 38.600859366091768 ], [ -90.238663841576894, 38.600517581909045 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11464000311", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239681636569031, 38.600645039072504 ], [ -90.239785493146911, 38.600658044573059 ], [ -90.239889349766074, 38.600671049075395 ], [ -90.239819280366405, 38.601011433331593 ], [ -90.23971544351113, 38.600998545897056 ], [ -90.239611606693387, 38.60098565839791 ], [ -90.239681636569031, 38.600645039072504 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11465000010", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239733925522955, 38.602286915062344 ], [ -90.239802594296918, 38.601953694434243 ], [ -90.239940865092905, 38.60197097322294 ], [ -90.239906674167159, 38.602136747879811 ], [ -90.239885321987188, 38.602240275987171 ], [ -90.239872363907551, 38.602303098818375 ], [ -90.239733925522955, 38.602286915062344 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11465000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239579633438368, 38.601925831599296 ], [ -90.239681607695275, 38.601938574465031 ], [ -90.239612792563321, 38.602272754149709 ], [ -90.239510693246714, 38.602260818137438 ], [ -90.239579633438368, 38.601925831599296 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11465000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239171628932397, 38.601874841902287 ], [ -90.239273710903731, 38.601887599778522 ], [ -90.239204401241551, 38.602225009606812 ], [ -90.239102304354461, 38.602213074149809 ], [ -90.239171628932397, 38.601874841902287 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11465000110", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238763840742862, 38.601823879189759 ], [ -90.238865814700631, 38.601836623644303 ], [ -90.238796016200979, 38.602177265465208 ], [ -90.238693919454406, 38.602165328746125 ], [ -90.238763840742862, 38.601823879189759 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11465000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238661866818248, 38.601811134619012 ], [ -90.238763840742862, 38.601823879189759 ], [ -90.238693919454406, 38.602165328746125 ], [ -90.238591823886637, 38.602153392846773 ], [ -90.238661866818248, 38.601811134619012 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11465000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238151843046623, 38.601357032691737 ], [ -90.238255575057963, 38.601370086995956 ], [ -90.238186222290125, 38.601709980822321 ], [ -90.238082514723928, 38.601697019295919 ], [ -90.238151843046623, 38.601357032691737 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11465000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238566771320222, 38.601409249439911 ], [ -90.238497342923353, 38.601748864900543 ], [ -90.238393636391578, 38.601735903624643 ], [ -90.238463039194713, 38.601396195383764 ], [ -90.238566771320222, 38.601409249439911 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11465000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238566771320222, 38.601409249439911 ], [ -90.238670504631543, 38.601422303406736 ], [ -90.238601050640696, 38.601761826087177 ], [ -90.238497342923353, 38.601748864900543 ], [ -90.238566771320222, 38.601409249439911 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11465000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238981701354433, 38.601461464720984 ], [ -90.239085432522614, 38.601474518315321 ], [ -90.239015880744077, 38.601813669858245 ], [ -90.238912172875501, 38.601800709038827 ], [ -90.238981701354433, 38.601461464720984 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11465000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239500363311748, 38.601526732665526 ], [ -90.239604095818095, 38.601539785803148 ], [ -90.239534418362268, 38.601878472518173 ], [ -90.239430711452414, 38.601865512160344 ], [ -90.239500363311748, 38.601526732665526 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11466000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237262101780743, 38.60199527204017 ], [ -90.237330313151475, 38.601663984250251 ], [ -90.237391835498045, 38.601671617126911 ], [ -90.237442820117835, 38.601677941780544 ], [ -90.237374888684641, 38.602008471728645 ], [ -90.237323771714529, 38.602002489083461 ], [ -90.237262101780743, 38.60199527204017 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11468000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235085135405498, 38.600557606491492 ], [ -90.235099194772332, 38.600489793038733 ], [ -90.235533554712291, 38.600543124673372 ], [ -90.235519431677261, 38.600610877707048 ], [ -90.235085135405498, 38.600557606491492 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11468000150", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235165182448384, 38.601713786072793 ], [ -90.235245529201848, 38.601327864397604 ], [ -90.235366909002977, 38.601342605161861 ], [ -90.235285003403561, 38.601735540440941 ], [ -90.235165182448384, 38.601713786072793 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11468000180", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234908422195133, 38.601667169903351 ], [ -90.234985428311731, 38.601296277634738 ], [ -90.235072128586154, 38.601306806326967 ], [ -90.235089556081675, 38.601308923062732 ], [ -90.235011226530176, 38.601685834875653 ], [ -90.234994009292748, 38.601682708680727 ], [ -90.234908422195133, 38.601667169903351 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11468000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234595719992029, 38.600427973165125 ], [ -90.234602719022632, 38.600394032623967 ], [ -90.235037082506423, 38.60044739225026 ], [ -90.235030052788304, 38.600481303037299 ], [ -90.235015992180678, 38.600549124606879 ], [ -90.234581720759536, 38.600495855204059 ], [ -90.234595719992029, 38.600427973165125 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11468000350", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234637716381087, 38.600224327112905 ], [ -90.235072233295568, 38.600277838310603 ], [ -90.2350581727719, 38.600345659887864 ], [ -90.234623717228899, 38.600292209132007 ], [ -90.234637716381087, 38.600224327112905 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11468000361", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234987682799769, 38.600213309690162 ], [ -90.234648552642227, 38.600171782809838 ], [ -90.234659716164487, 38.600117650070423 ], [ -90.235094335531329, 38.600171227182372 ], [ -90.235083957584791, 38.600221286102212 ], [ -90.234988469334425, 38.600209515092125 ], [ -90.234987682799769, 38.600213309690162 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11468000370", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234679713677394, 38.600020681012893 ], [ -90.235114414712797, 38.60007437353601 ], [ -90.235100354266066, 38.600142195120938 ], [ -90.235094335531329, 38.600171227182372 ], [ -90.234659716164487, 38.600117650070423 ], [ -90.234665714605399, 38.600088563039648 ], [ -90.234679713677394, 38.600020681012893 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11469000030", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233991403469332, 38.600178488168645 ], [ -90.234005338917726, 38.600110914172618 ], [ -90.234437334928188, 38.600164383304431 ], [ -90.234423351288143, 38.600232057221803 ], [ -90.234414174443828, 38.600276602626757 ], [ -90.233982238237274, 38.600222927271545 ], [ -90.233991403469332, 38.600178488168645 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11469000061", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23390778560811, 38.600583934744975 ], [ -90.233912912389982, 38.600559078177824 ], [ -90.234344821066202, 38.600613280750331 ], [ -90.234339694429153, 38.600638137336688 ], [ -90.234325736994435, 38.600705814920609 ], [ -90.234321398150172, 38.600726855332447 ], [ -90.233889532058257, 38.600672443750746 ], [ -90.233893848823243, 38.600651509626879 ], [ -90.23390778560811, 38.600583934744975 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11469000130", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233740615997462, 38.601394493548035 ], [ -90.233811591638556, 38.601050352938692 ], [ -90.233897947712947, 38.601061319557999 ], [ -90.233948279263544, 38.601067710898697 ], [ -90.233873211877196, 38.601431696145688 ], [ -90.233824386824409, 38.601417997449232 ], [ -90.233740615997462, 38.601394493548035 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11469000140", "numunits (2020)": 24, "numunits (2018)": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233328719201367, 38.600899504172965 ], [ -90.233342669439494, 38.600831862721471 ], [ -90.233558559984345, 38.600859280881131 ], [ -90.233715742995145, 38.600880065720304 ], [ -90.233774450699229, 38.600886698642952 ], [ -90.23376049970058, 38.600954341022735 ], [ -90.233746548682163, 38.601021982521338 ], [ -90.233732598781501, 38.601089623992507 ], [ -90.233718647706738, 38.601157266364716 ], [ -90.233704697752884, 38.601224907858288 ], [ -90.23367359960632, 38.601375689659591 ], [ -90.233464172892496, 38.601316929099355 ], [ -90.233254745374168, 38.601258167256141 ], [ -90.233272915674419, 38.601170070772163 ], [ -90.233286866022098, 38.601102429358264 ], [ -90.233300816339863, 38.601034787914358 ], [ -90.233314767785572, 38.600967145591852 ], [ -90.233328719201367, 38.600899504172965 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11471000020", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231737157085277, 38.59975532311045 ], [ -90.231740060163418, 38.599741783949085 ], [ -90.232169828243272, 38.599797505877078 ], [ -90.232166925243476, 38.599811045049265 ], [ -90.232152412520023, 38.599878741819943 ], [ -90.232138602791821, 38.599876950924887 ], [ -90.231736452529276, 38.599824809917322 ], [ -90.231722643969988, 38.599823019854561 ], [ -90.231737157085277, 38.59975532311045 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11471000120", "numunits (2020)": 14, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231088087860144, 38.60038295230359 ], [ -90.231090991086091, 38.600369413160273 ], [ -90.231367179127076, 38.600405223679651 ], [ -90.231643368590724, 38.600441034429267 ], [ -90.231640465465489, 38.600454573586482 ], [ -90.231551521583611, 38.600869433215657 ], [ -90.231498947045893, 38.600854724068817 ], [ -90.231283717703135, 38.600794509435687 ], [ -90.231015913234685, 38.600719584135085 ], [ -90.231088087860144, 38.60038295230359 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11471000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231178511661113, 38.599961203682035 ], [ -90.231190122128439, 38.599907046183439 ], [ -90.231621665883239, 38.599963000311625 ], [ -90.231610081449219, 38.600017033577139 ], [ -90.231607152616718, 38.60003069701105 ], [ -90.231175608468519, 38.599974742828572 ], [ -90.231178511661113, 38.599961203682035 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11471000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23122205254505, 38.599758113709484 ], [ -90.231231971252484, 38.599711852237569 ], [ -90.231234587040561, 38.599699650271418 ], [ -90.231524586950314, 38.599737228910392 ], [ -90.231525916444738, 38.59973102391676 ], [ -90.231526565990251, 38.599727995689811 ], [ -90.23165430707671, 38.599744548526267 ], [ -90.231668115626135, 38.599746337690924 ], [ -90.231653607122482, 38.599814011893017 ], [ -90.23163979741274, 38.599812222723997 ], [ -90.231235862237014, 38.599759902049051 ], [ -90.23122205254505, 38.599758113709484 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11472000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230027278424274, 38.599869250400253 ], [ -90.230041793139932, 38.599801553899987 ], [ -90.230473358715301, 38.599857403271542 ], [ -90.230458844392942, 38.5999250998535 ], [ -90.230027278424274, 38.599869250400253 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11472000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.2300998528777, 38.599530767847504 ], [ -90.230117996385843, 38.599446147418554 ], [ -90.230549559895749, 38.599501996505197 ], [ -90.230531416882911, 38.599586617001968 ], [ -90.2300998528777, 38.599530767847504 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11473000010", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22946317875072, 38.59943859594037 ], [ -90.229478855307391, 38.599365482420502 ], [ -90.22991074730075, 38.599419798605886 ], [ -90.229895070021968, 38.599492912181795 ], [ -90.229893908650368, 38.599498329272159 ], [ -90.229462017354365, 38.599444011214089 ], [ -90.22946317875072, 38.59943859594037 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11473000150", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228904118074908, 38.599646379077768 ], [ -90.228916310925939, 38.599589512375204 ], [ -90.229348203824344, 38.599643830637859 ], [ -90.229336010160011, 38.599700697410888 ], [ -90.229320333383669, 38.599773810906719 ], [ -90.228888440872865, 38.599719492542377 ], [ -90.228889094050047, 38.599716444513021 ], [ -90.228904118074908, 38.599646379077768 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11473000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228933150659003, 38.599510982760776 ], [ -90.228944183172587, 38.599459532203461 ], [ -90.229376075314306, 38.599513850389243 ], [ -90.22936504310033, 38.599565300960386 ], [ -90.229362139580374, 38.599578840967858 ], [ -90.228930247063644, 38.599524521851215 ], [ -90.228933150659003, 38.599510982760776 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11474000060", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23006977564711, 38.59865230245537 ], [ -90.230058362446826, 38.598706954874388 ], [ -90.230044180077897, 38.598774869300307 ], [ -90.230023447761141, 38.598772271236435 ], [ -90.22963299588281, 38.598723337228179 ], [ -90.229612264743736, 38.598720739121632 ], [ -90.229626442816226, 38.598652850879198 ], [ -90.229637850502129, 38.598598223697053 ], [ -90.23006977564711, 38.59865230245537 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11474000070", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22963299588281, 38.598723337228179 ], [ -90.230023447761141, 38.598772271236435 ], [ -90.230044180077897, 38.598774869300307 ], [ -90.230029997685321, 38.59884278279003 ], [ -90.23001581526232, 38.598910697183307 ], [ -90.229995082914144, 38.598908096423358 ], [ -90.229604639684354, 38.598859115495216 ], [ -90.229583909661699, 38.598856514667766 ], [ -90.229598086640763, 38.59878862733401 ], [ -90.229612264743736, 38.598720739121632 ], [ -90.22963299588281, 38.598723337228179 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11474000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229097496110043, 38.598723768888284 ], [ -90.229103132931996, 38.598696780396075 ], [ -90.229534873561519, 38.598751745355791 ], [ -90.229528980888588, 38.598779962106704 ], [ -90.229514803863196, 38.598847845834818 ], [ -90.229494094910578, 38.598845138745389 ], [ -90.229104068524265, 38.598794164310206 ], [ -90.2290833595995, 38.598791458054336 ], [ -90.229097496110043, 38.598723768888284 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11474000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229210589558846, 38.598182251847888 ], [ -90.229221013210292, 38.598132338608487 ], [ -90.229652819502135, 38.598186978058735 ], [ -90.22964239614123, 38.598236891364635 ], [ -90.229621668672152, 38.598234268939294 ], [ -90.229231315846235, 38.598184874370745 ], [ -90.229210589558846, 38.598182251847888 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11474000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229664007327855, 38.598133403506822 ], [ -90.229656571775195, 38.598169007637985 ], [ -90.229652819502135, 38.598186978058735 ], [ -90.229221013210292, 38.598132338608487 ], [ -90.229224725827137, 38.598114562658651 ], [ -90.229232201348026, 38.598078764070976 ], [ -90.229664007327855, 38.598133403506822 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11474000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229268548905324, 38.597904724531936 ], [ -90.229700519863741, 38.597958567841538 ], [ -90.229684925261012, 38.598033240127329 ], [ -90.229664193157163, 38.598030645624874 ], [ -90.229521770699947, 38.598012820833006 ], [ -90.229520639165031, 38.59801824068068 ], [ -90.229418704464138, 38.598005483642694 ], [ -90.229419836006528, 38.598000063796036 ], [ -90.229273730367098, 38.597981777968997 ], [ -90.229252998293376, 38.59797918336632 ], [ -90.229268548905324, 38.597904724531936 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11474000265", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229487973954519, 38.597528926821319 ], [ -90.22955795190002, 38.597537649026229 ], [ -90.229554556174449, 38.597553907717746 ], [ -90.229490608588719, 38.597860114771578 ], [ -90.229487212832439, 38.597876373432705 ], [ -90.229417788784573, 38.597867720010569 ], [ -90.229421158165877, 38.597851457693572 ], [ -90.229484604600273, 38.597545189141243 ], [ -90.229487973954519, 38.597528926821319 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11474000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229989919731821, 38.597591491261319 ], [ -90.230076313152068, 38.597602258962013 ], [ -90.23014576685901, 38.597610915658926 ], [ -90.230162707735857, 38.597613028413946 ], [ -90.230159312143016, 38.597629287095813 ], [ -90.230095368209646, 38.597935492702803 ], [ -90.23009197258601, 38.597951751381743 ], [ -90.23004877566386, 38.59794636755845 ], [ -90.23000557760065, 38.597940983689142 ], [ -90.229919183789207, 38.597930215935435 ], [ -90.229922579454197, 38.597913956327986 ], [ -90.229986524101079, 38.597607749938113 ], [ -90.229989919731821, 38.597591491261319 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11474008151", "numunits (2020)": 2, "numunits (2018)": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229534873561519, 38.598751745355791 ], [ -90.229103132931996, 38.598696780396075 ], [ -90.229125770208455, 38.598588389644959 ], [ -90.229146484919696, 38.598591067980685 ], [ -90.229536620119433, 38.59864151637958 ], [ -90.229557334865049, 38.598644194670143 ], [ -90.229534873561519, 38.598751745355791 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11475000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23086585005079, 38.598320944564925 ], [ -90.230880056088651, 38.598252914813628 ], [ -90.230900783626922, 38.598255532512965 ], [ -90.231291155575832, 38.598304828773188 ], [ -90.231311885439737, 38.598307446405052 ], [ -90.231297662270762, 38.598375558162644 ], [ -90.231276934700062, 38.598372936936357 ], [ -90.230886576443396, 38.598323565888769 ], [ -90.23086585005079, 38.598320944564925 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11475000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230709581821358, 38.599069267319024 ], [ -90.230723788161725, 38.599001237596326 ], [ -90.230744508858336, 38.59900389855585 ], [ -90.231134715271537, 38.599054006651237 ], [ -90.231155435998886, 38.599056667538093 ], [ -90.231141212530005, 38.599124778388301 ], [ -90.231120494096032, 38.599122113879574 ], [ -90.230730301375743, 38.599071931903048 ], [ -90.230709581821358, 38.599069267319024 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11475000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230695376608324, 38.599137296163043 ], [ -90.230709581821358, 38.599069267319024 ], [ -90.230730301375743, 38.599071931903048 ], [ -90.231120494096032, 38.599122113879574 ], [ -90.231141212530005, 38.599124778388301 ], [ -90.231126990185146, 38.599192889211096 ], [ -90.23110627174546, 38.599190221130144 ], [ -90.230716095017058, 38.599139964344111 ], [ -90.230695376608324, 38.599137296163043 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11475000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230237266300634, 38.598869002598384 ], [ -90.230247294251726, 38.598820982912045 ], [ -90.230678921961143, 38.598876495652185 ], [ -90.230668928187427, 38.598924352400978 ], [ -90.230657419541714, 38.598979466823486 ], [ -90.230225791229813, 38.598923954909061 ], [ -90.230237266300634, 38.598869002598384 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11475000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230251453171562, 38.598801068362199 ], [ -90.230263704347493, 38.598742399852952 ], [ -90.230695332747473, 38.598797912534302 ], [ -90.230683132191132, 38.598856336158676 ], [ -90.230678921961143, 38.598876495652185 ], [ -90.230247294251726, 38.598820982912045 ], [ -90.230251453171562, 38.598801068362199 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11475000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230393320417164, 38.598121722287907 ], [ -90.230408925995178, 38.598046994053668 ], [ -90.230840789973172, 38.598101355403472 ], [ -90.23082516612827, 38.598176173746971 ], [ -90.230804438602348, 38.59817356053756 ], [ -90.230414049064066, 38.598124335572692 ], [ -90.230393320417164, 38.598121722287907 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11475000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230548076598154, 38.598008889287208 ], [ -90.230618808513285, 38.597670166915748 ], [ -90.23069827116899, 38.597680169650388 ], [ -90.230694875693587, 38.597696428348044 ], [ -90.230630933975462, 38.598002633345793 ], [ -90.230627538469278, 38.5980188920405 ], [ -90.230548076598154, 38.598008889287208 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11475000370", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230953991266261, 38.597729044891338 ], [ -90.230957386684864, 38.597712786186044 ], [ -90.23104375934146, 38.597723658541057 ], [ -90.231088672584235, 38.597729311702096 ], [ -90.231017941667901, 38.598068034331597 ], [ -90.230973028219964, 38.598062381143045 ], [ -90.230886656316486, 38.598051508737697 ], [ -90.230890051765854, 38.598035250035359 ], [ -90.230953991266261, 38.597729044891338 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11476000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231863266851718, 38.599147900723878 ], [ -90.231877509522249, 38.599079691662489 ], [ -90.231898226812021, 38.599082360510479 ], [ -90.231905132190718, 38.599083250124778 ], [ -90.232281495177773, 38.599131739958686 ], [ -90.232288400569558, 38.599132629550411 ], [ -90.232309121329891, 38.599135299239705 ], [ -90.232294866214175, 38.599203566016897 ], [ -90.232274147740227, 38.59920089361183 ], [ -90.232267242348954, 38.599200003113111 ], [ -90.231890889532266, 38.599151463720311 ], [ -90.231883984147061, 38.599150573198983 ], [ -90.231863266851718, 38.599147900723878 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11476000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231376844714745, 38.599015184223425 ], [ -90.231391073801333, 38.598947040020356 ], [ -90.231411791040983, 38.598949706263333 ], [ -90.231801975400018, 38.598999926506593 ], [ -90.231822693818316, 38.599002593585681 ], [ -90.231808453443932, 38.599070793639839 ], [ -90.231787735013199, 38.599068124773368 ], [ -90.231397560819204, 38.599017853157335 ], [ -90.231376844714745, 38.599015184223425 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11476000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231391073801333, 38.598947040020356 ], [ -90.231405304008121, 38.598878894938622 ], [ -90.231426021242257, 38.598881558488067 ], [ -90.231816215759665, 38.598931729143359 ], [ -90.23183693416874, 38.598934392622738 ], [ -90.231822693818316, 38.599002593585681 ], [ -90.231801975400018, 38.598999926506593 ], [ -90.231411791040983, 38.598949706263333 ], [ -90.231391073801333, 38.598947040020356 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11476000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231433763192499, 38.598742606577012 ], [ -90.231447995653056, 38.598674450673855 ], [ -90.231468722195999, 38.598677065579317 ], [ -90.231858937842048, 38.598727129846267 ], [ -90.231879657358633, 38.598729789696023 ], [ -90.231865415938842, 38.598797990691644 ], [ -90.231844696396578, 38.598795332624164 ], [ -90.231454481552944, 38.598745264687075 ], [ -90.231433763192499, 38.598742606577012 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11476000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231504910098607, 38.598401883786202 ], [ -90.23151913893966, 38.598333739587126 ], [ -90.231539860692706, 38.59833638148892 ], [ -90.231930136507998, 38.598386143852501 ], [ -90.231950860583595, 38.598388786593006 ], [ -90.231936620455045, 38.598456986670705 ], [ -90.231915896370367, 38.598454341236668 ], [ -90.231525630712895, 38.598404528406398 ], [ -90.231504910098607, 38.598401883786202 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11476000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231681225399967, 38.598151820796517 ], [ -90.231684620675139, 38.598135562070809 ], [ -90.231685752049344, 38.598130142201747 ], [ -90.231747426674119, 38.597834776358937 ], [ -90.23174855803542, 38.597829357395128 ], [ -90.231751953283293, 38.597813098666471 ], [ -90.231838301653852, 38.59782408386863 ], [ -90.23183490642505, 38.597840343505993 ], [ -90.231833775066434, 38.597845762498096 ], [ -90.231772100785648, 38.598141128359607 ], [ -90.231770969420992, 38.598146547350822 ], [ -90.231767574164749, 38.598162806079095 ], [ -90.231681225399967, 38.598151820796517 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11477000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23272037207434, 38.598184572992267 ], [ -90.232770868723122, 38.597942725654782 ], [ -90.232875745204055, 38.597956067524272 ], [ -90.232872350205994, 38.597972326286005 ], [ -90.232825250048407, 38.598197914910273 ], [ -90.23274109614519, 38.598187209277242 ], [ -90.23272037207434, 38.598184572992267 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11477000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233007288227256, 38.598320521822018 ], [ -90.233010683211731, 38.598304263057258 ], [ -90.233027514407581, 38.598223646323568 ], [ -90.233074613953391, 38.597998057644197 ], [ -90.233078008910425, 38.59798179797037 ], [ -90.233174720275429, 38.597994101219996 ], [ -90.233171325342937, 38.598010359990532 ], [ -90.233107393852848, 38.598316565454567 ], [ -90.233103998889476, 38.598332824249617 ], [ -90.233007288227256, 38.598320521822018 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11477000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233103998889476, 38.598332824249617 ], [ -90.233107393852848, 38.598316565454567 ], [ -90.233171325342937, 38.598010359990532 ], [ -90.233174720275429, 38.597994101219996 ], [ -90.233286973849289, 38.598008381082522 ], [ -90.233283578941396, 38.598024639856355 ], [ -90.233219647914765, 38.598330845382606 ], [ -90.233216252975978, 38.598347104180931 ], [ -90.233103998889476, 38.598332824249617 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11478060070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233786820161754, 38.598680979802211 ], [ -90.233799440123491, 38.598620513587349 ], [ -90.23380093867695, 38.598613232356271 ], [ -90.23423260379397, 38.598668663622007 ], [ -90.23423121317515, 38.598675326172177 ], [ -90.234218465017591, 38.598736409261747 ], [ -90.233786820161754, 38.598680979802211 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11478060130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234220792724642, 38.598472467052503 ], [ -90.234291168213375, 38.598133701131893 ], [ -90.234377516981382, 38.598144788971474 ], [ -90.234307046647231, 38.598483543937959 ], [ -90.234220792724642, 38.598472467052503 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11480000030", "numunits (2020)": 1, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235366955100929, 38.599213781963407 ], [ -90.235372016264762, 38.599189436880401 ], [ -90.235803755387664, 38.599244429183791 ], [ -90.235798709562602, 38.599268699548503 ], [ -90.235784626069034, 38.599336451812093 ], [ -90.235770541400967, 38.599404204070552 ], [ -90.235338714858855, 38.599349630365708 ], [ -90.235352834993321, 38.599281706179575 ], [ -90.235366955100929, 38.599213781963407 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11485000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240854175430144, 38.599706914652145 ], [ -90.240924889154599, 38.599361520385784 ], [ -90.241038882722791, 38.599375973238843 ], [ -90.240968171899326, 38.599721346848554 ], [ -90.240854175430144, 38.599706914652145 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11485000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.24108289022189, 38.599339830047072 ], [ -90.241153598934915, 38.598994464413089 ], [ -90.24126758615084, 38.599008938640026 ], [ -90.241196883784966, 38.599354282718828 ], [ -90.24108289022189, 38.599339830047072 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11485000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241766847704611, 38.599426546298268 ], [ -90.241837526372606, 38.599081307212671 ], [ -90.241951515014591, 38.599095780776722 ], [ -90.24188084039821, 38.599440999208127 ], [ -90.241766847704611, 38.599426546298268 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11485000280", "numunits (2020)": 5, "numunits (2018)": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.242225410937891, 38.599484683707814 ], [ -90.242296069945638, 38.599139529893407 ], [ -90.242410057626472, 38.599154003008778 ], [ -90.242639724522832, 38.599183163414338 ], [ -90.24258699576221, 38.599530525156013 ], [ -90.242339403817809, 38.599499136171445 ], [ -90.242225410937891, 38.599484683707814 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11486000230", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238770572120416, 38.59904922233595 ], [ -90.238841615144608, 38.598703596684459 ], [ -90.238927967353376, 38.598714434343869 ], [ -90.238855636146155, 38.599059888723318 ], [ -90.238770572120416, 38.59904922233595 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11486000280", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239288775609865, 38.599114200098839 ], [ -90.239359731087546, 38.598768622597333 ], [ -90.239446083454226, 38.59877945987482 ], [ -90.23937393273367, 38.599124878041103 ], [ -90.239288775609865, 38.599114200098839 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11486000381", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240424057646365, 38.599256546311977 ], [ -90.240495527171376, 38.598911162956391 ], [ -90.240568673499354, 38.598920342357324 ], [ -90.240497919229341, 38.599265806611285 ], [ -90.240424057646365, 38.599256546311977 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11487000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240477555221631, 38.598742060311025 ], [ -90.240548575095218, 38.598396039861619 ], [ -90.240673046582955, 38.598411590952566 ], [ -90.240618659536352, 38.598676036476519 ], [ -90.240601867541187, 38.598757661568612 ], [ -90.240477555221631, 38.598742060311025 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11487000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239168611222354, 38.598577788168349 ], [ -90.239239519830093, 38.598232483548969 ], [ -90.239343148057543, 38.598245431299766 ], [ -90.239272230543023, 38.598590792692733 ], [ -90.239168611222354, 38.598577788168349 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11487000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239541228211891, 38.598228472378295 ], [ -90.239612361322756, 38.597883032908257 ], [ -90.239716001942853, 38.597895924477086 ], [ -90.239645060736322, 38.598241446428219 ], [ -90.239541228211891, 38.598228472378295 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11487000350", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240163202680151, 38.598306184173808 ], [ -90.240234211356224, 38.597960381864866 ], [ -90.240337853352983, 38.597973272886108 ], [ -90.24026683118413, 38.598319131079982 ], [ -90.240163202680151, 38.598306184173808 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11488000010", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.24240512368273, 38.598986479661313 ], [ -90.242476184863335, 38.598640193264877 ], [ -90.242527609058527, 38.598646718465226 ], [ -90.24271704157394, 38.598670754619093 ], [ -90.242694577037255, 38.598821803755222 ], [ -90.242664698047136, 38.599019437041875 ], [ -90.24240512368273, 38.598986479661313 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11488000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.242256567711266, 38.598570603671057 ], [ -90.242327608467207, 38.598224332618301 ], [ -90.242441599370139, 38.598238786791185 ], [ -90.242370556815715, 38.598585066915575 ], [ -90.242256567711266, 38.598570603671057 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11488000280", "numunits (2020)": 5, "numunits (2018)": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.242484545966789, 38.598599530955319 ], [ -90.242555590315874, 38.59825324085314 ], [ -90.242777761550073, 38.598281411637274 ], [ -90.242724365224674, 38.598629960276924 ], [ -90.242484545966789, 38.598599530955319 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11489000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241448894197347, 38.597946013347702 ], [ -90.241519297134104, 38.597599237747936 ], [ -90.241633299742631, 38.597613627875411 ], [ -90.241562884475954, 38.597960468375092 ], [ -90.241448894197347, 38.597946013347702 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11489000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241288424666294, 38.597528376550486 ], [ -90.241358817138959, 38.597181736154383 ], [ -90.241472441781937, 38.597196011184565 ], [ -90.241402007137154, 38.59754271462981 ], [ -90.241288424666294, 38.597528376550486 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11489000300", "numunits (2020)": 2, "numunits (2018)": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.242596714905616, 38.597862556858026 ], [ -90.24262259258974, 38.597738498645178 ], [ -90.242659327563132, 38.597743135792811 ], [ -90.242851082968286, 38.59776733896274 ], [ -90.24280244756369, 38.598117650338935 ], [ -90.242588799078959, 38.598090559536601 ], [ -90.242571737363065, 38.598088396060461 ], [ -90.24261225961726, 38.597864527787372 ], [ -90.242596714905616, 38.597862556858026 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11490000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.24068197530174, 38.597849262781487 ], [ -90.240752279873789, 38.597502747792916 ], [ -90.240855976291328, 38.597515671811159 ], [ -90.240785628695008, 38.597862155243796 ], [ -90.24068197530174, 38.597849262781487 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11490000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.24026741030184, 38.597797698464802 ], [ -90.240337493442809, 38.59745104901473 ], [ -90.240441189709571, 38.59746397340011 ], [ -90.240371070427628, 38.597810592215254 ], [ -90.24026741030184, 38.597797698464802 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11490000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239749123998948, 38.597733231140587 ], [ -90.239819010385787, 38.597386424799765 ], [ -90.239922707611754, 38.597399349646629 ], [ -90.239852750666515, 38.597746119866528 ], [ -90.239749123998948, 38.597733231140587 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11490000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239541792758928, 38.597707441543214 ], [ -90.239611618342266, 38.597360574835804 ], [ -90.239715314345162, 38.597373499863671 ], [ -90.23964546753848, 38.597720337753607 ], [ -90.239541792758928, 38.597707441543214 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11490000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239896141295915, 38.597354333674843 ], [ -90.239966288151876, 38.59700757824158 ], [ -90.240070034100839, 38.597020536401367 ], [ -90.240000059949935, 38.597367285990529 ], [ -90.239896141295915, 38.597354333674843 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11491000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240863900701839, 38.596952857576021 ], [ -90.2409343028135, 38.596607139916976 ], [ -90.241038145899353, 38.596620109158138 ], [ -90.240967677722622, 38.596965818605938 ], [ -90.240863900701839, 38.596952857576021 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11491000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.24073544216327, 38.59654059677046 ], [ -90.240805911022363, 38.596194888346105 ], [ -90.240909574492235, 38.596207835667592 ], [ -90.240839106113384, 38.596553544155235 ], [ -90.24073544216327, 38.59654059677046 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11492000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240839084886304, 38.596032203771379 ], [ -90.240909604376853, 38.595686500747348 ], [ -90.241013267135401, 38.595699447975704 ], [ -90.240942748128305, 38.596045150156904 ], [ -90.240839084886304, 38.596032203771379 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11492000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240631756220111, 38.596006309786439 ], [ -90.240702276677951, 38.595660606916546 ], [ -90.240805940505155, 38.595673554330894 ], [ -90.240735420534165, 38.596019256385432 ], [ -90.240631756220111, 38.596006309786439 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11493000080", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239242629181064, 38.59542737491703 ], [ -90.239311453120251, 38.595088412256764 ], [ -90.239397925151735, 38.595099221910715 ], [ -90.239329101611446, 38.595438183716411 ], [ -90.239242629181064, 38.59542737491703 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11494000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241979342716434, 38.596174860296401 ], [ -90.242049676579867, 38.595829179602759 ], [ -90.242153311061713, 38.59584212306838 ], [ -90.24208300868878, 38.596187801174729 ], [ -90.241979342716434, 38.596174860296401 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11494000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241461014552769, 38.596110160819343 ], [ -90.241531501282836, 38.595764460946825 ], [ -90.24163513672373, 38.595777404873346 ], [ -90.241564679191796, 38.596123100341508 ], [ -90.241461014552769, 38.596110160819343 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11494000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.242808668075554, 38.596278391996293 ], [ -90.242834790224094, 38.596149564927288 ], [ -90.243094118998442, 38.596181946979485 ], [ -90.243074245113093, 38.596311568813256 ], [ -90.242808668075554, 38.596278391996293 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11495000013", "numunits (2020)": 25, "numunits (2018)": 13 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.242075214673008, 38.596708414531129 ], [ -90.242096867861477, 38.596602180283938 ], [ -90.242476918188643, 38.596649925643725 ], [ -90.242455293584115, 38.596756023057026 ], [ -90.242447003828062, 38.59679669454033 ], [ -90.242376475627722, 38.597142730862863 ], [ -90.241996423917271, 38.597094986081053 ], [ -90.242066924708269, 38.596749085987156 ], [ -90.242075214673008, 38.596708414531129 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11495000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241313244771007, 38.597008910698413 ], [ -90.241313714724043, 38.597006545105145 ], [ -90.241383648260864, 38.596663504489975 ], [ -90.241497673883032, 38.596677778593289 ], [ -90.241427491019323, 38.597021348443704 ], [ -90.241427211341772, 38.597023474819395 ], [ -90.241313244771007, 38.597008910698413 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11495000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241253730665633, 38.596605511110013 ], [ -90.241323935111566, 38.596262120668882 ], [ -90.241324176077583, 38.596259904992948 ], [ -90.241427820228992, 38.596272849121931 ], [ -90.241426923099468, 38.596275256118396 ], [ -90.241357387783282, 38.596618495859516 ], [ -90.241253730665633, 38.596605511110013 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11495000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241531036279682, 38.596287705686095 ], [ -90.241531505728588, 38.596285798632088 ], [ -90.241600615258818, 38.596294430668905 ], [ -90.241635169456274, 38.596298746217649 ], [ -90.241634931374136, 38.596301442958655 ], [ -90.24156470212904, 38.5966444659621 ], [ -90.241530150110748, 38.596640137793578 ], [ -90.24146104493569, 38.596631481395995 ], [ -90.24153069941481, 38.596290095929525 ], [ -90.241531036279682, 38.596287705686095 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11495000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.241772021284604, 38.596670417722244 ], [ -90.241842239567816, 38.596326658526323 ], [ -90.241842499326992, 38.596324640212572 ], [ -90.241946164322343, 38.596337586619342 ], [ -90.24187567508416, 38.596683420018735 ], [ -90.241772021284604, 38.596670417722244 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11496050030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238177826640154, 38.59691983418594 ], [ -90.238257059972725, 38.596865799517623 ], [ -90.238588042225217, 38.5971646995241 ], [ -90.238582706449975, 38.59719135673285 ], [ -90.238461763637886, 38.597176249107342 ], [ -90.238177826640154, 38.59691983418594 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11497000080", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238376814824747, 38.596014032984904 ], [ -90.238385710704677, 38.595971114500614 ], [ -90.238819886364496, 38.596025708333102 ], [ -90.238811191985818, 38.596068527291543 ], [ -90.238807323401375, 38.596087578853556 ], [ -90.238797427506043, 38.596136319384847 ], [ -90.238362769973719, 38.596081790188975 ], [ -90.238376814824747, 38.596014032984904 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11497000100", "numunits (2020)": 3, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238347958640063, 38.596153248340393 ], [ -90.238349531264589, 38.596145659119863 ], [ -90.238722995701082, 38.596193332618242 ], [ -90.238702300880121, 38.596207151350903 ], [ -90.238634738863979, 38.596252266397165 ], [ -90.23855509746177, 38.596305446383639 ], [ -90.238486572095539, 38.596351203338948 ], [ -90.238459922101853, 38.59636899882257 ], [ -90.238275580182176, 38.596202646118435 ], [ -90.238301983011652, 38.596184626717758 ], [ -90.238347958640063, 38.596153248340393 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11497000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23795571870788, 38.595565759186236 ], [ -90.237960096651435, 38.595544635834898 ], [ -90.237969844476936, 38.595497607616771 ], [ -90.238401728299493, 38.595551790671784 ], [ -90.23839198074819, 38.595598819832496 ], [ -90.238387602924206, 38.595619943200226 ], [ -90.23795571870788, 38.595565759186236 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11497000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238148747849564, 38.595290226516397 ], [ -90.238218159678468, 38.594951337887245 ], [ -90.238256921681113, 38.594956200715117 ], [ -90.238292539769844, 38.594960669190364 ], [ -90.238222625709767, 38.595299495510879 ], [ -90.238148747849564, 38.595290226516397 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11497000315", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238568443788878, 38.59534288093807 ], [ -90.238637839933233, 38.595003989307436 ], [ -90.238724164752284, 38.595014819836038 ], [ -90.238654898662418, 38.595353727129137 ], [ -90.238568443788878, 38.59534288093807 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11497000316", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238654898662418, 38.595353727129137 ], [ -90.238724164752284, 38.595014819836038 ], [ -90.23881048959727, 38.595025649422389 ], [ -90.238741353562176, 38.595364573283867 ], [ -90.238654898662418, 38.595353727129137 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11497000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238741353562176, 38.595364573283867 ], [ -90.23881048959727, 38.595025649422389 ], [ -90.238896814472085, 38.595036478945104 ], [ -90.238827807340826, 38.595375419344791 ], [ -90.238741353562176, 38.595364573283867 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11498000010", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237344992970662, 38.595348327150745 ], [ -90.237349229131667, 38.595328042246805 ], [ -90.237366163966342, 38.595246753009029 ], [ -90.237797774718899, 38.595301623257107 ], [ -90.237780951624913, 38.595382935322995 ], [ -90.237776728065725, 38.595403259921738 ], [ -90.237344992970662, 38.595348327150745 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11498000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236928894302579, 38.596459719797984 ], [ -90.236999630177266, 38.59612102228445 ], [ -90.237109803545025, 38.59613474159498 ], [ -90.237101314635794, 38.596175387926159 ], [ -90.237135873142535, 38.596179691302815 ], [ -90.23707362566833, 38.596477742541339 ], [ -90.236928894302579, 38.596459719797984 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11498000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237170699534005, 38.595166198917546 ], [ -90.237241624673274, 38.594827501631478 ], [ -90.23732794277042, 38.594838485436199 ], [ -90.237257110965771, 38.595177193802009 ], [ -90.237170699534005, 38.595166198917546 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11498000310", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237689173123499, 38.595232169969528 ], [ -90.237759529075305, 38.5948934008047 ], [ -90.237879234582977, 38.594908631639335 ], [ -90.237809009978477, 38.595247418275996 ], [ -90.237689173123499, 38.595232169969528 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11499000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236801762195142, 38.596610704711559 ], [ -90.236906329859494, 38.596623726058688 ], [ -90.236842118119526, 38.596941295074465 ], [ -90.236737753101124, 38.596928299331616 ], [ -90.236801762195142, 38.596610704711559 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11500000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238218646560782, 38.598458630677598 ], [ -90.238289437467472, 38.598113765140731 ], [ -90.238393098544421, 38.598126739892045 ], [ -90.238322308120075, 38.598471605519983 ], [ -90.238218646560782, 38.598458630677598 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11500000200", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237394449529418, 38.597758894454962 ], [ -90.237671478671331, 38.597504505966427 ], [ -90.237686281103095, 38.597516096530519 ], [ -90.237696856122497, 38.597524045271605 ], [ -90.237727291487403, 38.597545508446728 ], [ -90.237733355366075, 38.597549550765748 ], [ -90.23776027612773, 38.597566627189785 ], [ -90.237788036727949, 38.597582854396649 ], [ -90.23753854040919, 38.597888905854823 ], [ -90.237442096446159, 38.597801886010565 ], [ -90.237394449529418, 38.597758894454962 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11500000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237641990767102, 38.597982247485469 ], [ -90.237870420987747, 38.597623807976284 ], [ -90.237899519459702, 38.597635988695323 ], [ -90.237929182336444, 38.59764729998107 ], [ -90.237959367454977, 38.597657725755461 ], [ -90.237796409961078, 38.598010344022448 ], [ -90.237653272948265, 38.597992427523792 ], [ -90.237641990767102, 38.597982247485469 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11501000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235184131274139, 38.597600621553298 ], [ -90.235188871773587, 38.597578244190004 ], [ -90.23562315053141, 38.597631734770268 ], [ -90.235618444583963, 38.597654116732123 ], [ -90.235602736645632, 38.597728828335264 ], [ -90.235168290619171, 38.597675403946063 ], [ -90.235184131274139, 38.597600621553298 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11501000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235284932459066, 38.597124735843295 ], [ -90.235299332518949, 38.597056752791417 ], [ -90.235732685654824, 38.597110760711978 ], [ -90.235718405615543, 38.597178680106957 ], [ -90.23570412555236, 38.597246599526784 ], [ -90.235270532371956, 38.597192719771215 ], [ -90.235284932459066, 38.597124735843295 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11501000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235328131408011, 38.596920784892262 ], [ -90.235342531385044, 38.596852800953755 ], [ -90.235775525608958, 38.596907001605253 ], [ -90.235761245651474, 38.596974921008048 ], [ -90.235328131408011, 38.596920784892262 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11502000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236183774363226, 38.595304386380441 ], [ -90.236197938678941, 38.595237125201017 ], [ -90.236629919231987, 38.595291372675135 ], [ -90.236615763272795, 38.595358653750985 ], [ -90.236183774363226, 38.595304386380441 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11502000180", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235498741108216, 38.596114132678998 ], [ -90.235499689723895, 38.596109630376134 ], [ -90.235931791042503, 38.596164157265818 ], [ -90.235930842453087, 38.596168659572214 ], [ -90.235916696395236, 38.596235829776859 ], [ -90.235910239593792, 38.596266490620472 ], [ -90.235478125120579, 38.596211944702453 ], [ -90.235484586694767, 38.596181283893323 ], [ -90.235498741108216, 38.596114132678998 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11502000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235583667007333, 38.595711229018498 ], [ -90.235597820082603, 38.595644077783597 ], [ -90.236029859504384, 38.595698465421549 ], [ -90.236015714781388, 38.595765636552869 ], [ -90.235583667007333, 38.595711229018498 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11502000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235626128451941, 38.595509776217412 ], [ -90.235640282591277, 38.595442625911005 ], [ -90.236072295801591, 38.595496953884577 ], [ -90.236058150011161, 38.595564124993565 ], [ -90.235626128451941, 38.595509776217412 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11502000280", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235654436710817, 38.595375474668444 ], [ -90.235668590800316, 38.595308324329444 ], [ -90.236100586151423, 38.595362612535055 ], [ -90.236086440414425, 38.595429783649166 ], [ -90.235654436710817, 38.595375474668444 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11502000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235668590800316, 38.595308324329444 ], [ -90.235682743715273, 38.595241173079131 ], [ -90.236114730710852, 38.5952954422945 ], [ -90.236100586151423, 38.595362612535055 ], [ -90.235668590800316, 38.595308324329444 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11502000380", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236310947280103, 38.595057613110846 ], [ -90.236382250410699, 38.594718961319003 ], [ -90.236447196016954, 38.594727111383598 ], [ -90.236505099994318, 38.5947343780796 ], [ -90.236433810045554, 38.595073031787955 ], [ -90.236375905807293, 38.595065765056169 ], [ -90.236310947280103, 38.595057613110846 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11502000390", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236433810045554, 38.595073031787955 ], [ -90.236505099994318, 38.5947343780796 ], [ -90.236533574092704, 38.594737950868989 ], [ -90.236596566842323, 38.594745856864009 ], [ -90.236619951040382, 38.59474879119427 ], [ -90.236740879965751, 38.59476396645789 ], [ -90.2366696301074, 38.595102624902538 ], [ -90.236548684566031, 38.595087447715962 ], [ -90.236462295747259, 38.595076606432933 ], [ -90.236433810045554, 38.595073031787955 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23493271000622, 38.59577094497125 ], [ -90.234946937287589, 38.595703448958723 ], [ -90.235361484728884, 38.5957557861406 ], [ -90.235347262494557, 38.595823260576857 ], [ -90.23493271000622, 38.59577094497125 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234918482704671, 38.595838440075042 ], [ -90.23493271000622, 38.59577094497125 ], [ -90.235347262494557, 38.595823260576857 ], [ -90.235333039085489, 38.595890735035425 ], [ -90.234918482704671, 38.595838440075042 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234904255372541, 38.595905935203668 ], [ -90.234918482704671, 38.595838440075042 ], [ -90.235333039085489, 38.595890735035425 ], [ -90.235318816800614, 38.595958209493965 ], [ -90.234904255372541, 38.595905935203668 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234350363440797, 38.596135255964299 ], [ -90.234362165471509, 38.5960737598771 ], [ -90.234786679324074, 38.596127223419998 ], [ -90.234773752127381, 38.59618854852107 ], [ -90.234679913287962, 38.59617673685274 ], [ -90.234350363440797, 38.596135255964299 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234392760399473, 38.595913937947294 ], [ -90.234405764794303, 38.595846049153607 ], [ -90.23483455122738, 38.595900121256093 ], [ -90.234820278261779, 38.595967827075171 ], [ -90.234392760399473, 38.595913937947294 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234405764794303, 38.595846049153607 ], [ -90.234418770311947, 38.595778160360204 ], [ -90.234848823018041, 38.595832415459256 ], [ -90.23483455122738, 38.595900121256093 ], [ -90.234405764794303, 38.595846049153607 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23444478012506, 38.595642382736386 ], [ -90.234457785571479, 38.595574493029901 ], [ -90.234891638230593, 38.595629297092039 ], [ -90.234877366521332, 38.595697002924155 ], [ -90.23444478012506, 38.595642382736386 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234470790989661, 38.595506604227253 ], [ -90.234483795235363, 38.595438715419704 ], [ -90.23492018156756, 38.595493885447446 ], [ -90.234905909912726, 38.595561591257322 ], [ -90.234470790989661, 38.595506604227253 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234483795235363, 38.595438715419704 ], [ -90.234496800603864, 38.595370826612417 ], [ -90.234934453198576, 38.595426178728829 ], [ -90.23492018156756, 38.595493885447446 ], [ -90.234483795235363, 38.595438715419704 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000370", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234535815412642, 38.595167160146701 ], [ -90.234548819537409, 38.59509927042145 ], [ -90.234991540585611, 38.595155355373031 ], [ -90.234977269066462, 38.5952230612234 ], [ -90.234535815412642, 38.595167160146701 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000400", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234574828849929, 38.59496349275144 ], [ -90.234587834044433, 38.594895603928009 ], [ -90.235034354983128, 38.594952236955031 ], [ -90.235020083545606, 38.595019942785761 ], [ -90.234574828849929, 38.59496349275144 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000410", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234598238641894, 38.594841292868644 ], [ -90.234663261853626, 38.594501846862606 ], [ -90.234722076215959, 38.594509306568654 ], [ -90.234780890587103, 38.594516766245192 ], [ -90.234825446278862, 38.59452241719378 ], [ -90.23475932460326, 38.594861723871553 ], [ -90.234715070473285, 38.594856111417329 ], [ -90.234598238641894, 38.594841292868644 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000420", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23475932460326, 38.594861723871553 ], [ -90.234825446278862, 38.59452241719378 ], [ -90.234870003125408, 38.594528068100523 ], [ -90.234959115688781, 38.594539370766796 ], [ -90.234892087032065, 38.594878561957628 ], [ -90.23480357874034, 38.594867336281574 ], [ -90.23475932460326, 38.594861723871553 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000430", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234892087032065, 38.594878561957628 ], [ -90.234959115688781, 38.594539370766796 ], [ -90.235048229431598, 38.59455067336782 ], [ -90.234980596499398, 38.594889787569393 ], [ -90.234892087032065, 38.594878561957628 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000440", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234980596499398, 38.594889787569393 ], [ -90.235048229431598, 38.59455067336782 ], [ -90.235137342054941, 38.594561974992359 ], [ -90.235069104847042, 38.594901013111723 ], [ -90.234980596499398, 38.594889787569393 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11503000460", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235334632356242, 38.594934689370135 ], [ -90.235404681235792, 38.594595881301622 ], [ -90.235493793969113, 38.594607183561166 ], [ -90.235600729290638, 38.594620745623018 ], [ -90.235545795298819, 38.594881368845876 ], [ -90.235529351463555, 38.594959385074354 ], [ -90.235423140815627, 38.59494591464501 ], [ -90.235334632356242, 38.594934689370135 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11504000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234689731379248, 38.596909795197732 ], [ -90.234703964202254, 38.596841852397027 ], [ -90.235120843178819, 38.596894669555304 ], [ -90.2351064429742, 38.596962655277586 ], [ -90.234689731379248, 38.596909795197732 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11504000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23464703044516, 38.597113625391408 ], [ -90.234661263349707, 38.597045682598505 ], [ -90.235077641338293, 38.597098627617818 ], [ -90.235063241054533, 38.597166613332192 ], [ -90.23464703044516, 38.597113625391408 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11504000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234429131920919, 38.597984471367731 ], [ -90.23450008768674, 38.597645780495739 ], [ -90.234586516225903, 38.597656878274343 ], [ -90.23451541397867, 38.597995550854478 ], [ -90.234429131920919, 38.597984471367731 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11504000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23425656903018, 38.597962312206263 ], [ -90.234327228400744, 38.597623582902322 ], [ -90.234413658030292, 38.597634681717174 ], [ -90.234342849886517, 38.597973391817476 ], [ -90.23425656903018, 38.597962312206263 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11505000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233922493732734, 38.597166376853842 ], [ -90.233908306775049, 38.597234116048625 ], [ -90.23345737675173, 38.597178489473251 ], [ -90.233471750009912, 38.597110772365859 ], [ -90.233922493732734, 38.597166376853842 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11505000090", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233879932778521, 38.597369594457881 ], [ -90.233865744595505, 38.597437333669767 ], [ -90.233851557529732, 38.597505072854169 ], [ -90.233717929373043, 38.597488588378276 ], [ -90.233399883455135, 38.597449354279235 ], [ -90.233414256822783, 38.597381637182409 ], [ -90.233428630163317, 38.597313920961646 ], [ -90.233879932778521, 38.597369594457881 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11505000110", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233476470779109, 38.597514394822866 ], [ -90.233563075022431, 38.597525078462532 ], [ -90.233649679288277, 38.59753576203817 ], [ -90.23357826789352, 38.597877103593468 ], [ -90.233491743210465, 38.597866210247389 ], [ -90.233405218550601, 38.597855317743559 ], [ -90.233476470779109, 38.597514394822866 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11505000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232799550134075, 38.597779065661982 ], [ -90.232870244110586, 38.597439607612856 ], [ -90.232956848171739, 38.597450291673191 ], [ -90.232886074601481, 38.597789959519282 ], [ -90.232842812366229, 38.597784512598622 ], [ -90.232799550134075, 38.597779065661982 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11505000220", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23299254513546, 38.596852341529207 ], [ -90.233443241725993, 38.596910846817437 ], [ -90.233434777613141, 38.596950721793881 ], [ -90.233416988328528, 38.597034530075014 ], [ -90.232966185013709, 38.596978917189254 ], [ -90.23298783643439, 38.59687495129252 ], [ -90.23299254513546, 38.596852341529207 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11505000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233483990884693, 38.596718864772448 ], [ -90.23347021703394, 38.59678375986136 ], [ -90.233019165778344, 38.596724515108328 ], [ -90.233032758896996, 38.596659241301275 ], [ -90.233483990884693, 38.596718864772448 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11505000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233683350984705, 38.596524519691656 ], [ -90.233596839634728, 38.596513248092407 ], [ -90.233659088963165, 38.59621486358661 ], [ -90.233745766338586, 38.596225845436969 ], [ -90.233683350984705, 38.596524519691656 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11505000350", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23401446740445, 38.596259889506442 ], [ -90.234109813674905, 38.596271969083944 ], [ -90.23406607479177, 38.596480813811283 ], [ -90.234064097711226, 38.596490251573606 ], [ -90.234046999133895, 38.596571894879013 ], [ -90.23395183297464, 38.596559119265031 ], [ -90.23401446740445, 38.596259889506442 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11506000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23434600295343, 38.595144182860054 ], [ -90.23433233792619, 38.595209435971348 ], [ -90.233881475899111, 38.595152719263574 ], [ -90.233895149250515, 38.595087495961955 ], [ -90.23434600295343, 38.595144182860054 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11506000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234318671716181, 38.59527469086246 ], [ -90.234305006635253, 38.595339943968938 ], [ -90.233854129117503, 38.595283165859598 ], [ -90.233867802522582, 38.595217942562776 ], [ -90.234318671716181, 38.59527469086246 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11506000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234234969106822, 38.595674370319095 ], [ -90.23420934576734, 38.595796720963726 ], [ -90.234077535094528, 38.595780062632393 ], [ -90.233931849924488, 38.595761651133586 ], [ -90.233758414594178, 38.595739730682205 ], [ -90.233784052247216, 38.595617436926645 ], [ -90.234234969106822, 38.595674370319095 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11506000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233415020144406, 38.594823611616349 ], [ -90.233884915631307, 38.594882601095073 ], [ -90.233879857377971, 38.594906728139073 ], [ -90.233870673270047, 38.594950539293293 ], [ -90.233400877291047, 38.594891530157746 ], [ -90.233415020144406, 38.594823611616349 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11506000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233866096926661, 38.594401127545254 ], [ -90.233954546159026, 38.594412297944572 ], [ -90.233881452941489, 38.59476240445283 ], [ -90.233793025975856, 38.594751308820328 ], [ -90.233866096926661, 38.594401127545254 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11506000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234219894026168, 38.594445807835783 ], [ -90.234308342225248, 38.59445697708675 ], [ -90.234235161090268, 38.594806784503191 ], [ -90.234146734014217, 38.594795689137619 ], [ -90.234219894026168, 38.594445807835783 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11506000280", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234485240998964, 38.594479316244751 ], [ -90.234412015328473, 38.594828974127914 ], [ -90.234235161090268, 38.594806784503191 ], [ -90.234308342225248, 38.59445697708675 ], [ -90.234317226516396, 38.594458098943946 ], [ -90.234485240998964, 38.594479316244751 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11507000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233084988287075, 38.595386960165946 ], [ -90.233057844690109, 38.595517303426675 ], [ -90.232626737461374, 38.595462874483054 ], [ -90.232653568449422, 38.595332525201457 ], [ -90.233084988287075, 38.595386960165946 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11507000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233025624249478, 38.595672025879857 ], [ -90.233003527990334, 38.595778128604671 ], [ -90.23299390622077, 38.595824329645176 ], [ -90.232563548121718, 38.595769858044349 ], [ -90.232573057638632, 38.595723663071901 ], [ -90.232594895029081, 38.59561757334906 ], [ -90.233025624249478, 38.595672025879857 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11507000210", "numunits (2020)": 10, "numunits (2018)": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232625858865546, 38.59424449443641 ], [ -90.232552428369971, 38.59459563898335 ], [ -90.232467479579967, 38.594584979067484 ], [ -90.23229758207637, 38.594563660012042 ], [ -90.232370708196896, 38.594212268979199 ], [ -90.232540586026332, 38.594233723944456 ], [ -90.232583702624297, 38.594239169739964 ], [ -90.232625858865546, 38.59424449443641 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11507008121", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232522919114544, 38.595708960853095 ], [ -90.232071131805554, 38.595651799949032 ], [ -90.232096545493022, 38.595529680804653 ], [ -90.232109535136459, 38.595467265155143 ], [ -90.232560931510577, 38.595524292585992 ], [ -90.232548074098062, 38.595586753646941 ], [ -90.232522919114544, 38.595708960853095 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11508000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232888415283227, 38.596330886261917 ], [ -90.23287147843827, 38.5964122144496 ], [ -90.23243202806016, 38.596356319907457 ], [ -90.232448952542399, 38.596275050325552 ], [ -90.232888415283227, 38.596330886261917 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11508000110", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232740216575223, 38.597042510956875 ], [ -90.232300857130127, 38.596986162092307 ], [ -90.232313551003941, 38.596925210573666 ], [ -90.232322093432842, 38.596884194460145 ], [ -90.232761388002118, 38.596940849405229 ], [ -90.23275291943942, 38.596981514378044 ], [ -90.232740216575223, 38.597042510956875 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11508000340", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232414067640292, 38.596187204302538 ], [ -90.23239714431098, 38.596268467567576 ], [ -90.232390890389581, 38.596298497142506 ], [ -90.232388693162761, 38.596309046089111 ], [ -90.231947129103986, 38.596252881854198 ], [ -90.231949369240056, 38.596241923130002 ], [ -90.231955417344452, 38.596212341737861 ], [ -90.231972026543133, 38.596131098524381 ], [ -90.232181066256089, 38.596157630622102 ], [ -90.232200778875551, 38.596160132289718 ], [ -90.232414067640292, 38.596187204302538 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11509000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231273957135443, 38.59633848866293 ], [ -90.231279553824805, 38.596311217077208 ], [ -90.231711511083603, 38.596365352901714 ], [ -90.231705936388906, 38.596392617363961 ], [ -90.231694867648045, 38.596446756358269 ], [ -90.231262842108549, 38.596392641926748 ], [ -90.231273957135443, 38.59633848866293 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11509000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230774088990913, 38.596275850707748 ], [ -90.231204853502774, 38.596329829838552 ], [ -90.231190930117563, 38.596397669319913 ], [ -90.230760158224527, 38.596343716262247 ], [ -90.230774088990913, 38.596275850707748 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11509000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230788019723818, 38.596207986056861 ], [ -90.231218776868303, 38.596261989448564 ], [ -90.231204853502774, 38.596329829838552 ], [ -90.230774088990913, 38.596275850707748 ], [ -90.230788019723818, 38.596207986056861 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11509000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230801950440252, 38.596140119618624 ], [ -90.231232700203861, 38.596194149028555 ], [ -90.231218776868303, 38.596261989448564 ], [ -90.230788019723818, 38.596207986056861 ], [ -90.230801950440252, 38.596140119618624 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11509000370", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231343569840476, 38.59599931006052 ], [ -90.231359023398909, 38.595924012862774 ], [ -90.231484340811264, 38.595939762135181 ], [ -90.2314934363866, 38.595940905421074 ], [ -90.23147777187468, 38.596016167034186 ], [ -90.231463660671437, 38.596083971881178 ], [ -90.23144954944452, 38.596151775846927 ], [ -90.231435454566139, 38.5962194978543 ], [ -90.231301820058576, 38.59620273312963 ], [ -90.231315724606588, 38.596134981870996 ], [ -90.231329646664761, 38.596067145965705 ], [ -90.231343569840476, 38.59599931006052 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11509000381", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231522486424254, 38.59616092796648 ], [ -90.231508392783482, 38.596228643697302 ], [ -90.231435454566139, 38.5962194978543 ], [ -90.23144954944452, 38.596151775846927 ], [ -90.231463660671437, 38.596083971881178 ], [ -90.23147777187468, 38.596016167034186 ], [ -90.2314934363866, 38.595940905421074 ], [ -90.231566369658765, 38.595950071948444 ], [ -90.231550707536499, 38.596025329045965 ], [ -90.231536596419971, 38.596093128519932 ], [ -90.231522486424254, 38.59616092796648 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11509000382", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231566369658765, 38.595950071948444 ], [ -90.231638923163445, 38.595959189784168 ], [ -90.231623261128078, 38.596034442388266 ], [ -90.231609151238871, 38.5961022382766 ], [ -90.231595042473913, 38.596170033231381 ], [ -90.231580950063787, 38.5962377444704 ], [ -90.231508392783482, 38.596228643697302 ], [ -90.231522486424254, 38.59616092796648 ], [ -90.231536596419971, 38.596093128519932 ], [ -90.231550707536499, 38.596025329045965 ], [ -90.231566369658765, 38.595950071948444 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232068123490464, 38.594644120071784 ], [ -90.231629119243607, 38.594587078479144 ], [ -90.231645276526194, 38.594511296364232 ], [ -90.231665422151707, 38.594500003734005 ], [ -90.231941893756655, 38.594536017135795 ], [ -90.232086694954546, 38.594554878659409 ], [ -90.232068123490464, 38.594644120071784 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232039984537025, 38.594779334661645 ], [ -90.232025915026895, 38.594846940607269 ], [ -90.231585837869844, 38.594790084694345 ], [ -90.231600265022976, 38.594722415665693 ], [ -90.232039984537025, 38.594779334661645 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231955567051628, 38.595184975678904 ], [ -90.23151370168911, 38.595128430731414 ], [ -90.231528128979477, 38.595060761716034 ], [ -90.231969636698977, 38.595117369746085 ], [ -90.231955567051628, 38.595184975678904 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231885218414433, 38.595523009780479 ], [ -90.231871147452324, 38.59559061748017 ], [ -90.231427135044967, 38.595534452012139 ], [ -90.231441563654371, 38.595466781202951 ], [ -90.231885218414433, 38.595523009780479 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230907198558924, 38.595630185086442 ], [ -90.231341831862437, 38.595684952716397 ], [ -90.231335257731658, 38.595715785099436 ], [ -90.231327287433047, 38.595753171002315 ], [ -90.23108157234239, 38.595722288610077 ], [ -90.230892950380024, 38.595698582344468 ], [ -90.230900446154308, 38.595662601708433 ], [ -90.230907198558924, 38.595630185086442 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230925848555543, 38.595540655760701 ], [ -90.231360887126485, 38.59559558013391 ], [ -90.231346456072785, 38.595663263529744 ], [ -90.231341831862437, 38.595684952716397 ], [ -90.230907198558924, 38.595630185086442 ], [ -90.230911719627173, 38.595608483049517 ], [ -90.230925848555543, 38.595540655760701 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230939978611346, 38.595472827593234 ], [ -90.231375317001834, 38.595527897611476 ], [ -90.231360887126485, 38.59559558013391 ], [ -90.230925848555543, 38.595540655760701 ], [ -90.230939978611346, 38.595472827593234 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230968237491069, 38.595337171220514 ], [ -90.23140417897207, 38.595392531712726 ], [ -90.231389748004119, 38.595460214210355 ], [ -90.230954107489168, 38.595404999393111 ], [ -90.230968237491069, 38.595337171220514 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230982366311608, 38.595269343921352 ], [ -90.231418608765026, 38.595324849182362 ], [ -90.23140417897207, 38.595392531712726 ], [ -90.230968237491069, 38.595337171220514 ], [ -90.230982366311608, 38.595269343921352 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231095402821879, 38.594726720124221 ], [ -90.231534050704113, 38.594783393495149 ], [ -90.231519621130673, 38.594851075140554 ], [ -90.231081274217061, 38.594794547416498 ], [ -90.231095402821879, 38.594726720124221 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11510000350", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231285495865407, 38.594408760982205 ], [ -90.23116490931794, 38.594393052934741 ], [ -90.231232513564677, 38.594068508259205 ], [ -90.231353188556454, 38.594083750676006 ], [ -90.231439385832118, 38.594094638568002 ], [ -90.231371629146366, 38.594419981171548 ], [ -90.231285495865407, 38.594408760982205 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000370", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231525581986517, 38.594105525460357 ], [ -90.23161177931496, 38.594116413225521 ], [ -90.231543896937197, 38.594442421417838 ], [ -90.231457762454383, 38.594431201325051 ], [ -90.231525581986517, 38.594105525460357 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000380", "numunits (2020)": 2, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231697975522138, 38.59412729999103 ], [ -90.231784174047505, 38.59413818763197 ], [ -90.231716164833287, 38.594464861383379 ], [ -90.231630030296031, 38.594453641444694 ], [ -90.231697975522138, 38.59412729999103 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000390", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231784174047505, 38.59413818763197 ], [ -90.231870371455258, 38.59414907517943 ], [ -90.231802298250003, 38.594476081283595 ], [ -90.231716164833287, 38.594464861383379 ], [ -90.231784174047505, 38.59413818763197 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11510000400", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231870371455258, 38.59414907517943 ], [ -90.23195656774152, 38.594159961782175 ], [ -90.231888431693847, 38.594487301120495 ], [ -90.231802298250003, 38.594476081283595 ], [ -90.231870371455258, 38.59414907517943 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11511000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230883718314658, 38.594721744636537 ], [ -90.230869570823984, 38.594789657450249 ], [ -90.230425645395954, 38.594734172170583 ], [ -90.230439548805165, 38.594666253413642 ], [ -90.230883718314658, 38.594721744636537 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11511000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230869570823984, 38.594789657450249 ], [ -90.230855423306167, 38.594857570288838 ], [ -90.230411741956885, 38.594802091803679 ], [ -90.230425645395954, 38.594734172170583 ], [ -90.230869570823984, 38.594789657450249 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11511000150", "numunits (2020)": 3, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230328317318367, 38.595209610475017 ], [ -90.23077053877681, 38.595265049877291 ], [ -90.230756392217614, 38.595332963606566 ], [ -90.230746072461258, 38.595382501576587 ], [ -90.23074224448375, 38.595400876397008 ], [ -90.23065562897952, 38.595390008671551 ], [ -90.230569014645866, 38.595379140884667 ], [ -90.230482399191061, 38.595368273031134 ], [ -90.230395783766255, 38.59535740511356 ], [ -90.230300508890792, 38.595345450606857 ], [ -90.230314413693378, 38.595277530090435 ], [ -90.230328317318367, 38.595209610475017 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11511000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229780224248614, 38.595419442066692 ], [ -90.230220876550206, 38.595474781742972 ], [ -90.230206972778134, 38.595542699557214 ], [ -90.230193068986225, 38.595610615556659 ], [ -90.229944766330007, 38.595579405926202 ], [ -90.229751903161315, 38.595555164648374 ], [ -90.229766063139508, 38.595487304263642 ], [ -90.229780224248614, 38.595419442066692 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11511000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229865185711276, 38.595012275080649 ], [ -90.230304298611188, 38.59506727848396 ], [ -90.230290394998491, 38.595135196313358 ], [ -90.229851025915337, 38.595080136389619 ], [ -90.229865185711276, 38.595012275080649 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11512000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230483183074014, 38.596657097786085 ], [ -90.230469249625997, 38.596724973180329 ], [ -90.230036264816775, 38.596669010607521 ], [ -90.23005028083584, 38.596601263359354 ], [ -90.230483183074014, 38.596657097786085 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11512000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230008232698395, 38.596804504190047 ], [ -90.230441382649985, 38.596860724016125 ], [ -90.230427449122161, 38.596928599402766 ], [ -90.229994216599181, 38.596872251430582 ], [ -90.230008232698395, 38.596804504190047 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11512000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229657795087832, 38.597030089793456 ], [ -90.22974461267971, 38.597041431678825 ], [ -90.229673381148061, 38.597384201896489 ], [ -90.229586379402477, 38.597373187452604 ], [ -90.229657795087832, 38.597030089793456 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11512000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229674040433252, 38.595927976152183 ], [ -90.229685663747901, 38.595872348519734 ], [ -90.229688167428179, 38.595860380549617 ], [ -90.229689661217691, 38.595853239920999 ], [ -90.230122877244142, 38.595907691717578 ], [ -90.230121349292219, 38.595915076413178 ], [ -90.23011877268641, 38.595927532532308 ], [ -90.230107338141735, 38.595982803863599 ], [ -90.229674040433252, 38.595927976152183 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11513000030", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228952172953399, 38.596251610843247 ], [ -90.228966472026428, 38.596183938266826 ], [ -90.229128819274521, 38.596204516837481 ], [ -90.229142249732789, 38.59620621805368 ], [ -90.229396425668753, 38.596238435670003 ], [ -90.22939548118687, 38.596242957757887 ], [ -90.229382270216959, 38.596306179803825 ], [ -90.229381516260887, 38.596309790656889 ], [ -90.228951410959766, 38.596255217144233 ], [ -90.228952172953399, 38.596251610843247 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11513000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229325648139735, 38.596577155462008 ], [ -90.229311492553066, 38.596644899582905 ], [ -90.228880676055951, 38.596589969235133 ], [ -90.228894975261682, 38.596522297577941 ], [ -90.229325648139735, 38.596577155462008 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11513000100", "numunits (2020)": 3, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229058240191151, 38.597084578707111 ], [ -90.229044133375183, 38.597082887647019 ], [ -90.229013429770902, 38.597079206982627 ], [ -90.229017623973292, 38.597059131284446 ], [ -90.229038659237276, 38.596958446685839 ], [ -90.229073187345122, 38.596962867673867 ], [ -90.229073470753917, 38.596962904353717 ], [ -90.229119282579447, 38.596968769361581 ], [ -90.229240571622697, 38.596984297348726 ], [ -90.229206230747224, 38.597148636209774 ], [ -90.229205182206869, 38.597153655369411 ], [ -90.229170315148338, 38.597320511012128 ], [ -90.229109657398155, 38.597312831651656 ], [ -90.229048998520284, 38.597305151351037 ], [ -90.229035680302175, 38.597303465705231 ], [ -90.229013106917705, 38.597300607379928 ], [ -90.229058240191151, 38.597084578707111 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11513000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22824853657356, 38.597134514881056 ], [ -90.228369846872141, 38.597149909598819 ], [ -90.228456499248949, 38.597160905220335 ], [ -90.228543149357236, 38.597171900772473 ], [ -90.228529068746781, 38.597239321576936 ], [ -90.228442413877715, 38.597228350304817 ], [ -90.228355759035196, 38.597217378089908 ], [ -90.228234442762655, 38.597202017585417 ], [ -90.22824853657356, 38.597134514881056 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11513000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228403920853481, 38.596390317443216 ], [ -90.228840196727546, 38.596445835985385 ], [ -90.228825898670877, 38.596513498660208 ], [ -90.228818749628914, 38.596547330449688 ], [ -90.228382740812378, 38.596491763759836 ], [ -90.22838980045023, 38.596457948018681 ], [ -90.228403920853481, 38.596390317443216 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11513000360", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22888379137315, 38.595964301276723 ], [ -90.228955814569517, 38.595621952203921 ], [ -90.229042511487791, 38.59563285020694 ], [ -90.22897097952584, 38.595975329304494 ], [ -90.228884303115208, 38.595964366437251 ], [ -90.22888379137315, 38.595964301276723 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11514000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228778627628145, 38.594596686853635 ], [ -90.229213738457204, 38.59465058602968 ], [ -90.229199562216834, 38.594718097697019 ], [ -90.228764507073876, 38.594664242723873 ], [ -90.228778627628145, 38.594596686853635 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11514008081", "numunits (2020)": 4, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22936898984085, 38.595349384819393 ], [ -90.229408446662816, 38.595160298428659 ], [ -90.229616219825317, 38.595185923208852 ], [ -90.229576664165947, 38.595375488715234 ], [ -90.22936898984085, 38.595349384819393 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11515000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228557304868616, 38.594637760995084 ], [ -90.228543221510179, 38.594705135857687 ], [ -90.228113844455436, 38.59465101773079 ], [ -90.228127841358713, 38.594582926500841 ], [ -90.228557304868616, 38.594637760995084 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11515000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22850032481567, 38.594910361608967 ], [ -90.228071664151315, 38.594856211647254 ], [ -90.228085738306788, 38.594787746746242 ], [ -90.228514758948009, 38.594841306510773 ], [ -90.22850032481567, 38.594910361608967 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11516000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227738250860099, 38.596444300860028 ], [ -90.227745888436687, 38.596409209011746 ], [ -90.228175796604788, 38.596464002711429 ], [ -90.228168456318514, 38.596499157415522 ], [ -90.228154340354749, 38.596566763642457 ], [ -90.227723565593109, 38.596511780502183 ], [ -90.227738250860099, 38.596444300860028 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11516000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227694194982377, 38.596646738899679 ], [ -90.22770579628876, 38.596593429418512 ], [ -90.228137262018848, 38.596648566483807 ], [ -90.228126109504544, 38.596701975240009 ], [ -90.228122863103749, 38.596717525213094 ], [ -90.227690817734583, 38.5966622588193 ], [ -90.227694194982377, 38.596646738899679 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11516000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228122863103749, 38.596717525213094 ], [ -90.228115647850515, 38.59675208021779 ], [ -90.228109029952634, 38.596783778978633 ], [ -90.2276764256072, 38.59672838871559 ], [ -90.227690817734583, 38.5966622588193 ], [ -90.228122863103749, 38.596717525213094 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11516000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227641388646333, 38.595457330386026 ], [ -90.227727774443792, 38.595468129541473 ], [ -90.227656913553943, 38.595809123821596 ], [ -90.22757059668389, 38.595798205847899 ], [ -90.227641388646333, 38.595457330386026 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11517000010", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22700827568849, 38.595378181167071 ], [ -90.227144972586927, 38.595395271433411 ], [ -90.227226739939027, 38.595405493559589 ], [ -90.227204344034575, 38.595513319696153 ], [ -90.227203568391644, 38.595513222392505 ], [ -90.226985898172572, 38.595485918117106 ], [ -90.22700827568849, 38.595378181167071 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11517000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227097157134978, 38.596030321076128 ], [ -90.227083102587116, 38.596098142628385 ], [ -90.226654582853129, 38.596043393232513 ], [ -90.226668707343592, 38.595975697080803 ], [ -90.227097157134978, 38.596030321076128 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11517000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226654582853129, 38.596043393232513 ], [ -90.227083102587116, 38.596098142628385 ], [ -90.227069045710167, 38.596165966012506 ], [ -90.2266404571848, 38.596111090257658 ], [ -90.226654582853129, 38.596043393232513 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11517000140", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226583962388645, 38.596381849546717 ], [ -90.227012795096783, 38.596437227892231 ], [ -90.226990292618609, 38.596545745582972 ], [ -90.226561361323419, 38.596490164249417 ], [ -90.226583962388645, 38.596381849546717 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11517000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226333117529379, 38.59661302437808 ], [ -90.226438080409082, 38.596626672209098 ], [ -90.226406149801051, 38.596776151202072 ], [ -90.226365726204733, 38.596965391910338 ], [ -90.22626027614487, 38.596952038368364 ], [ -90.226300972697359, 38.596762633467051 ], [ -90.226333117529379, 38.59661302437808 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11517000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226228154693516, 38.59659937645305 ], [ -90.226333117529379, 38.59661302437808 ], [ -90.226300972697359, 38.596762633467051 ], [ -90.22626027614487, 38.596952038368364 ], [ -90.226154827268786, 38.59693868473412 ], [ -90.226195794486131, 38.596749115607459 ], [ -90.226228154693516, 38.59659937645305 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11517000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226047440473437, 38.596507207660068 ], [ -90.226056412539421, 38.596466130839218 ], [ -90.226483889250943, 38.596521600718383 ], [ -90.226475293508514, 38.596562794682704 ], [ -90.226469721225627, 38.596589502134776 ], [ -90.22627240665696, 38.596563845689573 ], [ -90.226252164267635, 38.596561213884542 ], [ -90.226041623815604, 38.596533837059717 ], [ -90.226047440473437, 38.596507207660068 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11517000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226080072832943, 38.596357800690264 ], [ -90.226094661716004, 38.596291009294966 ], [ -90.226520536800408, 38.596345968135942 ], [ -90.226506558258492, 38.596412960083889 ], [ -90.226080072832943, 38.596357800690264 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11517000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226109648958385, 38.596222388229592 ], [ -90.226534894137714, 38.596277157262534 ], [ -90.226520536800408, 38.596345968135942 ], [ -90.226094661716004, 38.596291009294966 ], [ -90.226109648958385, 38.596222388229592 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11517000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226141882667974, 38.596074810929323 ], [ -90.226148193413067, 38.596045917837955 ], [ -90.226571822034856, 38.596100180246694 ], [ -90.226565778658497, 38.596129144251087 ], [ -90.226557562989484, 38.596168516585671 ], [ -90.226133310237444, 38.596114058067485 ], [ -90.226141882667974, 38.596074810929323 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11517000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226571822034856, 38.596100180246694 ], [ -90.226148193413067, 38.596045917837955 ], [ -90.226162981934038, 38.595978211597689 ], [ -90.226585991005877, 38.596032279720468 ], [ -90.226571822034856, 38.596100180246694 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11518000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227486628495441, 38.594154089177948 ], [ -90.227472616178602, 38.594221563153688 ], [ -90.227073923609566, 38.594170426748754 ], [ -90.227075214011322, 38.594164311803098 ], [ -90.22708816953012, 38.59410289657739 ], [ -90.227486628495441, 38.594154089177948 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11518000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227472616178602, 38.594221563153688 ], [ -90.227458658827118, 38.594288762524947 ], [ -90.227458615556102, 38.594288974135189 ], [ -90.227059690537828, 38.594237892061265 ], [ -90.227059734950771, 38.594237682266119 ], [ -90.227073923609566, 38.594170426748754 ], [ -90.227472616178602, 38.594221563153688 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11518000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227458615556102, 38.594288974135189 ], [ -90.227442955825182, 38.594364383844955 ], [ -90.227043767283703, 38.594313365991873 ], [ -90.227059690537828, 38.594237892061265 ], [ -90.227458615556102, 38.594288974135189 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11518000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226499008976361, 38.594520962086278 ], [ -90.226917825508565, 38.594574130098245 ], [ -90.226908649898391, 38.594617622717983 ], [ -90.226903005438658, 38.594644375998875 ], [ -90.226483660341188, 38.594591239133152 ], [ -90.226499008976361, 38.594520962086278 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11518000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226923443091792, 38.594547500183083 ], [ -90.226917825508565, 38.594574130098245 ], [ -90.226499008976361, 38.594520962086278 ], [ -90.226513095944867, 38.594456464930133 ], [ -90.226530238813922, 38.594377975924189 ], [ -90.226948018460376, 38.594431011698177 ], [ -90.226923443091792, 38.594547500183083 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11518000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226544964712886, 38.594310552354898 ], [ -90.226962199082763, 38.59436379489555 ], [ -90.22695745585429, 38.594386276438378 ], [ -90.226948018460376, 38.594431011698177 ], [ -90.226530238813922, 38.594377975924189 ], [ -90.226544964712886, 38.594310552354898 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11518000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226652867394478, 38.593816498721665 ], [ -90.226721053108605, 38.593504297514627 ], [ -90.226807588793733, 38.59351517787929 ], [ -90.226739667403677, 38.593827698662707 ], [ -90.226652867394478, 38.593816498721665 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11518000370", "numunits (2020)": 2, "numunits (2018)": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227563316301584, 38.593784827634593 ], [ -90.227561803433503, 38.593792112327606 ], [ -90.227533152409393, 38.593930075082113 ], [ -90.227428992557989, 38.593916636395285 ], [ -90.227494817623082, 38.593601580643373 ], [ -90.227598660509301, 38.593614635673092 ], [ -90.227563316301584, 38.593784827634593 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11519000130", "numunits (2020)": 6, "numunits (2018)": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226178542247595, 38.595013036693395 ], [ -90.226158433936376, 38.595105099646347 ], [ -90.226008693088232, 38.595086377850244 ], [ -90.225755254263547, 38.595054690628231 ], [ -90.225775121048756, 38.594962577616919 ], [ -90.226178542247595, 38.595013036693395 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11519000150", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225741574555983, 38.59487131561162 ], [ -90.22571802230803, 38.594980514424272 ], [ -90.225314087572144, 38.594929994923362 ], [ -90.225336945171009, 38.594820689152336 ], [ -90.225741574555983, 38.59487131561162 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11519000160", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225741574555983, 38.59487131561162 ], [ -90.225336945171009, 38.594820689152336 ], [ -90.225355454536981, 38.594732171210417 ], [ -90.22576064788926, 38.594782884512327 ], [ -90.225741574555983, 38.59487131561162 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11519000280", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225627531258951, 38.593431010651415 ], [ -90.226041014410143, 38.593482990058874 ], [ -90.22602875035993, 38.593539850064936 ], [ -90.225615630567361, 38.59348792640855 ], [ -90.225627531258951, 38.593431010651415 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11519000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22605449480217, 38.593420489713303 ], [ -90.226041014410143, 38.593482990058874 ], [ -90.225627531258951, 38.593431010651415 ], [ -90.225640612758639, 38.593368449039247 ], [ -90.22605449480217, 38.593420489713303 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11520000090", "numunits (2020)": 25, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225861892278118, 38.596544046643267 ], [ -90.225785899374387, 38.596891964599791 ], [ -90.224926570709357, 38.596783135811634 ], [ -90.224997236350987, 38.596445213949245 ], [ -90.225010994767729, 38.596379423448454 ], [ -90.225019493955941, 38.596338778000565 ], [ -90.225029720077927, 38.596289877245894 ], [ -90.22504791334498, 38.596202874823803 ], [ -90.225407991371654, 38.596249818055199 ], [ -90.225415526622669, 38.596264002172269 ], [ -90.225451031245441, 38.596268683281622 ], [ -90.225504112638831, 38.596275681065293 ], [ -90.225538111905777, 38.596280163149814 ], [ -90.225552718491684, 38.596268685674623 ], [ -90.225911811577589, 38.596315498908289 ], [ -90.225887672085989, 38.596426016185511 ], [ -90.225882918475719, 38.596447780527349 ], [ -90.225874122713947, 38.596488050555173 ], [ -90.225861892278118, 38.596544046643267 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11520000210", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22523049473655, 38.595329752843419 ], [ -90.225237666628033, 38.595295453745941 ], [ -90.225265921495406, 38.595160333902498 ], [ -90.225668221326089, 38.595210641639305 ], [ -90.22563999110082, 38.595345813919536 ], [ -90.225632764296506, 38.595380414690183 ], [ -90.22523049473655, 38.595329752843419 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11521000065", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224709809977, 38.595784985137911 ], [ -90.224695579011623, 38.595853037526361 ], [ -90.224287786429286, 38.595801018064108 ], [ -90.22430207704798, 38.595733073972021 ], [ -90.224709809977, 38.595784985137911 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11521000155", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223727909201415, 38.596148420946307 ], [ -90.22413281440231, 38.596200618458496 ], [ -90.224118704738771, 38.596267704409328 ], [ -90.224110704050531, 38.596305739261418 ], [ -90.22370587686828, 38.596253403104981 ], [ -90.223713860562839, 38.596215363737251 ], [ -90.223727909201415, 38.596148420946307 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11521000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223912263703411, 38.595269950298594 ], [ -90.224317821727681, 38.595320983858734 ], [ -90.224304433792057, 38.595384637321132 ], [ -90.223898926305125, 38.595333505639296 ], [ -90.223912263703411, 38.595269950298594 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11521000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224332119240259, 38.595253005504389 ], [ -90.224318720805428, 38.595316709414583 ], [ -90.224317821727681, 38.595320983858734 ], [ -90.223912263703411, 38.595269950298594 ], [ -90.223913161673934, 38.595265670472934 ], [ -90.223926510729925, 38.595202062874897 ], [ -90.224332119240259, 38.595253005504389 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11522000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224144219771645, 38.594164626724094 ], [ -90.224303870095184, 38.594181058847617 ], [ -90.224304640733834, 38.594177648984534 ], [ -90.224304777357105, 38.594177042099261 ], [ -90.224306009196027, 38.594171595514339 ], [ -90.224554029391356, 38.594197893940091 ], [ -90.224551930851263, 38.594207867290713 ], [ -90.224537672321048, 38.594275668306878 ], [ -90.224533938167696, 38.59429342330872 ], [ -90.224127827679439, 38.594242740539457 ], [ -90.224131551570522, 38.594224993626938 ], [ -90.224144219771645, 38.594164626724094 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11522000210", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224330946736728, 38.593274801318451 ], [ -90.224345189455505, 38.5932069300382 ], [ -90.224415548107984, 38.593215696768738 ], [ -90.22440178619388, 38.593283629540494 ], [ -90.224388025407876, 38.593351560527623 ], [ -90.224374263441092, 38.593419492388229 ], [ -90.224365064200967, 38.593464905477795 ], [ -90.224292785177127, 38.593456655827005 ], [ -90.224302462365074, 38.59341054299513 ], [ -90.224316705141845, 38.593342671692632 ], [ -90.224330946736728, 38.593274801318451 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11522000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224494973368607, 38.593434537468454 ], [ -90.224509583130427, 38.593366710251189 ], [ -90.224524192860798, 38.593298883964849 ], [ -90.224538802570251, 38.593231055863484 ], [ -90.22460761003029, 38.593239629648473 ], [ -90.224593938929729, 38.593307575286836 ], [ -90.224580268950731, 38.593375519991802 ], [ -90.224574259447891, 38.593405387586117 ], [ -90.224580445232533, 38.593406072335988 ], [ -90.224572767196307, 38.593444234142645 ], [ -90.224559096023071, 38.593512178840726 ], [ -90.224551812272139, 38.593548382106583 ], [ -90.224472348164184, 38.593539577908764 ], [ -90.224480363582529, 38.593502364655578 ], [ -90.224494973368607, 38.593434537468454 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11522000242", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22460761003029, 38.593239629648473 ], [ -90.224751785638603, 38.593257595179331 ], [ -90.224737511148405, 38.593325466434528 ], [ -90.224723237782101, 38.593393337689797 ], [ -90.224708963237475, 38.593461209845906 ], [ -90.224694689813148, 38.593529081095944 ], [ -90.224687469513952, 38.593563410673895 ], [ -90.224551812272139, 38.593548382106583 ], [ -90.224559096023071, 38.593512178840726 ], [ -90.224572767196307, 38.593444234142645 ], [ -90.224580445232533, 38.593406072335988 ], [ -90.224574259447891, 38.593405387586117 ], [ -90.224580268950731, 38.593375519991802 ], [ -90.224593938929729, 38.593307575286836 ], [ -90.22460761003029, 38.593239629648473 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11522008011", "numunits (2020)": 14, "numunits (2018)": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225197572489591, 38.593452452623374 ], [ -90.225183376379391, 38.593520339436722 ], [ -90.225179784668157, 38.593537516448571 ], [ -90.224774463669718, 38.593486999035797 ], [ -90.224778076128459, 38.59346982389723 ], [ -90.224792349465716, 38.593401951729881 ], [ -90.224806623919847, 38.593334079562595 ], [ -90.224820898353698, 38.593266206486554 ], [ -90.225225963481037, 38.593316678986177 ], [ -90.225211767425051, 38.59338456580474 ], [ -90.225197572489591, 38.593452452623374 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11523000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.2240157758295, 38.593762841097131 ], [ -90.223989233899445, 38.593889317068367 ], [ -90.223984503321191, 38.593911858876453 ], [ -90.223883274609648, 38.593899372553004 ], [ -90.22378204593376, 38.593886886114639 ], [ -90.223680816142277, 38.593874399613568 ], [ -90.22357958753399, 38.593861913933893 ], [ -90.223591430429636, 38.593805839686539 ], [ -90.223611054762543, 38.593712920170688 ], [ -90.223712234977739, 38.593725400299959 ], [ -90.223813415225024, 38.593737881248011 ], [ -90.223914594360096, 38.593750361227301 ], [ -90.2240157758295, 38.593762841097131 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11523000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222929284624456, 38.594624998615991 ], [ -90.222929389890567, 38.594624488973942 ], [ -90.223336931530753, 38.594674994579023 ], [ -90.223336823968694, 38.594675504216035 ], [ -90.223321053632645, 38.594750171704533 ], [ -90.223260990112678, 38.594742725845101 ], [ -90.222913932730165, 38.594699703062865 ], [ -90.222929284624456, 38.594624998615991 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11523000170", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223146450069905, 38.593568230726646 ], [ -90.223152580587666, 38.593538395042984 ], [ -90.223167931976832, 38.59346369054834 ], [ -90.223393856303915, 38.593491559197702 ], [ -90.223530607005458, 38.59350842768567 ], [ -90.223554691503779, 38.593511398730399 ], [ -90.223581971433887, 38.593514763747642 ], [ -90.223566201612684, 38.593589431285672 ], [ -90.223559903723029, 38.593619252181163 ], [ -90.223146450069905, 38.593568230726646 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11523000186", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223248778898707, 38.593070265274548 ], [ -90.223320811197681, 38.593079262731351 ], [ -90.223251011352104, 38.593418347057685 ], [ -90.223179073526978, 38.593409473209782 ], [ -90.223248778898707, 38.593070265274548 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11523000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223320811197681, 38.593079262731351 ], [ -90.223344653301552, 38.593082241376528 ], [ -90.223360275743985, 38.593084190744378 ], [ -90.223395483605742, 38.593088584390884 ], [ -90.223325585851825, 38.593427546008066 ], [ -90.223274823878953, 38.593421284183989 ], [ -90.223251011352104, 38.593418347057685 ], [ -90.223320811197681, 38.593079262731351 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11523000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223431818203977, 38.593093112180796 ], [ -90.223469855494244, 38.59309785120093 ], [ -90.223399856315012, 38.593436708141368 ], [ -90.223361870307414, 38.593432022352864 ], [ -90.223325585851825, 38.593427546008066 ], [ -90.223395483605742, 38.593088584390884 ], [ -90.223431818203977, 38.593093112180796 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11523000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223469855494244, 38.59309785120093 ], [ -90.223518983167423, 38.59310397394114 ], [ -90.223544384583207, 38.593107139092737 ], [ -90.223474285140696, 38.593445888613424 ], [ -90.223448916762067, 38.593442759578359 ], [ -90.223399856315012, 38.593436708141368 ], [ -90.223469855494244, 38.59309785120093 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11523000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223618617673893, 38.593116390159501 ], [ -90.223693310879057, 38.593125697261861 ], [ -90.22362299138868, 38.59346423283111 ], [ -90.22354841680837, 38.59345503409746 ], [ -90.223618617673893, 38.593116390159501 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11524000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223240183135744, 38.596569779410139 ], [ -90.223311209878545, 38.596231599072908 ], [ -90.223371056398335, 38.596239078609571 ], [ -90.22330003781363, 38.596577298680828 ], [ -90.223240183135744, 38.596569779410139 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11524000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222621737667453, 38.59608982022047 ], [ -90.222636611802713, 38.596019216449946 ], [ -90.222650912987632, 38.595951328440968 ], [ -90.223056494793042, 38.596002013273186 ], [ -90.223042135448893, 38.596069896691219 ], [ -90.223027187112365, 38.596140493116515 ], [ -90.222788311021773, 38.596110638277437 ], [ -90.222621737667453, 38.59608982022047 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11524000230", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222822531983695, 38.595136670167648 ], [ -90.22283683396121, 38.595068782127264 ], [ -90.223243045537671, 38.595119521867034 ], [ -90.223228708355037, 38.595187407183047 ], [ -90.222822531983695, 38.595136670167648 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11525000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222074949090143, 38.596077090548434 ], [ -90.222146996843477, 38.59608609507891 ], [ -90.222076619413855, 38.596423603304046 ], [ -90.222004592167266, 38.596414554624445 ], [ -90.222074949090143, 38.596077090548434 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11525000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221918704283979, 38.59640376414913 ], [ -90.221988965000648, 38.596066344023967 ], [ -90.222074949090143, 38.596077090548434 ], [ -90.222004592167266, 38.596414554624445 ], [ -90.221918704283979, 38.59640376414913 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11525000070", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221722953546262, 38.596033095823415 ], [ -90.221653187956292, 38.596370406136671 ], [ -90.221577743850929, 38.596360927519449 ], [ -90.221647337486829, 38.596023643863603 ], [ -90.221722953546262, 38.596033095823415 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11525000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221579024651334, 38.596015105537738 ], [ -90.221644659448415, 38.596023309574512 ], [ -90.221647337486829, 38.596023643863603 ], [ -90.221577743850929, 38.596360927519449 ], [ -90.221575111706613, 38.596360596962128 ], [ -90.221509588072792, 38.596352364290254 ], [ -90.221579024651334, 38.596015105537738 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11525000121", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221680717440137, 38.595598690635633 ], [ -90.221730936963013, 38.595604877973336 ], [ -90.221748985610787, 38.595607101770184 ], [ -90.221673697414545, 38.595971328485476 ], [ -90.221655836976524, 38.595969096116228 ], [ -90.221605634758149, 38.595962821412158 ], [ -90.221680717440137, 38.595598690635633 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11525000122", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221748696030545, 38.595935411898552 ], [ -90.221739570842701, 38.595979561893884 ], [ -90.221731789169482, 38.595978589423794 ], [ -90.22172823337506, 38.595978144951083 ], [ -90.221673697414545, 38.595971328485476 ], [ -90.221748985610787, 38.595607101770184 ], [ -90.221814876377394, 38.595615220754816 ], [ -90.22180231927328, 38.595675973260697 ], [ -90.221798773807876, 38.595693125914558 ], [ -90.221791127228883, 38.595730122721498 ], [ -90.221785909013718, 38.595755372266943 ], [ -90.221777709138721, 38.595795045200703 ], [ -90.221772322478429, 38.595821107853041 ], [ -90.221766408264713, 38.595849722358636 ], [ -90.221760477663409, 38.595878417005878 ], [ -90.22175431897756, 38.595908211101204 ], [ -90.221748696030545, 38.595935411898552 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11526000031", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22254431865808, 38.595447256188748 ], [ -90.222514204436393, 38.595590201543175 ], [ -90.222460127284819, 38.595583538761154 ], [ -90.222485160010777, 38.595464713594616 ], [ -90.222457112229847, 38.595461137488854 ], [ -90.222433486466088, 38.595458124959933 ], [ -90.222438614871066, 38.595433776960022 ], [ -90.222462230301716, 38.595436788584792 ], [ -90.22254431865808, 38.595447256188748 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11526000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221908531678551, 38.595143312444137 ], [ -90.221981909879958, 38.595152370667577 ], [ -90.221994219136178, 38.595153889863916 ], [ -90.221997675088673, 38.595154316930298 ], [ -90.221922480677961, 38.595517296338308 ], [ -90.221919023560972, 38.595516869239489 ], [ -90.221905399308568, 38.595515191064742 ], [ -90.221833508863682, 38.595506332730977 ], [ -90.221908531678551, 38.595143312444137 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11526000092", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221762184952595, 38.595125245486983 ], [ -90.221822843098792, 38.595132734052804 ], [ -90.221747995336017, 38.595495797041487 ], [ -90.221680569462407, 38.595487489692609 ], [ -90.221703198713385, 38.595378743589407 ], [ -90.221713896269137, 38.595361189836275 ], [ -90.221762184952595, 38.595125245486983 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11526000094", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221620704978278, 38.595480112852556 ], [ -90.221606690630793, 38.595478385967347 ], [ -90.221563283319597, 38.595473038137484 ], [ -90.221599400054657, 38.595296919326579 ], [ -90.221602762396728, 38.595280525655859 ], [ -90.221637755811514, 38.595109885190197 ], [ -90.221680994199957, 38.595115222679638 ], [ -90.221687714486563, 38.595116052103066 ], [ -90.221697777133571, 38.595117293943701 ], [ -90.221620704978278, 38.595480112852556 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11526000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221919734112547, 38.595089100795938 ], [ -90.22183401690792, 38.595078519654052 ], [ -90.221903534588151, 38.594741240093164 ], [ -90.221989422181721, 38.594751889164513 ], [ -90.222032324108213, 38.594757207714956 ], [ -90.221962558298671, 38.595094387664766 ], [ -90.221919734112547, 38.595089100795938 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11527000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222523521952283, 38.593460770726288 ], [ -90.222524693470106, 38.593455221292231 ], [ -90.222946341772953, 38.593507235413654 ], [ -90.222945197763835, 38.593512803836184 ], [ -90.222943003336553, 38.593523483238947 ], [ -90.222931242806752, 38.593580709860952 ], [ -90.222509204093697, 38.593528618179576 ], [ -90.22252159746192, 38.593469893106594 ], [ -90.222523521952283, 38.593460770726288 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11527000040", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222889378923185, 38.593784427922706 ], [ -90.222466249206363, 38.593732158736081 ], [ -90.222480568298124, 38.593664311265947 ], [ -90.222494886207826, 38.593596464724072 ], [ -90.222917287823023, 38.593648615883168 ], [ -90.222903333960247, 38.59371652190557 ], [ -90.222900144074046, 38.593732043947632 ], [ -90.222889378923185, 38.593784427922706 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11527000070", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222811475817423, 38.594163519427561 ], [ -90.222676810161261, 38.594146861321555 ], [ -90.222673989853931, 38.594160285163134 ], [ -90.222614264057199, 38.594152925359175 ], [ -90.222619898815964, 38.594126112812731 ], [ -90.222559862095267, 38.594118718911602 ], [ -90.222557044128294, 38.594132125621385 ], [ -90.222526327952721, 38.594128246837137 ], [ -90.222386314500696, 38.594110927127659 ], [ -90.22240631258525, 38.594016165475885 ], [ -90.222830973322644, 38.594068638502876 ], [ -90.222811475817423, 38.594163519427561 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11527000075", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222366021716795, 38.594207086274224 ], [ -90.222386314500696, 38.594110927127659 ], [ -90.222526327952721, 38.594128246837137 ], [ -90.222557044128294, 38.594132125621385 ], [ -90.222559862095267, 38.594118718911602 ], [ -90.222619898815964, 38.594126112812731 ], [ -90.222614264057199, 38.594152925359175 ], [ -90.222673989853931, 38.594160285163134 ], [ -90.222676810161261, 38.594146861321555 ], [ -90.222811475817423, 38.594163519427561 ], [ -90.222791695205657, 38.594259770828295 ], [ -90.222366021716795, 38.594207086274224 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11527000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222777739955262, 38.594327676825117 ], [ -90.222763785825833, 38.594395582822138 ], [ -90.222337385371105, 38.594342780241639 ], [ -90.222351703554182, 38.594274933698593 ], [ -90.222777739955262, 38.594327676825117 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11527000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221829851605847, 38.594349531167204 ], [ -90.222253943130852, 38.594402064388817 ], [ -90.222239625984486, 38.594469908202264 ], [ -90.222232466827251, 38.59450383054601 ], [ -90.221808744256876, 38.594451322449103 ], [ -90.22181577966758, 38.594417391710351 ], [ -90.221829851605847, 38.594349531167204 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11527000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221872066118905, 38.594145949492265 ], [ -90.222296896701209, 38.594198531153182 ], [ -90.222282578489271, 38.594266375850523 ], [ -90.221857994257732, 38.59421381004308 ], [ -90.221872066118905, 38.594145949492265 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11527000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221914280390266, 38.593942367766736 ], [ -90.222339851176855, 38.593994997869181 ], [ -90.222325533043303, 38.594062842601872 ], [ -90.221900209757237, 38.594010228355444 ], [ -90.221914280390266, 38.593942367766736 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11527000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221928352143934, 38.593874506299514 ], [ -90.222354169282966, 38.593927152255176 ], [ -90.222339851176855, 38.593994997869181 ], [ -90.221914280390266, 38.593942367766736 ], [ -90.221928352143934, 38.593874506299514 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11527000280", "numunits (2020)": 4, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222410775165258, 38.592965549296537 ], [ -90.222479080628148, 38.592974085308086 ], [ -90.222408748579085, 38.593314446240626 ], [ -90.222340374688585, 38.593306010911661 ], [ -90.222410775165258, 38.592965549296537 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11527000296", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22258285774214, 38.592987053632314 ], [ -90.222512305365285, 38.593327221315619 ], [ -90.222426501794516, 38.593316635899789 ], [ -90.222408748579085, 38.593314446240626 ], [ -90.222479080628148, 38.592974085308086 ], [ -90.222496816437271, 38.592976301935373 ], [ -90.22258285774214, 38.592987053632314 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11527000310", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222668900217172, 38.592997805268794 ], [ -90.22275494157077, 38.593008556811903 ], [ -90.222840984101353, 38.593019308322013 ], [ -90.222770932448626, 38.593359125094878 ], [ -90.222684884407641, 38.593348510459542 ], [ -90.222598757227814, 38.593337885688804 ], [ -90.222668900217172, 38.592997805268794 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11528000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221753032076961, 38.593694284218472 ], [ -90.221324257396162, 38.59363956330462 ], [ -90.221334309347924, 38.593592320977244 ], [ -90.221335175651333, 38.593588249208686 ], [ -90.221763727214793, 38.593642704682686 ], [ -90.221763188014862, 38.593645305167406 ], [ -90.221762733024789, 38.593647500470993 ], [ -90.221758239294275, 38.593669170672499 ], [ -90.221758194848832, 38.593669384996332 ], [ -90.221753032076961, 38.593694284218472 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11528000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221706811503324, 38.593917178691918 ], [ -90.221276608083613, 38.593863502887999 ], [ -90.221290917987304, 38.593796251052744 ], [ -90.221720861226018, 38.593849424398208 ], [ -90.22170690625066, 38.593916720374757 ], [ -90.221706811503324, 38.593917178691918 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11528000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221706811503324, 38.593917178691918 ], [ -90.22169283660331, 38.593984574597833 ], [ -90.221262183556007, 38.593931298580777 ], [ -90.221276608083613, 38.593863502887999 ], [ -90.221706811503324, 38.593917178691918 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11528000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221650625204447, 38.594188135516298 ], [ -90.221636554301895, 38.594255989753847 ], [ -90.221204482892773, 38.594202480413735 ], [ -90.221218908674558, 38.594134684734293 ], [ -90.221650625204447, 38.594188135516298 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11528000180", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221091796193036, 38.594398654151782 ], [ -90.221076216306642, 38.594471871339593 ], [ -90.220650639568888, 38.594419106006235 ], [ -90.220665949035634, 38.594345871097588 ], [ -90.221091796193036, 38.594398654151782 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11528000190", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220680408199087, 38.594276705323679 ], [ -90.221106509735861, 38.594329505130041 ], [ -90.221092084963033, 38.594397298983289 ], [ -90.221091796193036, 38.594398654151782 ], [ -90.220665949035634, 38.594345871097588 ], [ -90.220666232075132, 38.594344515037832 ], [ -90.220680408199087, 38.594276705323679 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11528000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220708759218255, 38.594141085857416 ], [ -90.22113536034324, 38.594193918297009 ], [ -90.22112093447781, 38.594261712152836 ], [ -90.220694584295927, 38.59420889560694 ], [ -90.220708759218255, 38.594141085857416 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11528000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220737110132674, 38.594005466408227 ], [ -90.220751284973744, 38.593937656678378 ], [ -90.22117863432841, 38.593990538462783 ], [ -90.221164209696468, 38.594058331450633 ], [ -90.220737110132674, 38.594005466408227 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11528000316", "numunits (2020)": 8, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220919952972324, 38.593130773152083 ], [ -90.2209915642661, 38.592788193627285 ], [ -90.221032334164903, 38.59279328857739 ], [ -90.221107018557703, 38.592802622516743 ], [ -90.221191034368289, 38.592813121758795 ], [ -90.221119558314484, 38.593155399921962 ], [ -90.221035515210062, 38.593145031160006 ], [ -90.220919952972324, 38.593130773152083 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11528000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221367442866722, 38.592835167888474 ], [ -90.22145425025883, 38.592846015922362 ], [ -90.221383068468725, 38.593187910239884 ], [ -90.221296180973653, 38.593177190802002 ], [ -90.221367442866722, 38.592835167888474 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11529000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221140178628474, 38.59504845654854 ], [ -90.221226554294418, 38.59505911994151 ], [ -90.221151860249662, 38.595422345061074 ], [ -90.221065418681931, 38.595411694087886 ], [ -90.221140178628474, 38.59504845654854 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11529000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220794680825065, 38.595005802350734 ], [ -90.220881055239644, 38.595016465995698 ], [ -90.220806091842675, 38.595379739819144 ], [ -90.220719650378626, 38.595369088590829 ], [ -90.220794680825065, 38.595005802350734 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11529000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220708305292177, 38.594995138666846 ], [ -90.220794680825065, 38.595005802350734 ], [ -90.220719650378626, 38.595369088590829 ], [ -90.220633207792957, 38.595358436362424 ], [ -90.220708305292177, 38.594995138666846 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11529000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220805877188056, 38.594951590821978 ], [ -90.220719512043672, 38.594940928049688 ], [ -90.220789344554973, 38.594603102140979 ], [ -90.220875641435356, 38.594613801632363 ], [ -90.220805877188056, 38.594951590821978 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11530000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220970924465988, 38.595939098203829 ], [ -90.221057461294293, 38.595949914337893 ], [ -90.220988139532409, 38.596286849639711 ], [ -90.220901540573806, 38.596275968448296 ], [ -90.220970924465988, 38.595939098203829 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11530000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220711311851034, 38.595906647545476 ], [ -90.220797849744343, 38.595917464807606 ], [ -90.220728342722339, 38.596254208536926 ], [ -90.220641744991042, 38.596243327128747 ], [ -90.220711311851034, 38.595906647545476 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11530000092", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220282034159155, 38.596198130437884 ], [ -90.220351660639579, 38.595861892671586 ], [ -90.220384285339904, 38.595865769373439 ], [ -90.220444995236008, 38.595873357876542 ], [ -90.220425843129718, 38.595965849142146 ], [ -90.220398194164474, 38.595962423034855 ], [ -90.220347676840277, 38.596206378496326 ], [ -90.220282034159155, 38.596198130437884 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11530000093", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220444995236008, 38.595873357876542 ], [ -90.220538291216599, 38.595885020209643 ], [ -90.220468600080366, 38.596221572368336 ], [ -90.220347676840277, 38.596206378496326 ], [ -90.220398194164474, 38.595962423034855 ], [ -90.220425843129718, 38.595965849142146 ], [ -90.220444995236008, 38.595873357876542 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11530000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221215976148912, 38.595541427442846 ], [ -90.22128842648732, 38.59555035415481 ], [ -90.221213802372887, 38.595913846133215 ], [ -90.221141329230207, 38.595904787763978 ], [ -90.221215976148912, 38.595541427442846 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220043419251198, 38.595256942781766 ], [ -90.22011453904453, 38.594913676300798 ], [ -90.220200727342188, 38.594924620198299 ], [ -90.220129635738886, 38.595267824631023 ], [ -90.220043419251198, 38.595256942781766 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.2199572027898, 38.595246060896528 ], [ -90.220028350780339, 38.594902731461175 ], [ -90.22011453904453, 38.594913676300798 ], [ -90.220043419251198, 38.595256942781766 ], [ -90.2199572027898, 38.595246060896528 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219870986354948, 38.595235178920404 ], [ -90.219942163683356, 38.594891787467041 ], [ -90.220028350780339, 38.594902731461175 ], [ -90.2199572027898, 38.595246060896528 ], [ -90.219870986354948, 38.595235178920404 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21900882115942, 38.595126358492578 ], [ -90.219080285006527, 38.594782342122286 ], [ -90.219166471834569, 38.594793286750381 ], [ -90.21909503733022, 38.595137241103139 ], [ -90.21900882115942, 38.595126358492578 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218922605011528, 38.595115476724729 ], [ -90.218994097054022, 38.594771397400564 ], [ -90.219080285006527, 38.594782342122286 ], [ -90.21900882115942, 38.595126358492578 ], [ -90.218922605011528, 38.595115476724729 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218663956736592, 38.595082829283236 ], [ -90.218735534503139, 38.594738562912731 ], [ -90.21882172122838, 38.594749507821881 ], [ -90.218750172798352, 38.595093712120061 ], [ -90.218663956736592, 38.595082829283236 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11531000200", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218319090437618, 38.595039299025871 ], [ -90.218390784431449, 38.594694781810155 ], [ -90.218476971050507, 38.594705726972897 ], [ -90.218405306400683, 38.595050181237809 ], [ -90.218319090437618, 38.595039299025871 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000210", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21819838790698, 38.595024062932396 ], [ -90.218270121832077, 38.594679458510981 ], [ -90.218390784431449, 38.594694781810155 ], [ -90.218319090437618, 38.595039299025871 ], [ -90.21819838790698, 38.595024062932396 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218485428969331, 38.59466507560542 ], [ -90.218557488251378, 38.594318719509076 ], [ -90.21858943406005, 38.594322805889632 ], [ -90.21864364315627, 38.594329740150862 ], [ -90.218571614416646, 38.594676021574372 ], [ -90.218511956040004, 38.594668444503732 ], [ -90.218485428969331, 38.59466507560542 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11531000250", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218657799897557, 38.594686965667627 ], [ -90.218729796940409, 38.594340760699104 ], [ -90.21881595075827, 38.594351780277869 ], [ -90.218859027101587, 38.594357290508903 ], [ -90.218787078159849, 38.594703383061599 ], [ -90.218743986545519, 38.59469791063384 ], [ -90.218657799897557, 38.594686965667627 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219304194108716, 38.594769051216637 ], [ -90.219375955215654, 38.59442340924538 ], [ -90.219419031645799, 38.594428919270563 ], [ -90.219505187969133, 38.594439939254158 ], [ -90.2194334738208, 38.594785467900174 ], [ -90.219347286956847, 38.594774523468573 ], [ -90.219304194108716, 38.594769051216637 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219778218095442, 38.594829245039321 ], [ -90.219849806636731, 38.594484017659902 ], [ -90.219935960801905, 38.594495036415147 ], [ -90.219864403940988, 38.594840189151192 ], [ -90.219778218095442, 38.594829245039321 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000350", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219864403940988, 38.594840189151192 ], [ -90.219935960801905, 38.594495036415147 ], [ -90.220022116134288, 38.594506056043365 ], [ -90.219950589816591, 38.59485113319969 ], [ -90.219864403940988, 38.594840189151192 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11531000360", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219950589816591, 38.59485113319969 ], [ -90.220022116134288, 38.594506056043365 ], [ -90.22010827035291, 38.594517074671892 ], [ -90.220036775718626, 38.594862077212241 ], [ -90.219950589816591, 38.59485113319969 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11532000010", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220229819457657, 38.593298563629055 ], [ -90.220243944396273, 38.593231277234437 ], [ -90.220258069304563, 38.593163990864731 ], [ -90.220266507041288, 38.593123797849977 ], [ -90.220306722125173, 38.593101144267386 ], [ -90.220702764529676, 38.593152078518457 ], [ -90.220688700910472, 38.593219356081569 ], [ -90.220674637264509, 38.593286633669578 ], [ -90.220660573588532, 38.593353912133722 ], [ -90.220229819457657, 38.593298563629055 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11532000045", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220173318295394, 38.593567709124137 ], [ -90.220183416800779, 38.593519604842164 ], [ -90.220187443340947, 38.593500422739801 ], [ -90.220187817563712, 38.593498642570779 ], [ -90.220618754328498, 38.593553964644009 ], [ -90.220618382407807, 38.593555744819874 ], [ -90.220614865592665, 38.593572567809034 ], [ -90.220604318628745, 38.593623022395143 ], [ -90.220173318295394, 38.593567709124137 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11532000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220590254823165, 38.593690299940384 ], [ -90.220159192075556, 38.593634995475711 ], [ -90.220173318295394, 38.593567709124137 ], [ -90.220604318628745, 38.593623022395143 ], [ -90.220597814790395, 38.593654132729029 ], [ -90.220590254823165, 38.593690299940384 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11532000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220102691522598, 38.593904141828332 ], [ -90.22011681670179, 38.593836855484305 ], [ -90.220548062095531, 38.593892133491693 ], [ -90.220533998183356, 38.593959411054179 ], [ -90.220102691522598, 38.593904141828332 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11532000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219555812876791, 38.594071941517008 ], [ -90.219570198238088, 38.594004600889136 ], [ -90.220002172994541, 38.594059916916976 ], [ -90.219999025845965, 38.594074909236802 ], [ -90.219988032472131, 38.594127273476033 ], [ -90.219555812876791, 38.594071941517008 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11532000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219670659937634, 38.593534336607732 ], [ -90.219685090659453, 38.593466787954114 ], [ -90.220115099813484, 38.593521984454611 ], [ -90.220100916226798, 38.593589548165859 ], [ -90.219670659937634, 38.593534336607732 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11532000375", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220563157168158, 38.593092385976483 ], [ -90.220636097905768, 38.592743954946634 ], [ -90.220698109965738, 38.592751647327511 ], [ -90.220784237088921, 38.592762329376207 ], [ -90.220745365730153, 38.592948281916975 ], [ -90.220742749489887, 38.592960801692413 ], [ -90.220711261159209, 38.593111433385232 ], [ -90.220690310782089, 38.593108739458742 ], [ -90.220625154658279, 38.593100359433919 ], [ -90.220563157168158, 38.593092385976483 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11533000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21912930382851, 38.592977537134701 ], [ -90.21916945149087, 38.592954875681045 ], [ -90.2195705703611, 38.593006466436307 ], [ -90.219563357927655, 38.59304022544373 ], [ -90.219556145483907, 38.593073985329177 ], [ -90.219553075296872, 38.593088359853283 ], [ -90.219548993795982, 38.593107468817152 ], [ -90.219113955647941, 38.593051548311983 ], [ -90.219118127266768, 38.593031432374282 ], [ -90.219120907960956, 38.593018022059326 ], [ -90.21912930382851, 38.592977537134701 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11533000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219106892190837, 38.593085610357356 ], [ -90.219113955647941, 38.593051548311983 ], [ -90.219548993795982, 38.593107468817152 ], [ -90.219541722874396, 38.593141504252358 ], [ -90.219527297942307, 38.593209023167411 ], [ -90.219092875249927, 38.593153198650114 ], [ -90.219106892190837, 38.593085610357356 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11533000055", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219008778786161, 38.593558724824639 ], [ -90.219022794739473, 38.593491137423136 ], [ -90.219455178608982, 38.593546616810499 ], [ -90.219440754660141, 38.593614135712357 ], [ -90.219008778786161, 38.593558724824639 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11533000104", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218910664071757, 38.594031840073264 ], [ -90.218924681362822, 38.593964251786176 ], [ -90.219354209244287, 38.594019249037956 ], [ -90.219339785103685, 38.594086767921333 ], [ -90.218910664071757, 38.594031840073264 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11533000210", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218581575662782, 38.593156900408879 ], [ -90.218595290259685, 38.593089254695748 ], [ -90.219030149303052, 38.593145137955126 ], [ -90.219016132267825, 38.593212728049998 ], [ -90.218581575662782, 38.593156900408879 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11534000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219732126724509, 38.596129032579697 ], [ -90.219803262492206, 38.595785809627806 ], [ -90.219845456621371, 38.595791120097502 ], [ -90.21989997831426, 38.595797982414027 ], [ -90.219828863725368, 38.596141188367966 ], [ -90.219774330258147, 38.596134335903095 ], [ -90.219732126724509, 38.596129032579697 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11534000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21891109469415, 38.59602586442508 ], [ -90.218982409310868, 38.595682498265404 ], [ -90.219068714608937, 38.595693361282763 ], [ -90.218997417669655, 38.596036712242402 ], [ -90.21891109469415, 38.59602586442508 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11534000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218565800742581, 38.595982474436411 ], [ -90.218637190663713, 38.595639048284212 ], [ -90.218723494712094, 38.595649910646955 ], [ -90.218652124763878, 38.595993322483437 ], [ -90.218565800742581, 38.595982474436411 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11534000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218220515253407, 38.59593908342201 ], [ -90.218291972435253, 38.59559559819202 ], [ -90.218378277525744, 38.595606460811801 ], [ -90.218306831135621, 38.595949930825462 ], [ -90.218220515253407, 38.59593908342201 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11534000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21830042941464, 38.595554947748177 ], [ -90.218371615432076, 38.59521280142144 ], [ -90.21845789700842, 38.595223692758466 ], [ -90.218386733310155, 38.595565810358877 ], [ -90.21830042941464, 38.595554947748177 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11534000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218386733310155, 38.595565810358877 ], [ -90.21845789700842, 38.595223692758466 ], [ -90.218544177460188, 38.595234584001702 ], [ -90.218473034936764, 38.595576672900492 ], [ -90.218386733310155, 38.595565810358877 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11534000220", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218473034936764, 38.595576672900492 ], [ -90.218544177460188, 38.595234584001702 ], [ -90.218630459089439, 38.595245475211641 ], [ -90.218673556886245, 38.595250915294045 ], [ -90.218602446121494, 38.595592961099101 ], [ -90.218559337740913, 38.595587535381313 ], [ -90.218473034936764, 38.595576672900492 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11534000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.218731943417865, 38.595609261058364 ], [ -90.218803021279683, 38.595267256532026 ], [ -90.218889302984778, 38.595278147551333 ], [ -90.218932380170784, 38.595283584770662 ], [ -90.218861334070795, 38.595625545296954 ], [ -90.21881824630124, 38.595620122442313 ], [ -90.218731943417865, 38.595609261058364 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11534000350", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219940184992524, 38.595761327304878 ], [ -90.220010963016492, 38.595419719545468 ], [ -90.220097245091864, 38.595430609675283 ], [ -90.220105692131369, 38.59543167571745 ], [ -90.220114337667937, 38.595432766560684 ], [ -90.220043586659187, 38.595774339326475 ], [ -90.220026489392922, 38.595772187801614 ], [ -90.219940184992524, 38.595761327304878 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11536000100", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.217815285057895, 38.593692787607395 ], [ -90.217816764694874, 38.593685739879831 ], [ -90.218250450041907, 38.593741639444396 ], [ -90.218249056065076, 38.593748515295871 ], [ -90.218235308245241, 38.593816321269969 ], [ -90.218228457718737, 38.593850112580604 ], [ -90.217794089493594, 38.593793722108707 ], [ -90.217801050189848, 38.593760577038736 ], [ -90.217815285057895, 38.593692787607395 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11537000080", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216663618018188, 38.593614057596312 ], [ -90.21667784848367, 38.593546192614781 ], [ -90.21711315971902, 38.593602123735998 ], [ -90.21709896999792, 38.593669946498878 ], [ -90.217084779095089, 38.593737770162519 ], [ -90.2166493886768, 38.593681921644439 ], [ -90.216663618018188, 38.593614057596312 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11537000190", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.216316964977636, 38.592808396395313 ], [ -90.216318211720107, 38.592802517474603 ], [ -90.216751097822907, 38.592858598134796 ], [ -90.216745608086413, 38.592884781028964 ], [ -90.216736867537833, 38.592926470328145 ], [ -90.21672263607455, 38.592994343394821 ], [ -90.216708405735133, 38.593062215582975 ], [ -90.21669988975583, 38.593102830665501 ], [ -90.21626639120305, 38.593046836618925 ], [ -90.216275009644278, 38.593006206520464 ], [ -90.216289410362577, 38.592938310467396 ], [ -90.216303811056818, 38.592870413532985 ], [ -90.216316964977636, 38.592808396395313 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11539000020", "numunits (2020)": 5, "numunits (2018)": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.215542407169863, 38.5929560096274 ], [ -90.21555219871783, 38.592909952744961 ], [ -90.216069862167203, 38.592977740112623 ], [ -90.216054832678608, 38.593048430955996 ], [ -90.216040148173548, 38.593117497456106 ], [ -90.216025464794697, 38.593186563022684 ], [ -90.216010781383659, 38.59325562952008 ], [ -90.215996097947738, 38.593324695081151 ], [ -90.2159814144797, 38.593393760666899 ], [ -90.215966729839138, 38.593462826219671 ], [ -90.215952046317526, 38.593531891799906 ], [ -90.215937361619751, 38.59360095737464 ], [ -90.215922678037714, 38.59367002292192 ], [ -90.215907993275863, 38.593739090275953 ], [ -90.215845872423728, 38.593730955472537 ], [ -90.215801542270682, 38.593654160808498 ], [ -90.215757212204622, 38.59357736791182 ], [ -90.215712882236147, 38.593500574091571 ], [ -90.215668552358153, 38.59342378116002 ], [ -90.215624222577731, 38.593346987304891 ], [ -90.215568353156783, 38.593268682645977 ], [ -90.215512482716292, 38.593190377050888 ], [ -90.215497146332623, 38.593168882485337 ], [ -90.21550490170479, 38.593132408862353 ], [ -90.215507799893643, 38.593118775483092 ], [ -90.21552248490147, 38.593049709957789 ], [ -90.215537326609322, 38.592979905194987 ], [ -90.215542407169863, 38.5929560096274 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11539008061", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.214773943270345, 38.593670899470482 ], [ -90.214816944722898, 38.59345814214047 ], [ -90.21490460565677, 38.593469054767105 ], [ -90.214954573803709, 38.593530879831484 ], [ -90.214922535788133, 38.59368939681309 ], [ -90.214773943270345, 38.593670899470482 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11548000110", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220197247150949, 38.5901341934333 ], [ -90.220250202260061, 38.589873883369776 ], [ -90.220309453332575, 38.589582625516975 ], [ -90.220400742840511, 38.589570229357371 ], [ -90.220331612136121, 38.589909948854967 ], [ -90.220283773364969, 38.590145033538555 ], [ -90.220197247150949, 38.5901341934333 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11549000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219685496007912, 38.590660581077813 ], [ -90.219769537775676, 38.590247446963602 ], [ -90.219818373947021, 38.590253565152729 ], [ -90.219734286573242, 38.590666690186509 ], [ -90.219685496007912, 38.590660581077813 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11549000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.21947290503249, 38.59063396411635 ], [ -90.219556749572916, 38.590220786435481 ], [ -90.219640469482243, 38.590231276199624 ], [ -90.219556547419572, 38.590644436620764 ], [ -90.21947290503249, 38.59063396411635 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11550000140", "numunits (2020)": 2, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219392347650867, 38.592422886718282 ], [ -90.219461662216688, 38.592084008894425 ], [ -90.219549440978184, 38.592095075967947 ], [ -90.219637220911139, 38.592106142978437 ], [ -90.219756600659863, 38.592121193368776 ], [ -90.219745490491619, 38.59217529241792 ], [ -90.219658424553629, 38.592164492969907 ], [ -90.219600389867594, 38.592448692067173 ], [ -90.219567814457307, 38.592444651332627 ], [ -90.219480081616254, 38.592433769045947 ], [ -90.219392347650867, 38.592422886718282 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11550000160", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.219084327171885, 38.59216853809891 ], [ -90.219110545145412, 38.592039741749652 ], [ -90.219198324945154, 38.592050809088931 ], [ -90.219286103628122, 38.592061875453574 ], [ -90.219362721116994, 38.592071534941532 ], [ -90.21935226055993, 38.592122923823581 ], [ -90.219286599500677, 38.59211477879321 ], [ -90.219270869352329, 38.59219205753439 ], [ -90.219084327171885, 38.59216853809891 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11552050140", "numunits (2020)": 18, "numunits (2018)": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22110859381425, 38.589849296057722 ], [ -90.221144654726658, 38.589680933771632 ], [ -90.221189922743861, 38.589469626162817 ], [ -90.221238016140973, 38.58946227727558 ], [ -90.221283616988188, 38.58945464871509 ], [ -90.221329037595424, 38.589446384303599 ], [ -90.221374790300047, 38.58943738325079 ], [ -90.221420329043937, 38.589427736969874 ], [ -90.221369837305843, 38.589674916625803 ], [ -90.221328059078147, 38.58987939928619 ], [ -90.221241979827298, 38.589867592553006 ], [ -90.221157053589096, 38.589855943417511 ], [ -90.22110859381425, 38.589849296057722 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11552050150", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221369837305843, 38.589674916625803 ], [ -90.221420329043937, 38.589427736969874 ], [ -90.221477239657276, 38.58941426389196 ], [ -90.221456317294752, 38.589515370966076 ], [ -90.221455434215542, 38.589519639993313 ], [ -90.221421684365396, 38.589682739446921 ], [ -90.221369837305843, 38.589674916625803 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11553000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222124833389557, 38.589738984764736 ], [ -90.222140766804145, 38.589662234921533 ], [ -90.222432030252193, 38.589698288656407 ], [ -90.222577869177471, 38.589716340976253 ], [ -90.222561954555687, 38.589793098117553 ], [ -90.222124833389557, 38.589738984764736 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11553000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222096632882938, 38.589874827538694 ], [ -90.222110733726936, 38.589806905715022 ], [ -90.222547870187654, 38.589861026350803 ], [ -90.222533785789196, 38.589928954581495 ], [ -90.222096632882938, 38.589874827538694 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11553000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221955632189719, 38.59055403585262 ], [ -90.221969733303155, 38.59048611405472 ], [ -90.222407025026641, 38.590540303159941 ], [ -90.222392940359043, 38.590608231364889 ], [ -90.221955632189719, 38.59055403585262 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11553000130", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221941531052721, 38.590621956769276 ], [ -90.221955632189719, 38.59055403585262 ], [ -90.222392940359043, 38.590608231364889 ], [ -90.222378855671494, 38.59067615866114 ], [ -90.221941531052721, 38.590621956769276 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11553000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221927431043341, 38.590689876779926 ], [ -90.221941531052721, 38.590621956769276 ], [ -90.222378855671494, 38.59067615866114 ], [ -90.222364770953462, 38.590744085982273 ], [ -90.221927431043341, 38.590689876779926 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11553000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221452546775268, 38.590561349777261 ], [ -90.221466602447222, 38.5904934279055 ], [ -90.221903792842966, 38.590547611456039 ], [ -90.221889692809512, 38.590615531462909 ], [ -90.221452546775268, 38.590561349777261 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11553000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222017923502591, 38.589278452704534 ], [ -90.222028848449369, 38.589275535327943 ], [ -90.221964800211666, 38.589584855520293 ], [ -90.221878878544899, 38.589574219886096 ], [ -90.221935554341457, 38.589300452204185 ], [ -90.222017923502591, 38.589278452704534 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11553000350", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221964800211666, 38.589584855520293 ], [ -90.222028848449369, 38.589275535327943 ], [ -90.22209453714126, 38.589257990873406 ], [ -90.22214796430184, 38.589264686502851 ], [ -90.222078732215564, 38.589598959127073 ], [ -90.221964800211666, 38.589584855520293 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11553000380", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222250575694403, 38.589620230066778 ], [ -90.222319780749118, 38.589286218524506 ], [ -90.222403970361825, 38.58929676959017 ], [ -90.222334778804353, 38.589630653281397 ], [ -90.222250575694403, 38.589620230066778 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11554000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221735866637331, 38.591612614830332 ], [ -90.221749988064744, 38.591544594897989 ], [ -90.222187517324983, 38.591598934927028 ], [ -90.222173410021611, 38.591666969361526 ], [ -90.221735866637331, 38.591612614830332 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11554000090", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221721745186528, 38.591680634732633 ], [ -90.221735866637331, 38.591612614830332 ], [ -90.222173410021611, 38.591666969361526 ], [ -90.222159302687871, 38.591735004672124 ], [ -90.221721745186528, 38.591680634732633 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11554000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221707623708568, 38.591748654659796 ], [ -90.221721745186528, 38.591680634732633 ], [ -90.222159302687871, 38.591735004672124 ], [ -90.222145195330512, 38.591803039101464 ], [ -90.221707623708568, 38.591748654659796 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11554000175", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221593951477118, 38.592296186050433 ], [ -90.221601721089542, 38.592258765198551 ], [ -90.221604123438624, 38.592247194435657 ], [ -90.221659856794716, 38.592254135387535 ], [ -90.221657798297159, 38.592264054744177 ], [ -90.221883272088036, 38.592292132450076 ], [ -90.221884396077996, 38.592286711747597 ], [ -90.222040862943047, 38.592306196157274 ], [ -90.222031637214698, 38.592350690990713 ], [ -90.221910873345465, 38.592335652276297 ], [ -90.2218578763175, 38.592329053033083 ], [ -90.221806568195831, 38.592322663186636 ], [ -90.221631792036234, 38.592300898154512 ], [ -90.221593951477118, 38.592296186050433 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11554000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221401709045907, 38.592672553540218 ], [ -90.221471206679539, 38.592336507382335 ], [ -90.221523182538689, 38.592342980045267 ], [ -90.221557649925629, 38.592347272483345 ], [ -90.221558513877838, 38.592347379918984 ], [ -90.221488982128506, 38.592683444994613 ], [ -90.221488118172545, 38.592683337531 ], [ -90.221444913607641, 38.592677945104235 ], [ -90.221401709045907, 38.592672553540218 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11554000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221142478384181, 38.592640200243785 ], [ -90.221211877105418, 38.592304211669209 ], [ -90.221298320269455, 38.592314976961539 ], [ -90.221228889723818, 38.592650985337293 ], [ -90.221142478384181, 38.592640200243785 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11554000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221106121814472, 38.592235435310009 ], [ -90.221120894018767, 38.59216405127345 ], [ -90.221556937940633, 38.592218339690731 ], [ -90.221542116764553, 38.592289731766648 ], [ -90.221335127962121, 38.592263954883101 ], [ -90.221106121814472, 38.592235435310009 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11554000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22113496903701, 38.592096040346476 ], [ -90.22114904288081, 38.592028029386746 ], [ -90.221585180181364, 38.592082303504526 ], [ -90.221571059648284, 38.592150321600279 ], [ -90.22113496903701, 38.592096040346476 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11554000420", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.221332002686935, 38.591143885089124 ], [ -90.221346076153608, 38.591075873214706 ], [ -90.221782876300068, 38.59113004728394 ], [ -90.221768754997697, 38.591198065413131 ], [ -90.221332002686935, 38.591143885089124 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11555000070", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222889942364503, 38.59168617094074 ], [ -90.222904236094053, 38.591618137764996 ], [ -90.223338097558198, 38.591672005397008 ], [ -90.223323801883268, 38.591740050318698 ], [ -90.222889942364503, 38.59168617094074 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11555000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222875649755281, 38.591754203182965 ], [ -90.222889942364503, 38.59168617094074 ], [ -90.223323801883268, 38.591740050318698 ], [ -90.223309506180982, 38.591808095237738 ], [ -90.222875649755281, 38.591754203182965 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11555000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222818476749353, 38.592026333136147 ], [ -90.222832770619135, 38.591958299973548 ], [ -90.223266618906393, 38.592012230912715 ], [ -90.223252323091273, 38.59208027669996 ], [ -90.222818476749353, 38.592026333136147 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11555000130", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222775596133999, 38.592230430771203 ], [ -90.222789890082396, 38.592162398522618 ], [ -90.223223732533214, 38.592216366539326 ], [ -90.223209436635941, 38.59228441234611 ], [ -90.22319514186583, 38.592352457246854 ], [ -90.222761303305887, 38.592298463019887 ], [ -90.222772687056619, 38.592244278710254 ], [ -90.222775596133999, 38.592230430771203 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11555000170", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222707369403736, 38.59283550495352 ], [ -90.222777651890425, 38.59249919228342 ], [ -90.22286421026466, 38.592509971107248 ], [ -90.222932250432066, 38.592518443182421 ], [ -90.222950767520956, 38.592520748985741 ], [ -90.222880307792124, 38.592857087455322 ], [ -90.22286223696166, 38.59285483225721 ], [ -90.222793838584849, 38.592846296222582 ], [ -90.222707369403736, 38.59283550495352 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11555000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222301877708574, 38.592576367222463 ], [ -90.222329497411408, 38.592443387938388 ], [ -90.22234486155044, 38.592445300777463 ], [ -90.222431419796763, 38.592456079042336 ], [ -90.222361491790963, 38.592792338275267 ], [ -90.222275022744753, 38.592781545753517 ], [ -90.222259659700953, 38.592779628404571 ], [ -90.222301877708574, 38.592576367222463 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11555000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222158012366521, 38.592766942277329 ], [ -90.222200161810534, 38.592563672896738 ], [ -90.222301877708574, 38.592576367222463 ], [ -90.222259659700953, 38.592779628404571 ], [ -90.222216516975735, 38.592774243603074 ], [ -90.222158012366521, 38.592766942277329 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11555000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222267888372173, 38.59223705258357 ], [ -90.222281996873036, 38.592169011858921 ], [ -90.222706483466638, 38.592221830860076 ], [ -90.222692189437979, 38.592289861285174 ], [ -90.222267888372173, 38.59223705258357 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11555000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222394863914673, 38.591624685941483 ], [ -90.222408972172488, 38.591556645193627 ], [ -90.222835119334434, 38.591609556839408 ], [ -90.22282082669949, 38.591677587290867 ], [ -90.222394863914673, 38.591624685941483 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11556000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223207540230959, 38.590163263670526 ], [ -90.223221586626934, 38.590095513646432 ], [ -90.223649301588893, 38.590148473747263 ], [ -90.223635073145275, 38.590216205381182 ], [ -90.223207540230959, 38.590163263670526 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11556000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223193493808225, 38.590231013692076 ], [ -90.223207540230959, 38.590163263670526 ], [ -90.223635073145275, 38.590216205381182 ], [ -90.22362084352352, 38.590283937915927 ], [ -90.223193493808225, 38.590231013692076 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11556000045", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223179446211162, 38.59029876370834 ], [ -90.223193493808225, 38.590231013692076 ], [ -90.22362084352352, 38.590283937915927 ], [ -90.223606615025702, 38.59035166954466 ], [ -90.223592385346336, 38.590419402046763 ], [ -90.223165399734896, 38.590366513724739 ], [ -90.223179446211162, 38.59029876370834 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11556000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223151352084273, 38.590434263735887 ], [ -90.223165399734896, 38.590366513724739 ], [ -90.223592385346336, 38.590419402046763 ], [ -90.223578156794289, 38.590487133670294 ], [ -90.223151352084273, 38.590434263735887 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11556000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222586332996343, 38.590701268198231 ], [ -90.222600378911594, 38.590633524570201 ], [ -90.223028152654024, 38.590686534857511 ], [ -90.223014105961425, 38.590754283944406 ], [ -90.222586332996343, 38.590701268198231 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11556000230", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22267061154291, 38.590294801841672 ], [ -90.222672434806768, 38.590286007133244 ], [ -90.222684657301016, 38.590227057292161 ], [ -90.223112434542628, 38.59028004026051 ], [ -90.223098388010627, 38.590347789362731 ], [ -90.22267061154291, 38.590294801841672 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11556000250", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.222698703028868, 38.590159313646247 ], [ -90.222712749880984, 38.590091569094319 ], [ -90.223140527522872, 38.590144542927057 ], [ -90.223126481047913, 38.59021229112826 ], [ -90.222698703028868, 38.590159313646247 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11557000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223731368385685, 38.590770564980026 ], [ -90.223742080063857, 38.590719576279668 ], [ -90.223745583976751, 38.590702898196746 ], [ -90.224171030413331, 38.590755788011172 ], [ -90.224156768263043, 38.590823425025832 ], [ -90.223731368385685, 38.590770564980026 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11557000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223774013933777, 38.590567564564743 ], [ -90.223783127328801, 38.590524187345274 ], [ -90.223788229440203, 38.590499898679795 ], [ -90.224213815564326, 38.590552876042679 ], [ -90.224199553495396, 38.590620513065168 ], [ -90.223774013933777, 38.590567564564743 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11557000280", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22390437851513, 38.589947004152101 ], [ -90.223906521501846, 38.589936802998608 ], [ -90.224332498351728, 38.589990018700803 ], [ -90.224330008371766, 38.590001828049843 ], [ -90.224327910008896, 38.590011780672306 ], [ -90.224313648153512, 38.590079417715678 ], [ -90.223887723254649, 38.590026291254702 ], [ -90.223901949099897, 38.589958566803212 ], [ -90.22390437851513, 38.589947004152101 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11558000045", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224003801089481, 38.591801142415655 ], [ -90.224018001631535, 38.591733797178186 ], [ -90.224440053798489, 38.591786218594059 ], [ -90.224425882253954, 38.591853585561012 ], [ -90.224417283689348, 38.591894458675448 ], [ -90.223995180446735, 38.591842024453882 ], [ -90.224003801089481, 38.591801142415655 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11558000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223989600517029, 38.591868487650522 ], [ -90.223995180446735, 38.591842024453882 ], [ -90.224417283689348, 38.591894458675448 ], [ -90.224411709534863, 38.591920952550183 ], [ -90.224397537943389, 38.591988317727157 ], [ -90.223975399924626, 38.591935831976663 ], [ -90.223989600517029, 38.591868487650522 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11558000130", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223806744307979, 38.59273565628606 ], [ -90.223809119902, 38.592724389910927 ], [ -90.223895504214283, 38.592735170254031 ], [ -90.223925497212107, 38.592738912759529 ], [ -90.223874417590082, 38.592981146083289 ], [ -90.223844424494288, 38.592977403564511 ], [ -90.223758039896495, 38.592966624061809 ], [ -90.223806744307979, 38.59273565628606 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11558000145", "numunits (2020)": 20, "numunits (2018)": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223346169942147, 38.592561905318377 ], [ -90.223350679542193, 38.592540443174556 ], [ -90.223783329652008, 38.592594431544768 ], [ -90.223779041429722, 38.592614769001287 ], [ -90.223771905306862, 38.592648609539324 ], [ -90.223754498691022, 38.592731157827266 ], [ -90.223706209151672, 38.592960155450925 ], [ -90.223477080746264, 38.592931561833154 ], [ -90.223291113764887, 38.592908354072044 ], [ -90.223356573003954, 38.592596781694006 ], [ -90.223339296187788, 38.592594625726797 ], [ -90.223346169942147, 38.592561905318377 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11558000190", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223428369086108, 38.592170652403098 ], [ -90.223443803538686, 38.592097186790603 ], [ -90.223876816424749, 38.592151087360868 ], [ -90.223861322667574, 38.592224564616089 ], [ -90.223428369086108, 38.592170652403098 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11558000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223546953206665, 38.591606198486915 ], [ -90.223561097834988, 38.59153886758773 ], [ -90.223994565826146, 38.591592673318139 ], [ -90.223980365301188, 38.591660015835963 ], [ -90.223546953206665, 38.591606198486915 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11558000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.223561097834988, 38.59153886758773 ], [ -90.223575243587561, 38.591471535782496 ], [ -90.224008766327813, 38.591525330770288 ], [ -90.223994565826146, 38.591592673318139 ], [ -90.223561097834988, 38.59153886758773 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11560000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225142193178343, 38.591611411535425 ], [ -90.225155899105829, 38.591544046986286 ], [ -90.225582546456224, 38.591596947081804 ], [ -90.22556858844699, 38.591664294891174 ], [ -90.225142193178343, 38.591611411535425 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11560000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225128487228375, 38.591678776082119 ], [ -90.225142193178343, 38.591611411535425 ], [ -90.22556858844699, 38.591664294891174 ], [ -90.225554630411338, 38.591731642698058 ], [ -90.225128487228375, 38.591678776082119 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11560000045", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225089973100538, 38.591868070542262 ], [ -90.225101075246897, 38.591813505195553 ], [ -90.225526714264248, 38.591866338276759 ], [ -90.225515408159609, 38.591920889704866 ], [ -90.225089973100538, 38.591868070542262 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11560000055", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225087369218997, 38.591880869734858 ], [ -90.225089973100538, 38.591868070542262 ], [ -90.225515408159609, 38.591920889704866 ], [ -90.225512756152682, 38.591933685169884 ], [ -90.225504381499803, 38.591974094030022 ], [ -90.22507914467235, 38.591921287922418 ], [ -90.225087369218997, 38.591880869734858 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11560000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225046249824729, 38.592082963362749 ], [ -90.225059955934071, 38.592015598830841 ], [ -90.225484839846928, 38.592068380733423 ], [ -90.225470881652583, 38.592135728525129 ], [ -90.225046249824729, 38.592082963362749 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11560000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225018837535089, 38.592217692419155 ], [ -90.225025964923191, 38.592182662604444 ], [ -90.225450223205328, 38.592235402666176 ], [ -90.225442965188051, 38.592270423194833 ], [ -90.225429005766927, 38.592337771854972 ], [ -90.225005131347785, 38.592285056943645 ], [ -90.225018837535089, 38.592217692419155 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11560000190", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224700791099622, 38.59308426671388 ], [ -90.224765928044519, 38.592764135235555 ], [ -90.224852312555072, 38.59277491399434 ], [ -90.224810183600439, 38.592981967245699 ], [ -90.224787175979941, 38.593095046427663 ], [ -90.224700791099622, 38.59308426671388 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11560000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224646251261149, 38.593077461536232 ], [ -90.224713540886881, 38.592757597284177 ], [ -90.224765928044519, 38.592764135235555 ], [ -90.224700791099622, 38.59308426671388 ], [ -90.224673520603474, 38.593080864140617 ], [ -90.224646251261149, 38.593077461536232 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11560000250", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224457817523586, 38.592544602886619 ], [ -90.224472102580179, 38.59247669653368 ], [ -90.224902085778922, 38.5925302943158 ], [ -90.224888253100346, 38.592598276551627 ], [ -90.224457817523586, 38.592544602886619 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11560000260", "numunits (2020)": 1, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224472102580179, 38.59247669653368 ], [ -90.224486388757072, 38.592408790180798 ], [ -90.224915917279972, 38.592462312980935 ], [ -90.224902085778922, 38.5925302943158 ], [ -90.224472102580179, 38.59247669653368 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11560000396", "numunits (2020)": 2, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22452185664261, 38.593061938613765 ], [ -90.224589146801279, 38.592742075367916 ], [ -90.224651343839099, 38.592749836328835 ], [ -90.224622561177668, 38.59288665305791 ], [ -90.224629472866582, 38.592887515190348 ], [ -90.224590964499995, 38.593070562676651 ], [ -90.22452185664261, 38.593061938613765 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11561000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.220074076565211, 38.589182690643838 ], [ -90.220109891790884, 38.589009243419298 ], [ -90.220136716501344, 38.589012597364118 ], [ -90.220196328383025, 38.589020050946722 ], [ -90.220272812286453, 38.589029614046041 ], [ -90.220282766152437, 38.58903085844058 ], [ -90.220294770218572, 38.589032359982284 ], [ -90.220258125746284, 38.589209903416517 ], [ -90.220246120503745, 38.589208401895696 ], [ -90.220180338336661, 38.589200176869248 ], [ -90.220181178232949, 38.589196110452789 ], [ -90.220160515543043, 38.589193527035526 ], [ -90.220074076565211, 38.589182690643838 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11562000070", "numunits (2020)": 3, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225350922208506, 38.591262783255615 ], [ -90.22522305723443, 38.591246919666759 ], [ -90.225238465883024, 38.591173669051109 ], [ -90.225240177312585, 38.591165530784707 ], [ -90.225254444970673, 38.591097706271789 ], [ -90.225675177025764, 38.591150005726661 ], [ -90.225661124480212, 38.591217810994813 ], [ -90.22565943836085, 38.591225946607942 ], [ -90.225460841310166, 38.591201284872731 ], [ -90.22536632722985, 38.591189547936956 ], [ -90.225353774571062, 38.591249220693037 ], [ -90.225350922208506, 38.591262783255615 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11562000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225353774571062, 38.591249220693037 ], [ -90.22536632722985, 38.591189547936956 ], [ -90.225460841310166, 38.591201284872731 ], [ -90.22565943836085, 38.591225946607942 ], [ -90.225647071907943, 38.591285615326782 ], [ -90.225644260932555, 38.591299176208274 ], [ -90.225451315386152, 38.59127523843285 ], [ -90.225350922208506, 38.591262783255615 ], [ -90.225353774571062, 38.591249220693037 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11562000090", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225208789523336, 38.591314742361625 ], [ -90.22522305723443, 38.591246919666759 ], [ -90.225350922208506, 38.591262783255615 ], [ -90.225451315386152, 38.59127523843285 ], [ -90.225644260932555, 38.591299176208274 ], [ -90.225638640126306, 38.591326297946175 ], [ -90.225630208331623, 38.591366980537174 ], [ -90.225446310447936, 38.591344184625257 ], [ -90.225208789523336, 38.591314742361625 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11562000101", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224746186861992, 38.591173824256508 ], [ -90.224750218895437, 38.59115465460453 ], [ -90.225178101401355, 38.591207765396419 ], [ -90.225174071828647, 38.591226921531444 ], [ -90.225156949341766, 38.591308316712841 ], [ -90.224729052220511, 38.591255274265443 ], [ -90.224746186861992, 38.591173824256508 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11562000130", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.224803298994871, 38.590902324704878 ], [ -90.224817577530189, 38.590834449825493 ], [ -90.225245413755374, 38.590887774665191 ], [ -90.225231144966813, 38.590955603680122 ], [ -90.225229551618071, 38.590963178264957 ], [ -90.224801704437709, 38.590909903784372 ], [ -90.224803298994871, 38.590902324704878 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11564000100", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.225743388663474, 38.592873287810569 ], [ -90.225757455498226, 38.592805415035507 ], [ -90.226164578303994, 38.592856423336514 ], [ -90.226150512880366, 38.592924325902061 ], [ -90.226136447429866, 38.59299222753144 ], [ -90.226122380804938, 38.593060130089171 ], [ -90.226108315300692, 38.593128032647023 ], [ -90.225968930374222, 38.593110528614226 ], [ -90.225962923939818, 38.593109774060302 ], [ -90.225701186867767, 38.5930769033994 ], [ -90.22571525377613, 38.593009031538138 ], [ -90.225718972201378, 38.592991091766805 ], [ -90.225729321808785, 38.592941159676997 ], [ -90.225743388663474, 38.592873287810569 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11565000070", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227412826551202, 38.592525720599127 ], [ -90.227427090691663, 38.592458056188484 ], [ -90.227832533238427, 38.592508486331049 ], [ -90.227818208739805, 38.592576121819015 ], [ -90.22780851803968, 38.592621877290718 ], [ -90.227403181532367, 38.592571471639992 ], [ -90.227412826551202, 38.592525720599127 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11565000160", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227371839297319, 38.593419264004623 ], [ -90.227444017958277, 38.593077992620323 ], [ -90.227445011577856, 38.593078116569117 ], [ -90.227531704427236, 38.593088917460889 ], [ -90.227459468425209, 38.593430280644746 ], [ -90.227372831773963, 38.593419387923902 ], [ -90.227371839297319, 38.593419264004623 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11565000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227134860780524, 38.593389469252806 ], [ -90.227206897237991, 38.593048450858269 ], [ -90.227271666118085, 38.593056520040818 ], [ -90.227199588372144, 38.593397607741281 ], [ -90.227134860780524, 38.593389469252806 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11565000185", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.227084095513433, 38.59338308657729 ], [ -90.227156102151994, 38.593042123118089 ], [ -90.227184988263531, 38.593045721654775 ], [ -90.227206897237991, 38.593048450858269 ], [ -90.227134860780524, 38.593389469252806 ], [ -90.227112964420968, 38.593386716642435 ], [ -90.227084095513433, 38.59338308657729 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11565000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.226968601550865, 38.59336856620294 ], [ -90.22704053823611, 38.593027725175219 ], [ -90.227098313878031, 38.593034923240083 ], [ -90.227156102151994, 38.593042123118089 ], [ -90.227084095513433, 38.59338308657729 ], [ -90.227026342788008, 38.593375825512332 ], [ -90.226968601550865, 38.59336856620294 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11567000010", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229314410715432, 38.590440001771 ], [ -90.229371386853543, 38.590169720349401 ], [ -90.229497944616597, 38.590185572829284 ], [ -90.229440508083158, 38.590456618102166 ], [ -90.229314410715432, 38.590440001771 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11567000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229281762735695, 38.590594877287053 ], [ -90.229314410715432, 38.590440001771 ], [ -90.229440508083158, 38.590456618102166 ], [ -90.229436590082713, 38.590475106204387 ], [ -90.229408169611432, 38.590609222305922 ], [ -90.229281762735695, 38.590594877287053 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11567000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229274107031202, 38.590631193527663 ], [ -90.229281762735695, 38.590594877287053 ], [ -90.229408169611432, 38.590609222305922 ], [ -90.229375310994754, 38.590764283861972 ], [ -90.229249230319638, 38.59074920082319 ], [ -90.229274107031202, 38.590631193527663 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11567000180", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228339557590701, 38.591119207802059 ], [ -90.22836549734204, 38.590996715832375 ], [ -90.228716850990011, 38.591039600844177 ], [ -90.228775890136376, 38.591046807313703 ], [ -90.228771931486847, 38.591065368256942 ], [ -90.228750315447883, 38.59116671734585 ], [ -90.228749765120611, 38.591169296228074 ], [ -90.228690699495687, 38.591162084302269 ], [ -90.228339557590701, 38.591119207802059 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11568000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228627450315585, 38.592190244942223 ], [ -90.228641804172995, 38.592122515726686 ], [ -90.229076048068492, 38.592176462074818 ], [ -90.229061686412166, 38.592244232761509 ], [ -90.229055941742686, 38.592271341771379 ], [ -90.228621708990914, 38.59221733683146 ], [ -90.228627450315585, 38.592190244942223 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11568000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228555681741739, 38.592528894662721 ], [ -90.228570035739324, 38.592461164526711 ], [ -90.229004238365675, 38.592515319158856 ], [ -90.228989875421519, 38.592583090735886 ], [ -90.228555681741739, 38.592528894662721 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11568000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228483911340462, 38.592867543381139 ], [ -90.228498265474613, 38.592799813285765 ], [ -90.228932426831093, 38.592854176174384 ], [ -90.228918064904448, 38.59292194686217 ], [ -90.228483911340462, 38.592867543381139 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11568000160", "numunits (2020)": 7, "numunits (2018)": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228047830558907, 38.593504250075178 ], [ -90.22812021327546, 38.593162529212087 ], [ -90.228206817611337, 38.593173416829273 ], [ -90.22826888554124, 38.593181219723846 ], [ -90.228293423124995, 38.593184304357671 ], [ -90.228380027514049, 38.593195191819376 ], [ -90.22830763222268, 38.593536911001394 ], [ -90.228221032025274, 38.593526024402088 ], [ -90.228134430703378, 38.593515137708671 ], [ -90.228047830558907, 38.593504250075178 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11568000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228168943488996, 38.591924842083486 ], [ -90.228184710799312, 38.591850391012208 ], [ -90.228355805256029, 38.591871594497619 ], [ -90.228617178245884, 38.591903986304452 ], [ -90.228601390537008, 38.591978482419897 ], [ -90.228587037842331, 38.592046205346655 ], [ -90.228572685113448, 38.592113929176932 ], [ -90.228558333515096, 38.592181651194934 ], [ -90.228125943126756, 38.592127890998789 ], [ -90.228140276605913, 38.592060208615429 ], [ -90.228154610064493, 38.591992524444628 ], [ -90.228168943488996, 38.591924842083486 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11569000025", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229790527319921, 38.592265259199515 ], [ -90.229805110049341, 38.592197431266655 ], [ -90.230233597777158, 38.592250363701254 ], [ -90.230219244058276, 38.592318140864329 ], [ -90.229790527319921, 38.592265259199515 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11569000035", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229775944559194, 38.592333087129674 ], [ -90.229790527319921, 38.592265259199515 ], [ -90.230219244058276, 38.592318140864329 ], [ -90.2302048891612, 38.592385919834413 ], [ -90.229775944559194, 38.592333087129674 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11569000040", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229746778961271, 38.592468743009434 ], [ -90.229761361774095, 38.592400915084639 ], [ -90.230190535387635, 38.592453696992202 ], [ -90.23017618043572, 38.592521475050866 ], [ -90.229746778961271, 38.592468743009434 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11569000130", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229600948125167, 38.593147027598434 ], [ -90.229615532370545, 38.593079198797049 ], [ -90.230046990392864, 38.593131475688772 ], [ -90.230032636318427, 38.593199252817612 ], [ -90.229600948125167, 38.593147027598434 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11569000131", "numunits (2020)": 2, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229570322732627, 38.593289468279437 ], [ -90.229586365003101, 38.593214856399761 ], [ -90.229600948125167, 38.593147027598434 ], [ -90.230032636318427, 38.593199252817612 ], [ -90.230019379474982, 38.593261845141477 ], [ -90.229991715844477, 38.593258504138134 ], [ -90.229990618584097, 38.593263688967653 ], [ -90.229750681733634, 38.593234705342944 ], [ -90.229745126812432, 38.593260541836237 ], [ -90.229645055829039, 38.59324847397491 ], [ -90.229634576734071, 38.593297216909534 ], [ -90.229570322732627, 38.593289468279437 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11569000145", "numunits (2020)": 3, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229843239942753, 38.593505265780649 ], [ -90.229869602028003, 38.593381124058844 ], [ -90.229991015931446, 38.593395765969873 ], [ -90.229964721745986, 38.593519915975463 ], [ -90.229843239942753, 38.593505265780649 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11569000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229450314209672, 38.593679884382766 ], [ -90.229522021917191, 38.593339207050434 ], [ -90.22952270691178, 38.593339289714024 ], [ -90.229609431510667, 38.593349748618138 ], [ -90.229664544287033, 38.593356394251643 ], [ -90.229592423292118, 38.593697563503511 ], [ -90.229537028795647, 38.593690672141655 ], [ -90.229450314209672, 38.593679884382766 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11569000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229259494252645, 38.593656145188461 ], [ -90.229330834100864, 38.593316149102911 ], [ -90.229349260078905, 38.593318371690913 ], [ -90.22943193089074, 38.593328342117573 ], [ -90.22936035370553, 38.59366869268348 ], [ -90.229277057223328, 38.593658329773184 ], [ -90.229259494252645, 38.593656145188461 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11569000221", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.228982583010875, 38.593621693786055 ], [ -90.229023086370972, 38.593430570266975 ], [ -90.229126028605236, 38.593443511039759 ], [ -90.229124400356412, 38.593451303593227 ], [ -90.229119495756976, 38.593474770422709 ], [ -90.229089969966495, 38.593616027017532 ], [ -90.229087283874321, 38.593628881052538 ], [ -90.229086244755123, 38.593633847980954 ], [ -90.229086093962749, 38.593634571952826 ], [ -90.228982583010875, 38.593621693786055 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11569000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229124916402483, 38.592950064951481 ], [ -90.229130676284015, 38.592922887520594 ], [ -90.229566786379863, 38.59297584355965 ], [ -90.229560952208175, 38.593002977620174 ], [ -90.229549283824497, 38.593057252000591 ], [ -90.229113397773816, 38.593004419814662 ], [ -90.229124916402483, 38.592950064951481 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11569000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229139315519191, 38.592882122264577 ], [ -90.229147954744462, 38.592841357007565 ], [ -90.229584288891601, 38.592894435142277 ], [ -90.229575537649154, 38.592935137099829 ], [ -90.229566786379863, 38.59297584355965 ], [ -90.229130676284015, 38.592922887520594 ], [ -90.229139315519191, 38.592882122264577 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11569008011", "numunits (2020)": 4, "numunits (2018)": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229819692751065, 38.592129603303633 ], [ -90.229835733344046, 38.592054993210397 ], [ -90.230263742339304, 38.592108029822974 ], [ -90.230247952619621, 38.592182585632067 ], [ -90.230233597777158, 38.592250363701254 ], [ -90.229805110049341, 38.592197431266655 ], [ -90.229819692751065, 38.592129603303633 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11569008143", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229634576734071, 38.593297216909534 ], [ -90.229645055829039, 38.59324847397491 ], [ -90.229745126812432, 38.593260541836237 ], [ -90.229750681733634, 38.593234705342944 ], [ -90.229990618584097, 38.593263688967653 ], [ -90.229991715844477, 38.593258504138134 ], [ -90.230019379474982, 38.593261845141477 ], [ -90.230018281065639, 38.593267030847301 ], [ -90.230002490831438, 38.593341586606876 ], [ -90.229901384746213, 38.593329393129999 ], [ -90.229634576734071, 38.593297216909534 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11570000100", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22999833958896, 38.591633856747663 ], [ -90.230021472298034, 38.591525538002024 ], [ -90.230377771335569, 38.591569605055398 ], [ -90.230354821483289, 38.591677971136278 ], [ -90.22999833958896, 38.591633856747663 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11570000130", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229829781293631, 38.591580298750493 ], [ -90.229849950893822, 38.591568898374632 ], [ -90.229938907379918, 38.591579922526101 ], [ -90.229953294902487, 38.59159560317687 ], [ -90.229889386216385, 38.591894845188378 ], [ -90.229765872112679, 38.591879539787421 ], [ -90.229829781293631, 38.591580298750493 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11570000140", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229362375793912, 38.591829538833693 ], [ -90.229378436118566, 38.591753752271963 ], [ -90.229503127078942, 38.591769212118294 ], [ -90.22974748833505, 38.591799508240527 ], [ -90.229731310296103, 38.591875256743258 ], [ -90.229498943186897, 38.591846462068389 ], [ -90.229487068056017, 38.591844990627067 ], [ -90.229362375793912, 38.591829538833693 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11570000210", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229505050224887, 38.591156267800436 ], [ -90.229533728972328, 38.591020935151391 ], [ -90.229658403502256, 38.591036467781528 ], [ -90.230061968020422, 38.591086747160723 ], [ -90.230033083936931, 38.591221994755429 ], [ -90.229629728475544, 38.591171786959627 ], [ -90.229505050224887, 38.591156267800436 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11570000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.229533728972328, 38.591020935151391 ], [ -90.229545796155421, 38.590963987827756 ], [ -90.229670469421919, 38.590979526757771 ], [ -90.230074121906881, 38.59102983510224 ], [ -90.230061968020422, 38.591086747160723 ], [ -90.229658403502256, 38.591036467781528 ], [ -90.229533728972328, 38.591020935151391 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11570000295", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.22994582440549, 38.590577786302653 ], [ -90.230015516404677, 38.59025040101686 ], [ -90.230234715301407, 38.590277856340016 ], [ -90.230164816823489, 38.590605156597626 ], [ -90.22994582440549, 38.590577786302653 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11571000050", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231119667393486, 38.59144936088348 ], [ -90.2311481426688, 38.591315177808774 ], [ -90.231587316623646, 38.59137113152331 ], [ -90.231559237690732, 38.591504513800061 ], [ -90.231119667393486, 38.59144936088348 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11571000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231102582409065, 38.591529870531645 ], [ -90.231119667393486, 38.59144936088348 ], [ -90.231559237690732, 38.591504513800061 ], [ -90.231542285099763, 38.59158504723738 ], [ -90.231102582409065, 38.591529870531645 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11571000090", "numunits (2020)": 4, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231027384840118, 38.591884230900611 ], [ -90.231055479582196, 38.591751840680111 ], [ -90.231218522814231, 38.591799743815429 ], [ -90.231245421706802, 38.591807646697568 ], [ -90.231224100728284, 38.591908928453492 ], [ -90.231207012104804, 38.591990108354807 ], [ -90.231192770022602, 38.592057759776466 ], [ -90.231181774918213, 38.59205637880126 ], [ -90.231143369506384, 38.59205155585434 ], [ -90.230995809374363, 38.592033025584342 ], [ -90.231010161775728, 38.59196539066749 ], [ -90.231027384840118, 38.591884230900611 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11571000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230670274549979, 38.591193267799284 ], [ -90.230671864789315, 38.591185759803921 ], [ -90.231110683296905, 38.591240985669224 ], [ -90.231109129377813, 38.591248308156644 ], [ -90.231101953303579, 38.591282124733574 ], [ -90.231094777222523, 38.591315941309844 ], [ -90.230838461894692, 38.591283790931875 ], [ -90.230655951855582, 38.591260897369182 ], [ -90.230670274549979, 38.591193267799284 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11571000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230756209020797, 38.590787486780144 ], [ -90.230760137260305, 38.590768936490115 ], [ -90.231199176737931, 38.59082396161142 ], [ -90.231195240568354, 38.590842512804201 ], [ -90.231181825587569, 38.590905731929062 ], [ -90.230742821224638, 38.590850703226117 ], [ -90.230756209020797, 38.590787486780144 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11571000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230799175316577, 38.590584596220182 ], [ -90.230813497741991, 38.590516965745401 ], [ -90.231252648251456, 38.590571981914323 ], [ -90.231238296372453, 38.590639614187658 ], [ -90.231232145065036, 38.590668599826223 ], [ -90.230793037615229, 38.590613580988197 ], [ -90.230799175316577, 38.590584596220182 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11571000250", "numunits (2020)": 5, "numunits (2018)": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230827820140362, 38.590449336146705 ], [ -90.230847871225336, 38.590354653281196 ], [ -90.230999824635816, 38.590373684765311 ], [ -90.231287093111533, 38.590409663169048 ], [ -90.23126700009972, 38.590504349638351 ], [ -90.231252648251456, 38.590571981914323 ], [ -90.230813497741991, 38.590516965745401 ], [ -90.230827820140362, 38.590449336146705 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11571000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231373736787418, 38.590751120025296 ], [ -90.231441949502624, 38.5904290574668 ], [ -90.23154498215689, 38.590441961199993 ], [ -90.231476891475594, 38.590764046613771 ], [ -90.231373736787418, 38.590751120025296 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11572000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230918103349538, 38.592399207049198 ], [ -90.230932509644447, 38.592331319095479 ], [ -90.231373533112645, 38.592386659819219 ], [ -90.231359243186816, 38.592454540871294 ], [ -90.230918103349538, 38.592399207049198 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11572000040", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23090369703398, 38.592467094094133 ], [ -90.230918103349538, 38.592399207049198 ], [ -90.231359243186816, 38.592454540871294 ], [ -90.231344953237041, 38.592522421014607 ], [ -90.23090369703398, 38.592467094094133 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11572000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230889290684161, 38.592534982015103 ], [ -90.23090369703398, 38.592467094094133 ], [ -90.231344953237041, 38.592522421014607 ], [ -90.231330663259897, 38.592590301182753 ], [ -90.230889290684161, 38.592534982015103 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11572000240", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230183231793461, 38.593492246974314 ], [ -90.230197673513601, 38.593424339380448 ], [ -90.230635759139318, 38.59347894550212 ], [ -90.230621351171777, 38.593546836120154 ], [ -90.230183231793461, 38.593492246974314 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11572000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230212061277967, 38.593356425371987 ], [ -90.230226449014836, 38.593288511360889 ], [ -90.230664573833863, 38.593343166122693 ], [ -90.230650165928282, 38.593411055812396 ], [ -90.230212061277967, 38.593356425371987 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11572000290", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230255188840218, 38.593152678745788 ], [ -90.23026959944039, 38.593084768376592 ], [ -90.230707796248453, 38.593139496101372 ], [ -90.230693388421855, 38.593207385799019 ], [ -90.230255188840218, 38.593152678745788 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11572000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230298378113147, 38.592948939432311 ], [ -90.230312766829528, 38.592881026286669 ], [ -90.23075101841205, 38.59293582605622 ], [ -90.230736610671372, 38.593003715789294 ], [ -90.230298378113147, 38.592948939432311 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11572000390", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230413490547733, 38.592405628050138 ], [ -90.230427882487135, 38.592337714891237 ], [ -90.230866277075847, 38.592392706470868 ], [ -90.230851869551771, 38.592460596197668 ], [ -90.230413490547733, 38.592405628050138 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11572000400", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.230442274402449, 38.592269801757119 ], [ -90.230446251818023, 38.592251036287379 ], [ -90.230884666467716, 38.592306052145744 ], [ -90.23088068457254, 38.592324816713962 ], [ -90.23087513585952, 38.59235096321202 ], [ -90.230866277075847, 38.592392706470868 ], [ -90.230427882487135, 38.592337714891237 ], [ -90.230436522081803, 38.592296945031926 ], [ -90.230442274402449, 38.592269801757119 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11573000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232002836458989, 38.592814123644352 ], [ -90.232017128178001, 38.592746234393317 ], [ -90.232454798527556, 38.59280127331769 ], [ -90.23244049797826, 38.592869175178258 ], [ -90.232002836458989, 38.592814123644352 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11573000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231859921191486, 38.593493018572069 ], [ -90.231874117380357, 38.593425581382178 ], [ -90.232311693712973, 38.593480743148859 ], [ -90.232297487553396, 38.59354819116043 ], [ -90.231859921191486, 38.593493018572069 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11573000090", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231845629169143, 38.593560908672984 ], [ -90.231859921191486, 38.593493018572069 ], [ -90.232297487553396, 38.59354819116043 ], [ -90.232283186703668, 38.593616093019627 ], [ -90.231845629169143, 38.593560908672984 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11573000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231523673612131, 38.592684179118599 ], [ -90.231537962262379, 38.592616303455522 ], [ -90.231979597939414, 38.592671829769422 ], [ -90.231965306203705, 38.592739718083045 ], [ -90.231523673612131, 38.592684179118599 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11573000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231566539471217, 38.592480554784999 ], [ -90.231580828039682, 38.592412679114041 ], [ -90.232022471835663, 38.592468165634003 ], [ -90.232008180181722, 38.592536053982954 ], [ -90.231566539471217, 38.592480554784999 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11574000040", "numunits (2020)": 3, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232428646183706, 38.590935760573416 ], [ -90.232436226087003, 38.590911439331087 ], [ -90.232445282429182, 38.590868436039649 ], [ -90.232851155371563, 38.590919288526287 ], [ -90.232836912826144, 38.590986919429646 ], [ -90.232428646183706, 38.590935760573416 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11574000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232354731503577, 38.591204132829056 ], [ -90.232368973374122, 38.591136508274111 ], [ -90.232794183896431, 38.591189808579252 ], [ -90.232779941246065, 38.591257438566039 ], [ -90.232354731503577, 38.591204132829056 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11574000100", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232326247688079, 38.591339381025008 ], [ -90.232340489605932, 38.591271757381392 ], [ -90.232765760503298, 38.591324771417334 ], [ -90.232765697420916, 38.591325068575074 ], [ -90.232751454716265, 38.591392698584116 ], [ -90.232326247688079, 38.591339381025008 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11574000110", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23231200573629, 38.591407005572144 ], [ -90.232326247688079, 38.591339381025008 ], [ -90.232751454716265, 38.591392698584116 ], [ -90.232737211984656, 38.591460328563109 ], [ -90.23231200573629, 38.591407005572144 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11574000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23221231018853, 38.591880373702175 ], [ -90.232220810615715, 38.591840009676481 ], [ -90.23264601001874, 38.591893371727281 ], [ -90.232637508662023, 38.591933739378817 ], [ -90.232631775276445, 38.591960960297115 ], [ -90.232206577807929, 38.591907590977371 ], [ -90.23221231018853, 38.591880373702175 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11574000290", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.231776041564828, 38.591485355821028 ], [ -90.231799961493749, 38.59137172506933 ], [ -90.232254243222883, 38.591428699892646 ], [ -90.232230309037689, 38.591542338832383 ], [ -90.231776041564828, 38.591485355821028 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11574000370", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23217646921745, 38.590882050703428 ], [ -90.232250795028733, 38.590530355948864 ], [ -90.232389404539646, 38.590547713826062 ], [ -90.232314929045373, 38.590899400172098 ], [ -90.23217646921745, 38.590882050703428 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11575000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233424174819106, 38.591579702802306 ], [ -90.233431154783986, 38.591545862215902 ], [ -90.233877417697556, 38.591601847717413 ], [ -90.233874337837392, 38.591616524379496 ], [ -90.233870318602783, 38.591635676362984 ], [ -90.233862510293875, 38.591672883524424 ], [ -90.233416497085813, 38.591616925552472 ], [ -90.233424174819106, 38.591579702802306 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11575000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232875013914125, 38.591816300420952 ], [ -90.232889258934065, 38.591748656897011 ], [ -90.233324882026523, 38.591803326663815 ], [ -90.23331092193601, 38.591871009604709 ], [ -90.232875013914125, 38.591816300420952 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11575000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23290350507439, 38.59168101340051 ], [ -90.232917751194421, 38.591613368061658 ], [ -90.233352804436606, 38.591667958033774 ], [ -90.233338843248347, 38.591735641883268 ], [ -90.23290350507439, 38.59168101340051 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11575000260", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232946243343093, 38.591478080122059 ], [ -90.232960488227562, 38.591410436585086 ], [ -90.233394686698119, 38.591464906440052 ], [ -90.233380725586173, 38.591532591203276 ], [ -90.232946243343093, 38.591478080122059 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11575000270", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232960488227562, 38.591410436585086 ], [ -90.232974734235881, 38.59134279214198 ], [ -90.233408646636065, 38.591397222577847 ], [ -90.233394686698119, 38.591464906440052 ], [ -90.232960488227562, 38.591410436585086 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11575000280", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232974734235881, 38.59134279214198 ], [ -90.232988980217016, 38.591275147723735 ], [ -90.233422607691608, 38.591329538688235 ], [ -90.233408646636065, 38.591397222577847 ], [ -90.232974734235881, 38.59134279214198 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11575000390", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233854519378028, 38.590800436298437 ], [ -90.233868618737674, 38.590732767104875 ], [ -90.234054894106961, 38.590756115526531 ], [ -90.234040696241621, 38.590823774634231 ], [ -90.234026497201654, 38.590891432803126 ], [ -90.234023216444555, 38.590907067563563 ], [ -90.234012299278803, 38.590959091905646 ], [ -90.233998101335786, 38.591026750099424 ], [ -90.233983903359018, 38.591094409169294 ], [ -90.23379812167461, 38.591071114008045 ], [ -90.233812221141676, 38.591003444797309 ], [ -90.233826320578302, 38.590935775611463 ], [ -90.233840419994934, 38.59086810551689 ], [ -90.233854519378028, 38.590800436298437 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000020", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233201217956534, 38.592703574679746 ], [ -90.233215204012183, 38.592635771988611 ], [ -90.23341332433921, 38.592660457324754 ], [ -90.233649000010359, 38.592690307561519 ], [ -90.233634786181653, 38.592758038613766 ], [ -90.233201217956534, 38.592703574679746 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000035", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233173246909459, 38.592839180963097 ], [ -90.233186688342343, 38.592774020266326 ], [ -90.233619986957422, 38.592828555696016 ], [ -90.233606312882344, 38.592893715942573 ], [ -90.233173246909459, 38.592839180963097 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000050", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233145275755575, 38.59297478633011 ], [ -90.233159260773803, 38.592906983646579 ], [ -90.23359208378433, 38.592961519033111 ], [ -90.233577854665995, 38.593029321214892 ], [ -90.233145275755575, 38.59297478633011 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233117304491799, 38.593110393499281 ], [ -90.233131289559878, 38.593042590820815 ], [ -90.233563625510484, 38.593097125178915 ], [ -90.233549396334439, 38.593164927355495 ], [ -90.233117304491799, 38.593110393499281 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233103318249476, 38.593178196172609 ], [ -90.233117304491799, 38.593110393499281 ], [ -90.233549396334439, 38.593164927355495 ], [ -90.233535167131137, 38.593232729556917 ], [ -90.233103318249476, 38.593178196172609 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233005417228995, 38.593652819353267 ], [ -90.233019402513747, 38.593585015788967 ], [ -90.233449791332689, 38.593639546143336 ], [ -90.233435561939629, 38.59370734829912 ], [ -90.233005417228995, 38.593652819353267 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000190", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233043367849604, 38.594130350104443 ], [ -90.233114556140549, 38.59379188019431 ], [ -90.233200846103188, 38.59380282644905 ], [ -90.233129696244163, 38.594141253250513 ], [ -90.233043367849604, 38.594130350104443 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000280", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232515944835114, 38.593521225773955 ], [ -90.232530209233332, 38.59345349407667 ], [ -90.23296430532217, 38.593508465296111 ], [ -90.232950321168531, 38.593576263447758 ], [ -90.232515944835114, 38.593521225773955 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000300", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23254447475523, 38.593385760567109 ], [ -90.232558739099005, 38.59331802795846 ], [ -90.232992275851387, 38.59337286717814 ], [ -90.23297829060013, 38.593440666238394 ], [ -90.23254447475523, 38.593385760567109 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232615800799763, 38.593047097535752 ], [ -90.232630066158819, 38.592979364916715 ], [ -90.233062200546854, 38.593033875460705 ], [ -90.233048215432234, 38.593101673627523 ], [ -90.232615800799763, 38.593047097535752 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000350", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232630066158819, 38.592979364916715 ], [ -90.232644331490576, 38.592911631388866 ], [ -90.233076185638154, 38.592966076385217 ], [ -90.233062200546854, 38.593033875460705 ], [ -90.232630066158819, 38.592979364916715 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000400", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232715657735199, 38.59257296739014 ], [ -90.232729922900617, 38.592505234752792 ], [ -90.233160094465163, 38.59255928640696 ], [ -90.233146109533834, 38.592627085497696 ], [ -90.232715657735199, 38.59257296739014 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11576000410", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.232729922900617, 38.592505234752792 ], [ -90.232747896581586, 38.592419891794876 ], [ -90.232909528099952, 38.592440186955493 ], [ -90.233177714399773, 38.592473861520411 ], [ -90.233160094465163, 38.59255928640696 ], [ -90.232729922900617, 38.592505234752792 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11577000180", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234274570304422, 38.594285838547876 ], [ -90.234345125115425, 38.593947978168345 ], [ -90.234431783765118, 38.593958970288277 ], [ -90.234555125552291, 38.593974614522324 ], [ -90.234514973196625, 38.594167214622658 ], [ -90.234514912437348, 38.594167505470836 ], [ -90.234514864533594, 38.594167733274212 ], [ -90.234514803774289, 38.594168024122411 ], [ -90.234484709815192, 38.594312375363216 ], [ -90.234446498130367, 38.594307550340815 ], [ -90.23436128574879, 38.594296789412276 ], [ -90.234274570304422, 38.594285838547876 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11577000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233667561794022, 38.594209180724889 ], [ -90.233738519911782, 38.593871031517182 ], [ -90.233825177226223, 38.593882024110613 ], [ -90.233754277051446, 38.594220132038558 ], [ -90.233667561794022, 38.594209180724889 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11577000240", "numunits (2020)": 503, "numunits (2018)": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233574878979198, 38.594197476205409 ], [ -90.2335462205981, 38.594193857217888 ], [ -90.233617199027918, 38.593855642364737 ], [ -90.233738519911782, 38.593871031517182 ], [ -90.233667561794022, 38.594209180724889 ], [ -90.233574878979198, 38.594197476205409 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11577000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233713967462947, 38.593394536713468 ], [ -90.23372820003371, 38.593326719204818 ], [ -90.234164162382697, 38.593381800122373 ], [ -90.234149973701236, 38.593449653809671 ], [ -90.233713967462947, 38.593394536713468 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11577000320", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23372820003371, 38.593326719204818 ], [ -90.233742431422897, 38.593258902597093 ], [ -90.234178351033862, 38.593313947311181 ], [ -90.234164162382697, 38.593381800122373 ], [ -90.23372820003371, 38.593326719204818 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11577000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233742431422897, 38.593258902597093 ], [ -90.233756662784955, 38.593191085986803 ], [ -90.234192538510243, 38.59324609452225 ], [ -90.234178351033862, 38.593313947311181 ], [ -90.233742431422897, 38.593258902597093 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11578000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233935682233678, 38.592338027133358 ], [ -90.233936763003356, 38.592332874685155 ], [ -90.234380699580456, 38.592388608860212 ], [ -90.234379622281125, 38.592393762226486 ], [ -90.234366549860042, 38.592456278916501 ], [ -90.234029880171434, 38.592414008957448 ], [ -90.233946099475432, 38.592403489696252 ], [ -90.233922564698062, 38.592400535543845 ], [ -90.233935682233678, 38.592338027133358 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11578000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.233978268820877, 38.592135080550392 ], [ -90.233979357747032, 38.592129893878408 ], [ -90.234423147439031, 38.592185596943381 ], [ -90.234422063134474, 38.592190784536086 ], [ -90.234408997796152, 38.5922532678861 ], [ -90.233965159526008, 38.592197553866178 ], [ -90.233978268820877, 38.592135080550392 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11578000200", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234020858614727, 38.591932133045773 ], [ -90.234021954542854, 38.591926913053534 ], [ -90.234465596203236, 38.591982585884665 ], [ -90.234464504893339, 38.591987806797619 ], [ -90.234451446644314, 38.592050255956394 ], [ -90.234007755255249, 38.591994573046463 ], [ -90.234020858614727, 38.591932133045773 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11578000210", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234035055535543, 38.591864484770262 ], [ -90.234036153803316, 38.591859253085467 ], [ -90.234479745738483, 38.591914914931628 ], [ -90.234478652092434, 38.591920147564622 ], [ -90.234465596203236, 38.591982585884665 ], [ -90.234021954542854, 38.591926913053534 ], [ -90.234035055535543, 38.591864484770262 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11578000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234063448158736, 38.591729186423983 ], [ -90.2340645510955, 38.591723932232817 ], [ -90.234508044724876, 38.591779573924029 ], [ -90.234506946410022, 38.591784829035973 ], [ -90.234493895243475, 38.591847244882196 ], [ -90.234050353036622, 38.591791592208665 ], [ -90.234063448158736, 38.591729186423983 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11578000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.2340776450053, 38.591661537261999 ], [ -90.234078750278371, 38.591656271323359 ], [ -90.234522193028454, 38.591711903866859 ], [ -90.234521092380788, 38.591717169792645 ], [ -90.234508044724876, 38.591779573924029 ], [ -90.2340645510955, 38.591723932232817 ], [ -90.2340776450053, 38.591661537261999 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11578000310", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234177016424184, 38.591187993811531 ], [ -90.23417813804366, 38.591182648633662 ], [ -90.234621236154624, 38.591238209755261 ], [ -90.234620118013424, 38.591243554917753 ], [ -90.234607086891884, 38.591305879827907 ], [ -90.23416394020073, 38.591250308657678 ], [ -90.234177016424184, 38.591187993811531 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11578000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23424799470682, 38.590849747751975 ], [ -90.234262191202419, 38.590782098556339 ], [ -90.234354952672376, 38.590793725248375 ], [ -90.234340767733926, 38.59086137629366 ], [ -90.234326581621076, 38.590929028239927 ], [ -90.234312396628681, 38.590996679280039 ], [ -90.234298210464928, 38.591064329436286 ], [ -90.234285148216458, 38.591126624503431 ], [ -90.234192335859291, 38.591114987728346 ], [ -90.234205407363177, 38.591052694504775 ], [ -90.234219602785473, 38.590985046192998 ], [ -90.234230813054083, 38.590931626109573 ], [ -90.234233799335186, 38.590917396975073 ], [ -90.23424799470682, 38.590849747751975 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11578000360", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234515808795408, 38.590883317526433 ], [ -90.234529975219289, 38.590815662821029 ], [ -90.234617486536607, 38.590826630589426 ], [ -90.234603330514219, 38.590894288047359 ], [ -90.234589174461419, 38.590961945502706 ], [ -90.234575018381662, 38.591029602955473 ], [ -90.234560862281796, 38.591097259499506 ], [ -90.234547826635293, 38.591159560065456 ], [ -90.234460266752706, 38.59114858131646 ], [ -90.234473311650319, 38.59108628256601 ], [ -90.234487477004137, 38.59101862877187 ], [ -90.234501642341229, 38.590950973135435 ], [ -90.234515808795408, 38.590883317526433 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11579000200", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235453245611879, 38.592333430198707 ], [ -90.235340135305549, 38.592319045971458 ], [ -90.235227023897323, 38.592304661632411 ], [ -90.23511788698795, 38.592290782549213 ], [ -90.235139923096995, 38.592184596350066 ], [ -90.235582366917441, 38.592241100963946 ], [ -90.235560505568287, 38.592347070546587 ], [ -90.235453245611879, 38.592333430198707 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11579000380", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236166292633783, 38.591347323041084 ], [ -90.236231419107213, 38.591030142634949 ], [ -90.236335158129904, 38.591043402272199 ], [ -90.236270115854907, 38.591360593743758 ], [ -90.236166292633783, 38.591347323041084 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11580000135", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235081777562627, 38.594387863305471 ], [ -90.235151224074784, 38.59404915038229 ], [ -90.235154892278359, 38.594049615404813 ], [ -90.235234436215634, 38.594059704432226 ], [ -90.235321300519843, 38.594070721591883 ], [ -90.235408163710247, 38.594081737750955 ], [ -90.235495026927481, 38.594092753873099 ], [ -90.235581891315903, 38.594103770839553 ], [ -90.235703499898818, 38.594119193750373 ], [ -90.235634461457906, 38.594458130420229 ], [ -90.235512738800949, 38.594442672967013 ], [ -90.235425816751885, 38.594431619793077 ], [ -90.235338892418056, 38.594420571052751 ], [ -90.235251966920586, 38.594409533036746 ], [ -90.235165044975574, 38.594398473381247 ], [ -90.23508544577308, 38.594388331021179 ], [ -90.235081777562627, 38.594387863305471 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11580000150", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.234841739597968, 38.594357322351726 ], [ -90.234911362405398, 38.59401872798793 ], [ -90.234973846896764, 38.594026652602032 ], [ -90.234985561736764, 38.594028138447477 ], [ -90.234915997702075, 38.594366762726182 ], [ -90.234904283986197, 38.594365269654553 ], [ -90.234841739597968, 38.594357322351726 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11581000060", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236495273872904, 38.593798254130327 ], [ -90.236502270494867, 38.593763917907523 ], [ -90.236934207128968, 38.593817779486962 ], [ -90.236927204860919, 38.593852145433772 ], [ -90.236913201448814, 38.593920878234151 ], [ -90.236481281749761, 38.593866928361415 ], [ -90.236495273872904, 38.593798254130327 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11581000080", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236453296281709, 38.59400427587974 ], [ -90.236467289606523, 38.593935601656348 ], [ -90.236899196858488, 38.593989611056848 ], [ -90.236885193392268, 38.594058343852119 ], [ -90.236453296281709, 38.59400427587974 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11581000140", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236049006331882, 38.594510292198372 ], [ -90.23611806925922, 38.594171359842989 ], [ -90.236204444323519, 38.594182199564713 ], [ -90.236228815087088, 38.594185257831739 ], [ -90.236247630142302, 38.594187618931009 ], [ -90.236178567803975, 38.594526551391432 ], [ -90.236159752662786, 38.594524190253424 ], [ -90.236135381787733, 38.594521131971817 ], [ -90.236049006331882, 38.594510292198372 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11581000160", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235841707176021, 38.594484277211357 ], [ -90.2359107710583, 38.594145344073915 ], [ -90.236020577081263, 38.594159124819313 ], [ -90.235951513704407, 38.594498057143824 ], [ -90.235841707176021, 38.594484277211357 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11581000180", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.235938315797014, 38.594010160502918 ], [ -90.235952295584525, 38.593941554794633 ], [ -90.236384191936537, 38.593995623707769 ], [ -90.236370200855575, 38.594064288012689 ], [ -90.236369096287703, 38.594069710709817 ], [ -90.235937211197552, 38.594015583195926 ], [ -90.235938315797014, 38.594010160502918 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11581000220", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236022190678668, 38.593598527964637 ], [ -90.236036170307841, 38.593529922241039 ], [ -90.236468136714493, 38.593583638755568 ], [ -90.236454145792123, 38.593652303075835 ], [ -90.236022190678668, 38.593598527964637 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11581000230", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236036170307841, 38.593529922241039 ], [ -90.236050149906802, 38.593461317393547 ], [ -90.236482127606322, 38.593514974432729 ], [ -90.236468136714493, 38.593583638755568 ], [ -90.236036170307841, 38.593529922241039 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11581000240", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236064129478549, 38.593392711664805 ], [ -90.236066916051499, 38.593379033367164 ], [ -90.236498917808547, 38.59343257328495 ], [ -90.236496118474676, 38.593446310107346 ], [ -90.236482127606322, 38.593514974432729 ], [ -90.236050149906802, 38.593461317393547 ], [ -90.236064129478549, 38.593392711664805 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11581000330", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236827998365072, 38.593278324759439 ], [ -90.236897055278675, 38.59293939004219 ], [ -90.236917774816106, 38.592941954431261 ], [ -90.237004177753676, 38.592952648586106 ], [ -90.23693510297133, 38.593291580607918 ], [ -90.236848717993766, 38.593280889160887 ], [ -90.236827998365072, 38.593278324759439 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11581000340", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23693510297133, 38.593291580607918 ], [ -90.237004177753676, 38.592952648586106 ], [ -90.237107860402418, 38.592965480392913 ], [ -90.237038804449867, 38.593304415236311 ], [ -90.23693510297133, 38.593291580607918 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11582000100", "numunits (2020)": 4, "numunits (2018)": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236826464498876, 38.591935044892296 ], [ -90.236856975212731, 38.591870140882008 ], [ -90.237322549901222, 38.591929398813861 ], [ -90.237308692080475, 38.591996182486639 ], [ -90.237294834233509, 38.59206296525079 ], [ -90.237290007752492, 38.592086226304836 ], [ -90.236785695932099, 38.592021768072009 ], [ -90.236795952578902, 38.591999949797291 ], [ -90.236826464498876, 38.591935044892296 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11582000120", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.236734930878612, 38.592129757773549 ], [ -90.236750683766971, 38.592096248357038 ], [ -90.237274046835608, 38.592163141217085 ], [ -90.237267117310836, 38.592196532581319 ], [ -90.237260187776215, 38.592229924878595 ], [ -90.236719675418087, 38.592162209775822 ], [ -90.236734930878612, 38.592129757773549 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11584000120", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237447288026715, 38.594686763597124 ], [ -90.237516544210678, 38.594347855152044 ], [ -90.237602842273674, 38.594358836018543 ], [ -90.237689141507445, 38.594369816824035 ], [ -90.237619811534998, 38.594708715265924 ], [ -90.237533549769125, 38.594697739023943 ], [ -90.237447288026715, 38.594686763597124 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11584000150", "numunits (2020)": 3, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237118737516667, 38.594644958498662 ], [ -90.237188673316368, 38.594306135545111 ], [ -90.237257649037318, 38.59431491219609 ], [ -90.237343947020392, 38.594325893253277 ], [ -90.237274764625013, 38.594664811646773 ], [ -90.237188502965722, 38.594653835123275 ], [ -90.237118737516667, 38.594644958498662 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11584000160", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23698181930817, 38.594627536143399 ], [ -90.237050877975662, 38.594288601417304 ], [ -90.237171349933249, 38.594303931072766 ], [ -90.237188673316368, 38.594306135545111 ], [ -90.237118737516667, 38.594644958498662 ], [ -90.237102240182139, 38.594642859439823 ], [ -90.23698181930817, 38.594627536143399 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11584000170", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237073858823919, 38.594175810749839 ], [ -90.237505060029903, 38.594230678472428 ], [ -90.237504471016578, 38.59423355820666 ], [ -90.237493086859061, 38.59428923401822 ], [ -90.237061926614317, 38.594234371752755 ], [ -90.237073858823919, 38.594175810749839 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11584000290", "numunits (2020)": 1, "numunits (2018)": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.237539724935218, 38.593366773837161 ], [ -90.237608904808667, 38.593027854297929 ], [ -90.237695387987586, 38.593038636403094 ], [ -90.237626171792186, 38.59337755231509 ], [ -90.237539724935218, 38.593366773837161 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11585000030", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238829066624646, 38.593818493397627 ], [ -90.238843029606898, 38.593750590889073 ], [ -90.239274755500048, 38.593804470383731 ], [ -90.239260740034425, 38.593872394437668 ], [ -90.238829066624646, 38.593818493397627 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11585000110", "numunits (2020)": 2, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238930545145692, 38.594873864576655 ], [ -90.239000401494692, 38.594535040394774 ], [ -90.239120885418359, 38.594550146446842 ], [ -90.239050967627279, 38.594888972376332 ], [ -90.238930545145692, 38.594873864576655 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11585000170", "numunits (2020)": 1, "numunits (2018)": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238258225579528, 38.594789513489665 ], [ -90.238327729221282, 38.594450669097114 ], [ -90.238396258197511, 38.594459260297945 ], [ -90.238482563961725, 38.594470090056411 ], [ -90.238412970353551, 38.594808931649418 ], [ -90.238326710140058, 38.59479809381326 ], [ -90.238258225579528, 38.594789513489665 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11585000185", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.23812002311081, 38.594772178820996 ], [ -90.238189464201724, 38.594433346974732 ], [ -90.238309951266231, 38.594448442143424 ], [ -90.238327729221282, 38.594450669097114 ], [ -90.238258225579528, 38.594789513489665 ], [ -90.238240447589064, 38.594787274827745 ], [ -90.23812002311081, 38.594772178820996 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11585000330", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.238852853250918, 38.593530482546825 ], [ -90.238922520201299, 38.593191705664196 ], [ -90.23900900842132, 38.59320247330006 ], [ -90.239033392832496, 38.593205508469595 ], [ -90.238963678126282, 38.593544298849409 ], [ -90.238939294767619, 38.593541259136934 ], [ -90.238852853250918, 38.593530482546825 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d41", "handle": "11586000070", "numunits (2020)": 1, "numunits (2018)": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.239974681177856, 38.593929104233212 ], [ -90.239991863042832, 38.593845878219625 ], [ -90.240422417534916, 38.593900622967944 ], [ -90.240405467931936, 38.593983877456061 ], [ -90.239974681177856, 38.593929104233212 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#007617", "fill": "#00aa22", "handle": "11586000170", "numunits (2020)": 2, "numunits (2018)": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.240068458556252, 38.595016207503207 ], [ -90.240138433659553, 38.594677388316114 ], [ -90.24025910755222, 38.594692471978682 ], [ -90.240189122671438, 38.595031290337374 ], [ -90.240068458556252, 38.595016207503207 ] ] ] } },
{ "type": "Feature", "properties": { "stroke": "#c80004", "fill": "#ff3d4
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment