diff --git a/README.md b/README.md index 6725e4d..938f1b6 100644 --- a/README.md +++ b/README.md @@ -252,3 +252,8 @@ optional arguments: -g, --generate Generate GPT2 text from DeepAI API with key set by environment variable or default. ``` + +## Attribution + +### TX Zip Codes +Original csv file with zip code data obtained from [simplemaps](https://simplemaps.com/data/us-zips), under the [Creative Commons Attribution 4.0 License](https://creativecommons.org/licenses/by/4.0/). Data for all TX zip codes was pulled from the csv file and formatted to JSON in the txzips.json file. \ No newline at end of file diff --git a/bot/data.py b/bot/data.py index ce2b420..10e4c3d 100644 --- a/bot/data.py +++ b/bot/data.py @@ -11,23 +11,8 @@ TEXT_GEN_API_VAR = 'DEEP_AI_KEY' DEFAULT_KEY = '9d414130-ca3d-4169-ab5e-0c0c2f17b65f' -words = [ - 'The', 'he', 'at', 'but', 'there', 'of', 'was', 'be', 'not', 'use', 'and', 'for', 'this', 'what', 'an', 'a', 'on', 'have', 'all', 'each', - 'to', 'are', 'from', 'were', 'which', 'in', 'as', 'or', 'we', 'she', 'is', 'with', 'ine', 'when', 'do', 'you', 'his', 'had', 'your', - 'how', 'that', 'they', 'by', 'can', 'their', 'it', 'I', 'word', 'said', 'if' -] - with open(os.path.join(os.path.dirname(__file__), './data/cities.json')) as cities_file: - cities = json.load(cities_file) - -gop_members = [ - 'Gary VanDeaver', 'Bryan Slaton', 'Cecil Bell Jr.', 'Keith Bell', 'Cole Hefner', 'Matt Schaefer', 'Jay Dean', 'Cody Harris', - 'Chris Paddie', 'Travis Clardy', 'Kyle Kacal', 'Ben Leman', 'John N. Raney', 'Steve Toth', 'Will Metcalf', 'John Cyrier', 'Ernest Bailes', - 'James White', 'Terry Wilson', 'Dade Phelan', 'Mayes Middleton', 'Greg Bonnen', 'Cody Vasut', 'Brooks Landgraf', 'Tom Craddick', - 'Dustin Burrows', 'John Frullo', 'Phil Stephenson', 'John T. Smithee', 'Four Price', 'Ken King', 'Candy Noble', 'Stephanie Klick', - 'Jeff Cason', 'Matt Krause', 'Tony Tinderholt', 'David Cook', 'Craig Goldman', 'Giovanni Capriglione', 'Charlie Geren', 'Sam Harless', - 'Dan Huberty', 'Briscoe Cain', 'Dennis Paul', 'Tom Oliverson', 'Mike Schofield' -] + cities = json.load(cities_file) with open(os.path.join(os.getcwd(), "bot", "data", "firstnameGirl.json")) as fng: firstNames = json.loads(fng.read()) @@ -41,14 +26,31 @@ lastNames = json.loads(ln.read()) lastNames = lastNames["names"] -with open(os.path.join(os.getcwd(), "bot", "data", "zips.json")) as z: - zip_codes = json.loads(z.read()) +with open(os.path.join(os.getcwd(), "bot", "data", "txzips.json")) as zips_file: + zips = json.loads(zips_file.read()) + +words = [ + 'The', 'he', 'at', 'but', 'there', 'of', 'was', 'be', 'not', 'use', 'and', 'for', 'this', 'what', 'an', 'a', 'on', 'have', 'all', 'each', + 'to', 'are', 'from', 'were', 'which', 'in', 'as', 'or', 'we', 'she', 'is', 'with', 'ine', 'when', 'do', 'you', 'his', 'had', 'your', + 'how', 'that', 'they', 'by', 'can', 'their', 'it', 'I', 'word', 'said', 'if' +] + +gop_members = [ + 'Gary VanDeaver', 'Bryan Slaton', 'Cecil Bell Jr.', 'Keith Bell', 'Cole Hefner', 'Matt Schaefer', 'Jay Dean', 'Cody Harris', + 'Chris Paddie', 'Travis Clardy', 'Kyle Kacal', 'Ben Leman', 'John N. Raney', 'Steve Toth', 'Will Metcalf', 'John Cyrier', 'Ernest Bailes', + 'James White', 'Terry Wilson', 'Dade Phelan', 'Mayes Middleton', 'Greg Bonnen', 'Cody Vasut', 'Brooks Landgraf', 'Tom Craddick', + 'Dustin Burrows', 'John Frullo', 'Phil Stephenson', 'John T. Smithee', 'Four Price', 'Ken King', 'Candy Noble', 'Stephanie Klick', + 'Jeff Cason', 'Matt Krause', 'Tony Tinderholt', 'David Cook', 'Craig Goldman', 'Giovanni Capriglione', 'Charlie Geren', 'Sam Harless', + 'Dan Huberty', 'Briscoe Cain', 'Dennis Paul', 'Tom Oliverson', 'Mike Schofield' +] # Seeds for text body generation gpt2_prompts = [ - 'My neighbor got an illegal abortion.', 'I suspect my father has violated the abortion ban.', - random.choice(firstNames) + ' ' + random.choice(lastNames) + ' is helping people get abortions.', - random.choice(gop_members) + ' has been sneaking around the abortion clinic in ' + random.choice(list(cities)) + '.' + 'My neighbor got an illegal abortion.', 'I suspect my father has violated the abortion ban.', + random.choice(firstNames) + ' ' + random.choice(lastNames) + + ' is helping people get abortions.', + random.choice(gop_members) + ' has been sneaking around the abortion clinic in ' + + random.choice(list(cities)) + '.' ] info_location = [ @@ -404,24 +406,35 @@ def anonymous_form(): - while True: - city, county = random.choice(list(cities.items())) - form_data = { - 'textarea-1': get_tip_body(), - 'text-1': random.choice(info_location), - 'text-6': 'Dr. ' + random.choice(maleFirstNames) + ' ' + random.choice(lastNames), - 'text-2': city, - 'text-3': 'Texas', - 'text-4': str(random.randint(75001, 79942)), - 'text-5': county, - 'hidden-1': random.choice(ips) + str(random.randint(0, 255)), - 'checkbox-1[]': 'no', - } - yield form_data + while True: + zipKey = random.choice(list(zips["texaszips"])) + zipObj = zips["texaszips"][zipKey] + + userLocation = { + 'userCity': zipObj["city"], + 'userCounty': zipObj["countyname"], + 'userState': zipObj["statename"] if random.choice([True, False]) else zipObj["stateid"], + 'userZip': zipKey, + } + + form_data = { + 'textarea-1': get_tip_body(), + 'text-1': random.choice(info_location), + 'text-6': 'Dr. ' + random.choice(maleFirstNames) + ' ' + random.choice(lastNames), + 'text-2': userLocation['userCity'], + 'text-3': userLocation['userState'], + 'text-4': userLocation['userZip'], + 'text-5': userLocation['userCounty'], + 'hidden-1': random.choice(ips) + str(random.randint(0, 255)), + 'checkbox-1[]': 'no', + } + yield form_data + def sign_up_page(): - raise NotImplementedError() + raise NotImplementedError() + def get_tip_body(): diff --git a/bot/data/txzips.json b/bot/data/txzips.json new file mode 100644 index 0000000..a501592 --- /dev/null +++ b/bot/data/txzips.json @@ -0,0 +1,36769 @@ +{ + "texaszips": { + "75001": { + "latitude": "32.96", + "longitude": "-96.83849", + "city": "Addison", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14992", + "density": "1510.1", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75002": { + "latitude": "33.08965", + "longitude": "-96.60752", + "city": "Allen", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "71253", + "density": "739.6", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75006": { + "latitude": "32.96188", + "longitude": "-96.89701", + "city": "Carrollton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "51642", + "density": "1186.2", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75007": { + "latitude": "33.00462", + "longitude": "-96.89715", + "city": "Carrollton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "55500", + "density": "1823.7", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"94.21\", \"48113\": \"5.79\"}", + "countynamesall": "Denton|Dallas", + "countyfipsall": "48121|48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75009": { + "latitude": "33.34028", + "longitude": "-96.75033", + "city": "Celina", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14089", + "density": "56.9", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"94.8\", \"48121\": \"5.2\"}", + "countynamesall": "Collin|Denton", + "countyfipsall": "48085|48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75010": { + "latitude": "33.03425", + "longitude": "-96.89673", + "city": "Carrollton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30406", + "density": "1452.9", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75013": { + "latitude": "33.11467", + "longitude": "-96.69411", + "city": "Allen", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "42629", + "density": "1094.6", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75019": { + "latitude": "32.96329", + "longitude": "-96.98553", + "city": "Coppell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "42888", + "density": "1004.9", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"98.05\", \"48121\": \"1.95\"}", + "countynamesall": "Dallas|Denton", + "countyfipsall": "48113|48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75020": { + "latitude": "33.77165", + "longitude": "-96.60414", + "city": "Denison", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23232", + "density": "143.4", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75021": { + "latitude": "33.72616", + "longitude": "-96.47325", + "city": "Denison", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8847", + "density": "56.8", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75022": { + "latitude": "33.02772", + "longitude": "-97.12024", + "city": "Flower Mound", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27201", + "density": "546.8", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"99.09\", \"48439\": \"0.91\"}", + "countynamesall": "Denton|Tarrant", + "countyfipsall": "48121|48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75023": { + "latitude": "33.05706", + "longitude": "-96.73242", + "city": "Plano", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "50431", + "density": "2066.8", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75024": { + "latitude": "33.07735", + "longitude": "-96.80704", + "city": "Plano", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43551", + "density": "1326.6", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"94.2\", \"48121\": \"5.8\"}", + "countynamesall": "Collin|Denton", + "countyfipsall": "48085|48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75025": { + "latitude": "33.09095", + "longitude": "-96.74128", + "city": "Plano", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "53764", + "density": "2219.7", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75028": { + "latitude": "33.0328", + "longitude": "-97.06086", + "city": "Flower Mound", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "47804", + "density": "1217.1", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"99.99\", \"48439\": \"0.01\"}", + "countynamesall": "Denton|Tarrant", + "countyfipsall": "48121|48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75032": { + "latitude": "32.85505", + "longitude": "-96.42772", + "city": "Rockwall", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "33080", + "density": "248.9", + "countyfips": "48397", + "countyname": "Rockwall", + "countyweights": "{\"48397\": \"100\"}", + "countynamesall": "Rockwall", + "countyfipsall": "48397", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75034": { + "latitude": "33.15195", + "longitude": "-96.86036", + "city": "Frisco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "108525", + "density": "837.4", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"65.96\", \"48085\": \"34.04\"}", + "countynamesall": "Denton|Collin", + "countyfipsall": "48121|48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75035": { + "latitude": "33.15534", + "longitude": "-96.77271", + "city": "Frisco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "75485", + "density": "1234.1", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75038": { + "latitude": "32.87457", + "longitude": "-96.99759", + "city": "Irving", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29990", + "density": "865.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75039": { + "latitude": "32.88753", + "longitude": "-96.94224", + "city": "Irving", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "20108", + "density": "1477.5", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75040": { + "latitude": "32.92766", + "longitude": "-96.62008", + "city": "Garland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "62417", + "density": "1539.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75041": { + "latitude": "32.88091", + "longitude": "-96.65147", + "city": "Garland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30880", + "density": "1490.0", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75042": { + "latitude": "32.9139", + "longitude": "-96.67493", + "city": "Garland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39183", + "density": "2021.9", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75043": { + "latitude": "32.85707", + "longitude": "-96.57941", + "city": "Garland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "62601", + "density": "1660.5", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75044": { + "latitude": "32.96264", + "longitude": "-96.65323", + "city": "Garland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43292", + "density": "1556.5", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"99.36\", \"48085\": \"0.64\"}", + "countynamesall": "Dallas|Collin", + "countyfipsall": "48113|48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75048": { + "latitude": "32.972", + "longitude": "-96.58085", + "city": "Sachse", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25598", + "density": "942.2", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"68.91\", \"48085\": \"31.09\"}", + "countynamesall": "Dallas|Collin", + "countyfipsall": "48113|48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75050": { + "latitude": "32.77409", + "longitude": "-97.00532", + "city": "Grand Prairie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43174", + "density": "673.5", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"76.1\", \"48439\": \"23.9\"}", + "countynamesall": "Dallas|Tarrant", + "countyfipsall": "48113|48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75051": { + "latitude": "32.72758", + "longitude": "-96.99437", + "city": "Grand Prairie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40923", + "density": "1301.0", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"90.73\", \"48439\": \"9.27\"}", + "countynamesall": "Dallas|Tarrant", + "countyfipsall": "48113|48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75052": { + "latitude": "32.6659", + "longitude": "-97.02649", + "city": "Grand Prairie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "95495", + "density": "1409.5", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"62.84\", \"48439\": \"37.16\"}", + "countynamesall": "Dallas|Tarrant", + "countyfipsall": "48113|48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75054": { + "latitude": "32.59059", + "longitude": "-97.04051", + "city": "Grand Prairie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11927", + "density": "849.6", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"97.63\", \"48113\": \"2.37\"}", + "countynamesall": "Tarrant|Dallas", + "countyfipsall": "48439|48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75056": { + "latitude": "33.07393", + "longitude": "-96.91484", + "city": "The Colony", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "60554", + "density": "927.2", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75057": { + "latitude": "33.04952", + "longitude": "-96.98383", + "city": "Lewisville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14960", + "density": "567.1", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75058": { + "latitude": "33.45012", + "longitude": "-96.74225", + "city": "Gunter", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2666", + "density": "17.9", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75060": { + "latitude": "32.796", + "longitude": "-96.95446", + "city": "Irving", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "47764", + "density": "1391.5", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75061": { + "latitude": "32.82605", + "longitude": "-96.9655", + "city": "Irving", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "54520", + "density": "1819.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75062": { + "latitude": "32.84702", + "longitude": "-96.95686", + "city": "Irving", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "49306", + "density": "1732.9", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75063": { + "latitude": "32.92046", + "longitude": "-96.98599", + "city": "Irving", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40048", + "density": "1020.9", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75065": { + "latitude": "33.11093", + "longitude": "-97.0119", + "city": "Lake Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12640", + "density": "613.8", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75067": { + "latitude": "33.01371", + "longitude": "-97.00025", + "city": "Lewisville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "68196", + "density": "1980.9", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"98.62\", \"48113\": \"1.38\"}", + "countynamesall": "Denton|Dallas", + "countyfipsall": "48121|48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75068": { + "latitude": "33.17647", + "longitude": "-96.95053", + "city": "Little Elm", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "65991", + "density": "929.5", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75069": { + "latitude": "33.16545", + "longitude": "-96.59468", + "city": "Mckinney", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37892", + "density": "457.0", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75070": { + "latitude": "33.17311", + "longitude": "-96.69773", + "city": "Mckinney", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "104415", + "density": "1687.8", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75071": { + "latitude": "33.24663", + "longitude": "-96.62898", + "city": "Mckinney", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "55570", + "density": "272.2", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75074": { + "latitude": "33.03188", + "longitude": "-96.67428", + "city": "Plano", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "52259", + "density": "1221.7", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75075": { + "latitude": "33.02137", + "longitude": "-96.74103", + "city": "Plano", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38283", + "density": "1499.7", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75076": { + "latitude": "33.79472", + "longitude": "-96.72168", + "city": "Pottsboro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8156", + "density": "63.3", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75077": { + "latitude": "33.07886", + "longitude": "-97.06273", + "city": "Lewisville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37102", + "density": "1025.0", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75078": { + "latitude": "33.24672", + "longitude": "-96.80856", + "city": "Prosper", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28803", + "density": "339.5", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"92.73\", \"48121\": \"7.27\"}", + "countynamesall": "Collin|Denton", + "countyfipsall": "48085|48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75080": { + "latitude": "32.97394", + "longitude": "-96.74202", + "city": "Richardson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "52531", + "density": "1775.5", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"77.52\", \"48085\": \"22.48\"}", + "countynamesall": "Dallas|Collin", + "countyfipsall": "48113|48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75081": { + "latitude": "32.94882", + "longitude": "-96.7102", + "city": "Richardson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40265", + "density": "1684.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75082": { + "latitude": "32.99157", + "longitude": "-96.66234", + "city": "Richardson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23483", + "density": "1157.4", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"88.75\", \"48113\": \"11.25\"}", + "countynamesall": "Collin|Dallas", + "countyfipsall": "48085|48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75087": { + "latitude": "32.94172", + "longitude": "-96.44993", + "city": "Rockwall", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35157", + "density": "518.5", + "countyfips": "48397", + "countyname": "Rockwall", + "countyweights": "{\"48397\": \"99.42\", \"48085\": \"0.58\"}", + "countynamesall": "Rockwall|Collin", + "countyfipsall": "48397|48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75088": { + "latitude": "32.89229", + "longitude": "-96.54917", + "city": "Rowlett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26039", + "density": "1101.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"82.23\", \"48397\": \"17.77\"}", + "countynamesall": "Dallas|Rockwall", + "countyfipsall": "48113|48397", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75089": { + "latitude": "32.92975", + "longitude": "-96.54975", + "city": "Rowlett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36324", + "density": "1250.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"95.04\", \"48397\": \"4.96\"}", + "countynamesall": "Dallas|Rockwall", + "countyfipsall": "48113|48397", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75090": { + "latitude": "33.60452", + "longitude": "-96.54562", + "city": "Sherman", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25418", + "density": "127.6", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75092": { + "latitude": "33.64891", + "longitude": "-96.70005", + "city": "Sherman", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24905", + "density": "84.8", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75093": { + "latitude": "33.0355", + "longitude": "-96.81001", + "city": "Plano", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "46788", + "density": "1280.3", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"93.14\", \"48121\": \"6.86\"}", + "countynamesall": "Collin|Denton", + "countyfipsall": "48085|48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75094": { + "latitude": "33.01909", + "longitude": "-96.61509", + "city": "Plano", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23239", + "density": "1286.1", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75098": { + "latitude": "33.0119", + "longitude": "-96.53479", + "city": "Wylie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "56376", + "density": "660.8", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"93.4\", \"48113\": \"3.76\", \"48397\": \"2.84\"}", + "countynamesall": "Collin|Dallas|Rockwall", + "countyfipsall": "48085|48113|48397", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75101": { + "latitude": "32.27003", + "longitude": "-96.70239", + "city": "Bardwell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "517", + "density": "242.6", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"100\"}", + "countynamesall": "Ellis", + "countyfipsall": "48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75102": { + "latitude": "32.06629", + "longitude": "-96.64223", + "city": "Barry", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1358", + "density": "8.6", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75103": { + "latitude": "32.51192", + "longitude": "-95.88235", + "city": "Canton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14530", + "density": "28.1", + "countyfips": "48467", + "countyname": "Van Zandt", + "countyweights": "{\"48467\": \"100\"}", + "countynamesall": "Van Zandt", + "countyfipsall": "48467", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75104": { + "latitude": "32.58042", + "longitude": "-96.96613", + "city": "Cedar Hill", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "49171", + "density": "486.2", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"99.1\", \"48139\": \"0.9\"}", + "countynamesall": "Dallas|Ellis", + "countyfipsall": "48113|48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75105": { + "latitude": "32.26654", + "longitude": "-96.37522", + "city": "Chatfield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "161", + "density": "1.2", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75109": { + "latitude": "32.04523", + "longitude": "-96.35405", + "city": "Corsicana", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4384", + "density": "14.6", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75110": { + "latitude": "32.08693", + "longitude": "-96.52879", + "city": "Corsicana", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28558", + "density": "73.5", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75114": { + "latitude": "32.61016", + "longitude": "-96.44553", + "city": "Crandall", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6829", + "density": "61.0", + "countyfips": "48257", + "countyname": "Kaufman", + "countyweights": "{\"48257\": \"100\"}", + "countynamesall": "Kaufman", + "countyfipsall": "48257", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75115": { + "latitude": "32.59888", + "longitude": "-96.86374", + "city": "Desoto", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "52916", + "density": "931.5", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75116": { + "latitude": "32.66017", + "longitude": "-96.91393", + "city": "Duncanville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19867", + "density": "1497.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75117": { + "latitude": "32.71183", + "longitude": "-95.85077", + "city": "Edgewood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3984", + "density": "32.8", + "countyfips": "48467", + "countyname": "Van Zandt", + "countyweights": "{\"48467\": \"100\"}", + "countynamesall": "Van Zandt", + "countyfipsall": "48467", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75119": { + "latitude": "32.32976", + "longitude": "-96.59334", + "city": "Ennis", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28598", + "density": "41.7", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"99.3\", \"48349\": \"0.7\"}", + "countynamesall": "Ellis|Navarro", + "countyfipsall": "48139|48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75124": { + "latitude": "32.32673", + "longitude": "-95.9724", + "city": "Eustace", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4255", + "density": "17.7", + "countyfips": "48213", + "countyname": "Henderson", + "countyweights": "{\"48213\": \"79.19\", \"48467\": \"20.81\"}", + "countynamesall": "Henderson|Van Zandt", + "countyfipsall": "48213|48467", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75125": { + "latitude": "32.53137", + "longitude": "-96.62477", + "city": "Ferris", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6326", + "density": "35.1", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"95.13\", \"48113\": \"4.87\"}", + "countynamesall": "Ellis|Dallas", + "countyfipsall": "48139|48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75126": { + "latitude": "32.74205", + "longitude": "-96.45185", + "city": "Forney", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48987", + "density": "244.6", + "countyfips": "48257", + "countyname": "Kaufman", + "countyweights": "{\"48257\": \"100\"}", + "countynamesall": "Kaufman", + "countyfipsall": "48257", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75127": { + "latitude": "32.69116", + "longitude": "-95.79336", + "city": "Fruitvale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1705", + "density": "24.8", + "countyfips": "48467", + "countyname": "Van Zandt", + "countyweights": "{\"48467\": \"100\"}", + "countynamesall": "Van Zandt", + "countyfipsall": "48467", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75132": { + "latitude": "32.94537", + "longitude": "-96.37375", + "city": "Fate", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1559", + "density": "405.9", + "countyfips": "48397", + "countyname": "Rockwall", + "countyweights": "{\"48397\": \"100\"}", + "countynamesall": "Rockwall", + "countyfipsall": "48397", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75134": { + "latitude": "32.6201", + "longitude": "-96.783", + "city": "Lancaster", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21879", + "density": "826.6", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75135": { + "latitude": "33.06521", + "longitude": "-96.22289", + "city": "Caddo Mills", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7363", + "density": "45.7", + "countyfips": "48231", + "countyname": "Hunt", + "countyweights": "{\"48231\": \"100\"}", + "countynamesall": "Hunt", + "countyfipsall": "48231", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75137": { + "latitude": "32.634", + "longitude": "-96.91176", + "city": "Duncanville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19548", + "density": "1240.4", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75140": { + "latitude": "32.64691", + "longitude": "-95.69145", + "city": "Grand Saline", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7595", + "density": "26.1", + "countyfips": "48467", + "countyname": "Van Zandt", + "countyweights": "{\"48467\": \"100\"}", + "countynamesall": "Van Zandt", + "countyfipsall": "48467", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75141": { + "latitude": "32.63998", + "longitude": "-96.69464", + "city": "Hutchins", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5782", + "density": "195.6", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75142": { + "latitude": "32.57357", + "longitude": "-96.24717", + "city": "Kaufman", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19261", + "density": "42.9", + "countyfips": "48257", + "countyname": "Kaufman", + "countyweights": "{\"48257\": \"100\"}", + "countynamesall": "Kaufman", + "countyfipsall": "48257", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75143": { + "latitude": "32.36358", + "longitude": "-96.24817", + "city": "Kemp", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14510", + "density": "31.5", + "countyfips": "48213", + "countyname": "Henderson", + "countyweights": "{\"48213\": \"53.51\", \"48257\": \"46.49\"}", + "countynamesall": "Henderson|Kaufman", + "countyfipsall": "48213|48257", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75144": { + "latitude": "32.11313", + "longitude": "-96.20885", + "city": "Kerens", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3668", + "density": "8.2", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75146": { + "latitude": "32.57462", + "longitude": "-96.75068", + "city": "Lancaster", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19701", + "density": "229.1", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"99.32\", \"48139\": \"0.68\"}", + "countynamesall": "Dallas|Ellis", + "countyfipsall": "48113|48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75147": { + "latitude": "32.43298", + "longitude": "-96.0774", + "city": "Mabank", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6636", + "density": "27.3", + "countyfips": "48257", + "countyname": "Kaufman", + "countyweights": "{\"48257\": \"56.12\", \"48467\": \"34.13\", \"48213\": \"9.75\"}", + "countynamesall": "Kaufman|Van Zandt|Henderson", + "countyfipsall": "48257|48467|48213", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75148": { + "latitude": "32.12461", + "longitude": "-96.01216", + "city": "Malakoff", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5961", + "density": "26.3", + "countyfips": "48213", + "countyname": "Henderson", + "countyweights": "{\"48213\": \"100\"}", + "countynamesall": "Henderson", + "countyfipsall": "48213", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75149": { + "latitude": "32.77003", + "longitude": "-96.61487", + "city": "Mesquite", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "56473", + "density": "1373.1", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75150": { + "latitude": "32.81577", + "longitude": "-96.63039", + "city": "Mesquite", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "60671", + "density": "1835.1", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75152": { + "latitude": "32.43647", + "longitude": "-96.68038", + "city": "Palmer", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5195", + "density": "48.9", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"100\"}", + "countynamesall": "Ellis", + "countyfipsall": "48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75153": { + "latitude": "32.15027", + "longitude": "-96.32856", + "city": "Powell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "441", + "density": "7.2", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75154": { + "latitude": "32.52281", + "longitude": "-96.81015", + "city": "Red Oak", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40947", + "density": "336.3", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"75.44\", \"48113\": \"24.56\"}", + "countynamesall": "Ellis|Dallas", + "countyfipsall": "48139|48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75155": { + "latitude": "32.22573", + "longitude": "-96.47318", + "city": "Rice", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3233", + "density": "32.8", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75156": { + "latitude": "32.28688", + "longitude": "-96.09979", + "city": "Mabank", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16578", + "density": "204.5", + "countyfips": "48213", + "countyname": "Henderson", + "countyweights": "{\"48213\": \"100\"}", + "countynamesall": "Henderson", + "countyfipsall": "48213", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75157": { + "latitude": "32.46227", + "longitude": "-96.44684", + "city": "Rosser", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "261", + "density": "59.3", + "countyfips": "48257", + "countyname": "Kaufman", + "countyweights": "{\"48257\": \"100\"}", + "countynamesall": "Kaufman", + "countyfipsall": "48257", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75158": { + "latitude": "32.46222", + "longitude": "-96.39662", + "city": "Scurry", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4191", + "density": "18.4", + "countyfips": "48257", + "countyname": "Kaufman", + "countyweights": "{\"48257\": \"100\"}", + "countynamesall": "Kaufman", + "countyfipsall": "48257", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75159": { + "latitude": "32.60748", + "longitude": "-96.54087", + "city": "Seagoville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "20098", + "density": "128.6", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"88.21\", \"48257\": \"11.79\"}", + "countynamesall": "Dallas|Kaufman", + "countyfipsall": "48113|48257", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75160": { + "latitude": "32.76169", + "longitude": "-96.30017", + "city": "Terrell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25525", + "density": "82.1", + "countyfips": "48257", + "countyname": "Kaufman", + "countyweights": "{\"48257\": \"93.96\", \"48231\": \"5.89\", \"48397\": \"0.15\"}", + "countynamesall": "Kaufman|Hunt|Rockwall", + "countyfipsall": "48257|48231|48397", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75161": { + "latitude": "32.73742", + "longitude": "-96.17115", + "city": "Terrell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6529", + "density": "22.1", + "countyfips": "48257", + "countyname": "Kaufman", + "countyweights": "{\"48257\": \"100\"}", + "countynamesall": "Kaufman", + "countyfipsall": "48257", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75163": { + "latitude": "32.16759", + "longitude": "-96.11031", + "city": "Trinidad", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2716", + "density": "31.0", + "countyfips": "48213", + "countyname": "Henderson", + "countyweights": "{\"48213\": \"100\"}", + "countynamesall": "Henderson", + "countyfipsall": "48213", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75164": { + "latitude": "33.06593", + "longitude": "-96.30793", + "city": "Josephine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "633", + "density": "107.2", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75165": { + "latitude": "32.36912", + "longitude": "-96.79744", + "city": "Waxahachie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "45059", + "density": "154.8", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"100\"}", + "countynamesall": "Ellis", + "countyfipsall": "48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75166": { + "latitude": "33.01234", + "longitude": "-96.45026", + "city": "Lavon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4395", + "density": "128.4", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75167": { + "latitude": "32.35888", + "longitude": "-96.91515", + "city": "Waxahachie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12170", + "density": "48.1", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"100\"}", + "countynamesall": "Ellis", + "countyfipsall": "48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75169": { + "latitude": "32.70454", + "longitude": "-95.99657", + "city": "Wills Point", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14142", + "density": "25.5", + "countyfips": "48467", + "countyname": "Van Zandt", + "countyweights": "{\"48467\": \"83.45\", \"48231\": \"12.26\", \"48257\": \"4.3\"}", + "countynamesall": "Van Zandt|Hunt|Kaufman", + "countyfipsall": "48467|48231|48257", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75172": { + "latitude": "32.60482", + "longitude": "-96.67515", + "city": "Wilmer", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4619", + "density": "153.0", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75173": { + "latitude": "33.05923", + "longitude": "-96.39106", + "city": "Nevada", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4409", + "density": "55.9", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75180": { + "latitude": "32.71893", + "longitude": "-96.61839", + "city": "Balch Springs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23941", + "density": "1205.4", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75181": { + "latitude": "32.72697", + "longitude": "-96.55519", + "city": "Mesquite", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28263", + "density": "620.2", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75182": { + "latitude": "32.80014", + "longitude": "-96.55405", + "city": "Sunnyvale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6325", + "density": "138.9", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75189": { + "latitude": "32.95183", + "longitude": "-96.31192", + "city": "Royse City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29135", + "density": "101.3", + "countyfips": "48397", + "countyname": "Rockwall", + "countyweights": "{\"48397\": \"65.97\", \"48231\": \"23.9\", \"48085\": \"10.13\"}", + "countynamesall": "Rockwall|Hunt|Collin", + "countyfipsall": "48397|48231|48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75201": { + "latitude": "32.78773", + "longitude": "-96.79936", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17476", + "density": "4660.6", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75202": { + "latitude": "32.77924", + "longitude": "-96.80472", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2312", + "density": "1269.1", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75203": { + "latitude": "32.74627", + "longitude": "-96.803", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17367", + "density": "1417.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75204": { + "latitude": "32.80204", + "longitude": "-96.78881", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30537", + "density": "4609.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75205": { + "latitude": "32.83657", + "longitude": "-96.79619", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24877", + "density": "2207.5", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75206": { + "latitude": "32.83155", + "longitude": "-96.77027", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39010", + "density": "3542.1", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75207": { + "latitude": "32.78676", + "longitude": "-96.82139", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7702", + "density": "773.1", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75208": { + "latitude": "32.75376", + "longitude": "-96.83984", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29706", + "density": "1930.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75209": { + "latitude": "32.84885", + "longitude": "-96.82587", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14308", + "density": "1562.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75210": { + "latitude": "32.77135", + "longitude": "-96.74596", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8673", + "density": "1478.2", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75211": { + "latitude": "32.73493", + "longitude": "-96.90297", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "77570", + "density": "1695.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75212": { + "latitude": "32.78142", + "longitude": "-96.87913", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26720", + "density": "1005.2", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75214": { + "latitude": "32.82865", + "longitude": "-96.74543", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34824", + "density": "1858.0", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75215": { + "latitude": "32.75076", + "longitude": "-96.7581", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17818", + "density": "817.6", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75216": { + "latitude": "32.71165", + "longitude": "-96.78371", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "53327", + "density": "1408.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75217": { + "latitude": "32.71217", + "longitude": "-96.68118", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "89163", + "density": "1259.9", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75218": { + "latitude": "32.84154", + "longitude": "-96.70237", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22529", + "density": "1244.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75219": { + "latitude": "32.81179", + "longitude": "-96.81292", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25120", + "density": "4425.3", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75220": { + "latitude": "32.86664", + "longitude": "-96.87615", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "42009", + "density": "1433.0", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75223": { + "latitude": "32.79223", + "longitude": "-96.74399", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14941", + "density": "1671.0", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75224": { + "latitude": "32.711", + "longitude": "-96.83994", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37592", + "density": "2484.4", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75225": { + "latitude": "32.86521", + "longitude": "-96.79098", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21736", + "density": "1777.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75226": { + "latitude": "32.7828", + "longitude": "-96.77632", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4579", + "density": "1578.6", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75227": { + "latitude": "32.77", + "longitude": "-96.68728", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "59924", + "density": "2030.1", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75228": { + "latitude": "32.82443", + "longitude": "-96.67996", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "73976", + "density": "2503.9", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75229": { + "latitude": "32.89374", + "longitude": "-96.86441", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "32322", + "density": "995.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75230": { + "latitude": "32.90229", + "longitude": "-96.79207", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27489", + "density": "1465.0", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75231": { + "latitude": "32.87764", + "longitude": "-96.74976", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40371", + "density": "2765.2", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75232": { + "latitude": "32.66095", + "longitude": "-96.84018", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31453", + "density": "1468.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75233": { + "latitude": "32.70435", + "longitude": "-96.87298", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17280", + "density": "1926.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75234": { + "latitude": "32.92366", + "longitude": "-96.89042", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37160", + "density": "1384.9", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75235": { + "latitude": "32.8325", + "longitude": "-96.84849", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18429", + "density": "1058.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75236": { + "latitude": "32.68557", + "longitude": "-96.93576", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18137", + "density": "560.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75237": { + "latitude": "32.66564", + "longitude": "-96.8731", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21423", + "density": "1243.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75238": { + "latitude": "32.87853", + "longitude": "-96.70782", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "33049", + "density": "1940.2", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75240": { + "latitude": "32.93174", + "longitude": "-96.78854", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28534", + "density": "2920.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75241": { + "latitude": "32.66571", + "longitude": "-96.75904", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31562", + "density": "453.6", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75243": { + "latitude": "32.91211", + "longitude": "-96.73563", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "68308", + "density": "3031.6", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75244": { + "latitude": "32.92542", + "longitude": "-96.83663", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13254", + "density": "1109.6", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75246": { + "latitude": "32.79292", + "longitude": "-96.7733", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2760", + "density": "2359.3", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75247": { + "latitude": "32.81358", + "longitude": "-96.87748", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "792", + "density": "46.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75248": { + "latitude": "32.96955", + "longitude": "-96.79528", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37373", + "density": "1956.4", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"99.29\", \"48085\": \"0.71\"}", + "countynamesall": "Dallas|Collin", + "countyfipsall": "48113|48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75249": { + "latitude": "32.64442", + "longitude": "-96.9588", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17649", + "density": "1482.2", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75251": { + "latitude": "32.91901", + "longitude": "-96.77193", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2861", + "density": "2514.2", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75252": { + "latitude": "32.99723", + "longitude": "-96.79081", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26867", + "density": "2047.7", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"97.44\", \"48113\": \"2.56\"}", + "countynamesall": "Collin|Dallas", + "countyfipsall": "48085|48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75253": { + "latitude": "32.67499", + "longitude": "-96.61286", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23900", + "density": "676.7", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75254": { + "latitude": "32.94562", + "longitude": "-96.80133", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26929", + "density": "3130.8", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"100\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75270": { + "latitude": "32.78119", + "longitude": "-96.80223", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"0\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75287": { + "latitude": "33.00032", + "longitude": "-96.84114", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "55673", + "density": "3839.7", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"52.75\", \"48085\": \"47.25\", \"48113\": \"0\"}", + "countynamesall": "Denton|Collin|Dallas", + "countyfipsall": "48121|48085|48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75390": { + "latitude": "32.81419", + "longitude": "-96.8408", + "city": "Dallas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48113", + "countyname": "Dallas", + "countyweights": "{\"48113\": \"0\"}", + "countynamesall": "Dallas", + "countyfipsall": "48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75401": { + "latitude": "33.18426", + "longitude": "-96.11952", + "city": "Greenville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19146", + "density": "71.1", + "countyfips": "48231", + "countyname": "Hunt", + "countyweights": "{\"48231\": \"100\"}", + "countynamesall": "Hunt", + "countyfipsall": "48231", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75402": { + "latitude": "33.06879", + "longitude": "-96.08534", + "city": "Greenville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18087", + "density": "77.3", + "countyfips": "48231", + "countyname": "Hunt", + "countyweights": "{\"48231\": \"100\"}", + "countynamesall": "Hunt", + "countyfipsall": "48231", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75407": { + "latitude": "33.15089", + "longitude": "-96.48796", + "city": "Princeton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17978", + "density": "140.5", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75409": { + "latitude": "33.35196", + "longitude": "-96.52734", + "city": "Anna", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16349", + "density": "78.7", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75410": { + "latitude": "32.79101", + "longitude": "-95.63456", + "city": "Alba", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4954", + "density": "23.3", + "countyfips": "48499", + "countyname": "Wood", + "countyweights": "{\"48499\": \"82.16\", \"48379\": \"17.84\"}", + "countynamesall": "Wood|Rains", + "countyfipsall": "48499|48379", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75411": { + "latitude": "33.86196", + "longitude": "-95.64855", + "city": "Arthur City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "889", + "density": "4.4", + "countyfips": "48277", + "countyname": "Lamar", + "countyweights": "{\"48277\": \"100\"}", + "countynamesall": "Lamar", + "countyfipsall": "48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75412": { + "latitude": "33.79984", + "longitude": "-95.15232", + "city": "Bagwell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "457", + "density": "1.2", + "countyfips": "48387", + "countyname": "Red River", + "countyweights": "{\"48387\": \"100\"}", + "countynamesall": "Red River", + "countyfipsall": "48387", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75413": { + "latitude": "33.4414", + "longitude": "-96.17912", + "city": "Bailey", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "282", + "density": "77.5", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"100\"}", + "countynamesall": "Fannin", + "countyfipsall": "48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75414": { + "latitude": "33.62333", + "longitude": "-96.43179", + "city": "Bells", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3416", + "density": "27.0", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75415": { + "latitude": "33.45985", + "longitude": "-95.75133", + "city": "Ben Franklin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "240", + "density": "8.8", + "countyfips": "48119", + "countyname": "Delta", + "countyweights": "{\"48119\": \"100\"}", + "countynamesall": "Delta", + "countyfipsall": "48119", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75416": { + "latitude": "33.67825", + "longitude": "-95.35442", + "city": "Blossom", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3070", + "density": "16.0", + "countyfips": "48277", + "countyname": "Lamar", + "countyweights": "{\"48277\": \"100\"}", + "countynamesall": "Lamar", + "countyfipsall": "48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75417": { + "latitude": "33.43887", + "longitude": "-95.13134", + "city": "Bogata", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2688", + "density": "6.3", + "countyfips": "48387", + "countyname": "Red River", + "countyweights": "{\"48387\": \"100\"}", + "countynamesall": "Red River", + "countyfipsall": "48387", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75418": { + "latitude": "33.57269", + "longitude": "-96.17766", + "city": "Bonham", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14571", + "density": "40.3", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"100\"}", + "countynamesall": "Fannin", + "countyfipsall": "48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75420": { + "latitude": "33.053", + "longitude": "-95.72612", + "city": "Brashear", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1052", + "density": "11.1", + "countyfips": "48223", + "countyname": "Hopkins", + "countyweights": "{\"48223\": \"100\"}", + "countynamesall": "Hopkins", + "countyfipsall": "48223", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75421": { + "latitude": "33.64665", + "longitude": "-95.7172", + "city": "Brookston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "666", + "density": "4.7", + "countyfips": "48277", + "countyname": "Lamar", + "countyweights": "{\"48277\": \"100\"}", + "countynamesall": "Lamar", + "countyfipsall": "48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75422": { + "latitude": "33.13937", + "longitude": "-95.93198", + "city": "Campbell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3088", + "density": "16.3", + "countyfips": "48231", + "countyname": "Hunt", + "countyweights": "{\"48231\": \"100\"}", + "countynamesall": "Hunt", + "countyfipsall": "48231", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75423": { + "latitude": "33.28614", + "longitude": "-96.19999", + "city": "Celeste", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3110", + "density": "14.8", + "countyfips": "48231", + "countyname": "Hunt", + "countyweights": "{\"48231\": \"98.89\", \"48147\": \"1.11\"}", + "countynamesall": "Hunt|Fannin", + "countyfipsall": "48231|48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75424": { + "latitude": "33.30659", + "longitude": "-96.38586", + "city": "Blue Ridge", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3024", + "density": "17.5", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"93.9\", \"48147\": \"6.1\"}", + "countynamesall": "Collin|Fannin", + "countyfipsall": "48085|48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75426": { + "latitude": "33.65539", + "longitude": "-95.00488", + "city": "Clarksville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4393", + "density": "5.2", + "countyfips": "48387", + "countyname": "Red River", + "countyweights": "{\"48387\": \"100\"}", + "countynamesall": "Red River", + "countyfipsall": "48387", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75428": { + "latitude": "33.26847", + "longitude": "-95.91606", + "city": "Commerce", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11371", + "density": "51.1", + "countyfips": "48231", + "countyname": "Hunt", + "countyweights": "{\"48231\": \"97.27\", \"48119\": \"2.73\"}", + "countynamesall": "Hunt|Delta", + "countyfipsall": "48231|48119", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75431": { + "latitude": "33.01166", + "longitude": "-95.46369", + "city": "Como", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2122", + "density": "13.9", + "countyfips": "48223", + "countyname": "Hopkins", + "countyweights": "{\"48223\": \"88.45\", \"48499\": \"11.55\"}", + "countynamesall": "Hopkins|Wood", + "countyfipsall": "48223|48499", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75432": { + "latitude": "33.39605", + "longitude": "-95.67442", + "city": "Cooper", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3504", + "density": "12.8", + "countyfips": "48119", + "countyname": "Delta", + "countyweights": "{\"48119\": \"100\"}", + "countynamesall": "Delta", + "countyfipsall": "48119", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75433": { + "latitude": "33.10767", + "longitude": "-95.80424", + "city": "Cumby", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2808", + "density": "10.4", + "countyfips": "48223", + "countyname": "Hopkins", + "countyweights": "{\"48223\": \"100\"}", + "countynamesall": "Hopkins", + "countyfipsall": "48223", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75435": { + "latitude": "33.48223", + "longitude": "-95.31354", + "city": "Deport", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "944", + "density": "5.4", + "countyfips": "48277", + "countyname": "Lamar", + "countyweights": "{\"48277\": \"84.98\", \"48387\": \"15.02\"}", + "countynamesall": "Lamar|Red River", + "countyfipsall": "48277|48387", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75436": { + "latitude": "33.71282", + "longitude": "-95.25156", + "city": "Detroit", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2480", + "density": "5.8", + "countyfips": "48387", + "countyname": "Red River", + "countyweights": "{\"48387\": \"95.52\", \"48277\": \"4.48\"}", + "countynamesall": "Red River|Lamar", + "countyfipsall": "48387|48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75437": { + "latitude": "33.25841", + "longitude": "-95.46899", + "city": "Dike", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1377", + "density": "8.8", + "countyfips": "48223", + "countyname": "Hopkins", + "countyweights": "{\"48223\": \"100\"}", + "countynamesall": "Hopkins", + "countyfipsall": "48223", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75438": { + "latitude": "33.60829", + "longitude": "-96.06541", + "city": "Dodd City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "992", + "density": "8.4", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"100\"}", + "countynamesall": "Fannin", + "countyfipsall": "48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75439": { + "latitude": "33.55199", + "longitude": "-96.27716", + "city": "Ector", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1035", + "density": "28.7", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"100\"}", + "countynamesall": "Fannin", + "countyfipsall": "48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75440": { + "latitude": "32.87828", + "longitude": "-95.75557", + "city": "Emory", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6258", + "density": "21.0", + "countyfips": "48379", + "countyname": "Rains", + "countyweights": "{\"48379\": \"97.1\", \"48499\": \"2.9\"}", + "countynamesall": "Rains|Wood", + "countyfipsall": "48379|48499", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75441": { + "latitude": "33.4322", + "longitude": "-95.65349", + "city": "Enloe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "128", + "density": "7.0", + "countyfips": "48119", + "countyname": "Delta", + "countyweights": "{\"48119\": \"100\"}", + "countynamesall": "Delta", + "countyfipsall": "48119", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75442": { + "latitude": "33.17365", + "longitude": "-96.35309", + "city": "Farmersville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9308", + "density": "34.1", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"89.03\", \"48231\": \"10.97\"}", + "countynamesall": "Collin|Hunt", + "countyfipsall": "48085|48231", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75446": { + "latitude": "33.61208", + "longitude": "-95.89414", + "city": "Honey Grove", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3178", + "density": "7.0", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"87.67\", \"48277\": \"12.33\"}", + "countynamesall": "Fannin|Lamar", + "countyfipsall": "48147|48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75447": { + "latitude": "33.76513", + "longitude": "-96.1177", + "city": "Ivanhoe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1256", + "density": "9.1", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"100\"}", + "countynamesall": "Fannin", + "countyfipsall": "48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75448": { + "latitude": "33.31493", + "longitude": "-95.79329", + "city": "Klondike", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "643", + "density": "8.8", + "countyfips": "48119", + "countyname": "Delta", + "countyweights": "{\"48119\": \"100\"}", + "countynamesall": "Delta", + "countyfipsall": "48119", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75449": { + "latitude": "33.42067", + "longitude": "-95.94604", + "city": "Ladonia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1374", + "density": "6.5", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"83.39\", \"48231\": \"16.61\"}", + "countynamesall": "Fannin|Hunt", + "countyfipsall": "48147|48231", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75450": { + "latitude": "33.4051", + "longitude": "-95.47848", + "city": "Lake Creek", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "150", + "density": "1.0", + "countyfips": "48119", + "countyname": "Delta", + "countyweights": "{\"48119\": \"100\"}", + "countynamesall": "Delta", + "countyfipsall": "48119", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75451": { + "latitude": "32.96634", + "longitude": "-95.1212", + "city": "Leesburg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1163", + "density": "12.9", + "countyfips": "48063", + "countyname": "Camp", + "countyweights": "{\"48063\": \"95.46\", \"48499\": \"4.54\"}", + "countynamesall": "Camp|Wood", + "countyfipsall": "48063|48499", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75452": { + "latitude": "33.39324", + "longitude": "-96.24331", + "city": "Leonard", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4650", + "density": "23.6", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"93.79\", \"48231\": \"4.23\", \"48085\": \"1.98\"}", + "countynamesall": "Fannin|Hunt|Collin", + "countyfipsall": "48147|48231|48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75453": { + "latitude": "32.99671", + "longitude": "-95.93273", + "city": "Lone Oak", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3046", + "density": "15.7", + "countyfips": "48231", + "countyname": "Hunt", + "countyweights": "{\"48231\": \"82.92\", \"48379\": \"13.61\", \"48223\": \"3.47\"}", + "countynamesall": "Hunt|Rains|Hopkins", + "countyfipsall": "48231|48379|48223", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75454": { + "latitude": "33.28335", + "longitude": "-96.56323", + "city": "Melissa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10467", + "density": "210.8", + "countyfips": "48085", + "countyname": "Collin", + "countyweights": "{\"48085\": \"100\"}", + "countynamesall": "Collin", + "countyfipsall": "48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75455": { + "latitude": "33.21697", + "longitude": "-94.97819", + "city": "Mount Pleasant", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28354", + "density": "37.1", + "countyfips": "48449", + "countyname": "Titus", + "countyweights": "{\"48449\": \"99.75\", \"48159\": \"0.25\"}", + "countynamesall": "Titus|Franklin", + "countyfipsall": "48449|48159", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75457": { + "latitude": "33.1728", + "longitude": "-95.21222", + "city": "Mount Vernon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6501", + "density": "18.6", + "countyfips": "48159", + "countyname": "Franklin", + "countyweights": "{\"48159\": \"100\"}", + "countynamesall": "Franklin", + "countyfipsall": "48159", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75459": { + "latitude": "33.53109", + "longitude": "-96.67755", + "city": "Howe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5156", + "density": "25.0", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75460": { + "latitude": "33.65814", + "longitude": "-95.6042", + "city": "Paris", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23504", + "density": "100.1", + "countyfips": "48277", + "countyname": "Lamar", + "countyweights": "{\"48277\": \"100\"}", + "countynamesall": "Lamar", + "countyfipsall": "48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75462": { + "latitude": "33.62386", + "longitude": "-95.48378", + "city": "Paris", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11641", + "density": "22.5", + "countyfips": "48277", + "countyname": "Lamar", + "countyweights": "{\"48277\": \"100\"}", + "countynamesall": "Lamar", + "countyfipsall": "48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75468": { + "latitude": "33.51315", + "longitude": "-95.40653", + "city": "Pattonville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "939", + "density": "7.2", + "countyfips": "48277", + "countyname": "Lamar", + "countyweights": "{\"48277\": \"100\"}", + "countynamesall": "Lamar", + "countyfipsall": "48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75469": { + "latitude": "33.42161", + "longitude": "-95.8146", + "city": "Pecan Gap", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "275", + "density": "3.4", + "countyfips": "48119", + "countyname": "Delta", + "countyweights": "{\"48119\": \"97.3\", \"48147\": \"2.7\"}", + "countynamesall": "Delta|Fannin", + "countyfipsall": "48119|48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75470": { + "latitude": "33.58231", + "longitude": "-95.80822", + "city": "Petty", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "323", + "density": "6.5", + "countyfips": "48277", + "countyname": "Lamar", + "countyweights": "{\"48277\": \"100\"}", + "countynamesall": "Lamar", + "countyfipsall": "48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75471": { + "latitude": "33.03945", + "longitude": "-95.38927", + "city": "Pickton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1531", + "density": "12.3", + "countyfips": "48223", + "countyname": "Hopkins", + "countyweights": "{\"48223\": \"96.49\", \"48499\": \"3.51\"}", + "countynamesall": "Hopkins|Wood", + "countyfipsall": "48223|48499", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75472": { + "latitude": "32.88593", + "longitude": "-95.87797", + "city": "Point", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4087", + "density": "24.8", + "countyfips": "48379", + "countyname": "Rains", + "countyweights": "{\"48379\": \"99.55\", \"48223\": \"0.45\"}", + "countynamesall": "Rains|Hopkins", + "countyfipsall": "48379|48223", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75473": { + "latitude": "33.81433", + "longitude": "-95.48985", + "city": "Powderly", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3688", + "density": "17.1", + "countyfips": "48277", + "countyname": "Lamar", + "countyweights": "{\"48277\": \"100\"}", + "countynamesall": "Lamar", + "countyfipsall": "48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75474": { + "latitude": "32.91953", + "longitude": "-96.10899", + "city": "Quinlan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15017", + "density": "54.0", + "countyfips": "48231", + "countyname": "Hunt", + "countyweights": "{\"48231\": \"98.63\", \"48257\": \"1.37\"}", + "countynamesall": "Hunt|Kaufman", + "countyfipsall": "48231|48257", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75475": { + "latitude": "33.47484", + "longitude": "-96.23822", + "city": "Randolph", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "148", + "density": "27.7", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"100\"}", + "countynamesall": "Fannin", + "countyfipsall": "48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75476": { + "latitude": "33.70586", + "longitude": "-96.24354", + "city": "Ravenna", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1056", + "density": "7.9", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"100\"}", + "countynamesall": "Fannin", + "countyfipsall": "48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75477": { + "latitude": "33.53286", + "longitude": "-95.73471", + "city": "Roxton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1183", + "density": "7.5", + "countyfips": "48277", + "countyname": "Lamar", + "countyweights": "{\"48277\": \"100\"}", + "countynamesall": "Lamar", + "countyfipsall": "48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75478": { + "latitude": "33.17445", + "longitude": "-95.35751", + "city": "Saltillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1120", + "density": "8.1", + "countyfips": "48223", + "countyname": "Hopkins", + "countyweights": "{\"48223\": \"98.5\", \"48159\": \"1.5\"}", + "countynamesall": "Hopkins|Franklin", + "countyfipsall": "48223|48159", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75479": { + "latitude": "33.62159", + "longitude": "-96.33922", + "city": "Savoy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1786", + "density": "13.6", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"100\"}", + "countynamesall": "Fannin", + "countyfipsall": "48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75480": { + "latitude": "33.02472", + "longitude": "-95.19411", + "city": "Scroggins", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1587", + "density": "18.9", + "countyfips": "48159", + "countyname": "Franklin", + "countyweights": "{\"48159\": \"100\"}", + "countynamesall": "Franklin", + "countyfipsall": "48159", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75481": { + "latitude": "33.31522", + "longitude": "-95.37374", + "city": "Sulphur Bluff", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "314", + "density": "1.7", + "countyfips": "48223", + "countyname": "Hopkins", + "countyweights": "{\"48223\": \"80.76\", \"48159\": \"19.24\"}", + "countynamesall": "Hopkins|Franklin", + "countyfipsall": "48223|48159", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75482": { + "latitude": "33.16816", + "longitude": "-95.60681", + "city": "Sulphur Springs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24984", + "density": "30.9", + "countyfips": "48223", + "countyname": "Hopkins", + "countyweights": "{\"48223\": \"100\"}", + "countynamesall": "Hopkins", + "countyfipsall": "48223", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75486": { + "latitude": "33.7583", + "longitude": "-95.7486", + "city": "Sumner", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2291", + "density": "8.5", + "countyfips": "48277", + "countyname": "Lamar", + "countyweights": "{\"48277\": \"100\"}", + "countynamesall": "Lamar", + "countyfipsall": "48277", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75487": { + "latitude": "33.33605", + "longitude": "-95.16159", + "city": "Talco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2106", + "density": "8.0", + "countyfips": "48449", + "countyname": "Titus", + "countyweights": "{\"48449\": \"59.05\", \"48159\": \"40.95\"}", + "countynamesall": "Titus|Franklin", + "countyfipsall": "48449|48159", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75488": { + "latitude": "33.77723", + "longitude": "-95.98748", + "city": "Telephone", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "645", + "density": "2.1", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"100\"}", + "countynamesall": "Fannin", + "countyfipsall": "48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75489": { + "latitude": "33.51926", + "longitude": "-96.48429", + "city": "Tom Bean", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1032", + "density": "328.9", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75490": { + "latitude": "33.43427", + "longitude": "-96.31339", + "city": "Trenton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2493", + "density": "32.9", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"98.51\", \"48181\": \"1.49\"}", + "countynamesall": "Fannin|Grayson", + "countyfipsall": "48147|48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75491": { + "latitude": "33.49636", + "longitude": "-96.39753", + "city": "Whitewright", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5064", + "density": "20.4", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"83.57\", \"48147\": \"16.14\", \"48085\": \"0.29\"}", + "countynamesall": "Grayson|Fannin|Collin", + "countyfipsall": "48181|48147|48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75492": { + "latitude": "33.58768", + "longitude": "-95.99551", + "city": "Windom", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "456", + "density": "4.1", + "countyfips": "48147", + "countyname": "Fannin", + "countyweights": "{\"48147\": \"100\"}", + "countynamesall": "Fannin", + "countyfipsall": "48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75493": { + "latitude": "33.13883", + "longitude": "-95.10854", + "city": "Winfield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "626", + "density": "44.8", + "countyfips": "48449", + "countyname": "Titus", + "countyweights": "{\"48449\": \"100\"}", + "countynamesall": "Titus", + "countyfipsall": "48449", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75494": { + "latitude": "32.90937", + "longitude": "-95.26234", + "city": "Winnsboro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9940", + "density": "16.9", + "countyfips": "48499", + "countyname": "Wood", + "countyweights": "{\"48499\": \"75.27\", \"48159\": \"15.15\", \"48223\": \"8.47\", \"48459\": \"1.1\"}", + "countynamesall": "Wood|Franklin|Hopkins|Upshur", + "countyfipsall": "48499|48159|48223|48459", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75495": { + "latitude": "33.43311", + "longitude": "-96.55161", + "city": "Van Alstyne", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8729", + "density": "50.1", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"95.9\", \"48085\": \"4.1\"}", + "countynamesall": "Grayson|Collin", + "countyfipsall": "48181|48085", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75496": { + "latitude": "33.35984", + "longitude": "-96.06298", + "city": "Wolfe City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3739", + "density": "11.7", + "countyfips": "48231", + "countyname": "Hunt", + "countyweights": "{\"48231\": \"84.78\", \"48147\": \"15.22\"}", + "countynamesall": "Hunt|Fannin", + "countyfipsall": "48231|48147", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75497": { + "latitude": "32.922", + "longitude": "-95.572", + "city": "Yantis", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3907", + "density": "23.3", + "countyfips": "48499", + "countyname": "Wood", + "countyweights": "{\"48499\": \"88.84\", \"48223\": \"11.16\"}", + "countynamesall": "Wood|Hopkins", + "countyfipsall": "48499|48223", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75501": { + "latitude": "33.37366", + "longitude": "-94.13142", + "city": "Texarkana", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36094", + "density": "146.4", + "countyfips": "48037", + "countyname": "Bowie", + "countyweights": "{\"48037\": \"100\"}", + "countynamesall": "Bowie", + "countyfipsall": "48037", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75503": { + "latitude": "33.51345", + "longitude": "-94.13057", + "city": "Texarkana", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25517", + "density": "124.7", + "countyfips": "48037", + "countyname": "Bowie", + "countyweights": "{\"48037\": \"100\"}", + "countynamesall": "Bowie", + "countyfipsall": "48037", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75550": { + "latitude": "33.49406", + "longitude": "-94.88241", + "city": "Annona", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "681", + "density": "3.0", + "countyfips": "48387", + "countyname": "Red River", + "countyweights": "{\"48387\": \"100\"}", + "countynamesall": "Red River", + "countyfipsall": "48387", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75551": { + "latitude": "33.11556", + "longitude": "-94.20197", + "city": "Atlanta", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11251", + "density": "26.3", + "countyfips": "48067", + "countyname": "Cass", + "countyweights": "{\"48067\": \"100\"}", + "countynamesall": "Cass", + "countyfipsall": "48067", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75554": { + "latitude": "33.5549", + "longitude": "-94.7795", + "city": "Avery", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2131", + "density": "5.0", + "countyfips": "48387", + "countyname": "Red River", + "countyweights": "{\"48387\": \"85.66\", \"48037\": \"14.34\"}", + "countynamesall": "Red River|Bowie", + "countyfipsall": "48387|48037", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75555": { + "latitude": "32.94688", + "longitude": "-94.13833", + "city": "Bivins", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1579", + "density": "5.4", + "countyfips": "48067", + "countyname": "Cass", + "countyweights": "{\"48067\": \"88.21\", \"48315\": \"11.79\"}", + "countynamesall": "Cass|Marion", + "countyfipsall": "48067|48315", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75556": { + "latitude": "33.16112", + "longitude": "-94.06127", + "city": "Bloomburg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1214", + "density": "19.5", + "countyfips": "48067", + "countyname": "Cass", + "countyweights": "{\"48067\": \"97.71\", \"05091\": \"2.29\"}", + "countynamesall": "Cass|Miller", + "countyfipsall": "48067|05091", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75558": { + "latitude": "33.2419", + "longitude": "-94.85805", + "city": "Cookville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1582", + "density": "12.2", + "countyfips": "48449", + "countyname": "Titus", + "countyweights": "{\"48449\": \"100\"}", + "countynamesall": "Titus", + "countyfipsall": "48449", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75559": { + "latitude": "33.50992", + "longitude": "-94.62748", + "city": "De Kalb", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5122", + "density": "7.5", + "countyfips": "48037", + "countyname": "Bowie", + "countyweights": "{\"48037\": \"100\"}", + "countynamesall": "Bowie", + "countyfipsall": "48037", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75560": { + "latitude": "33.18696", + "longitude": "-94.36878", + "city": "Douglassville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1002", + "density": "4.9", + "countyfips": "48067", + "countyname": "Cass", + "countyweights": "{\"48067\": \"100\"}", + "countynamesall": "Cass", + "countyfipsall": "48067", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75561": { + "latitude": "33.51333", + "longitude": "-94.27781", + "city": "Hooks", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4939", + "density": "38.3", + "countyfips": "48037", + "countyname": "Bowie", + "countyweights": "{\"48037\": \"100\"}", + "countynamesall": "Bowie", + "countyfipsall": "48037", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75562": { + "latitude": "32.92543", + "longitude": "-94.24848", + "city": "Kildare", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "104", + "density": "2.4", + "countyfips": "48067", + "countyname": "Cass", + "countyweights": "{\"48067\": \"100\"}", + "countynamesall": "Cass", + "countyfipsall": "48067", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75563": { + "latitude": "33.00608", + "longitude": "-94.38964", + "city": "Linden", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4528", + "density": "10.8", + "countyfips": "48067", + "countyname": "Cass", + "countyweights": "{\"48067\": \"100\"}", + "countynamesall": "Cass", + "countyfipsall": "48067", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75565": { + "latitude": "32.93731", + "longitude": "-94.0722", + "city": "McLeod", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "206", + "density": "11.4", + "countyfips": "48067", + "countyname": "Cass", + "countyweights": "{\"48067\": \"100\"}", + "countynamesall": "Cass", + "countyfipsall": "48067", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75566": { + "latitude": "33.14818", + "longitude": "-94.49175", + "city": "Marietta", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "756", + "density": "6.1", + "countyfips": "48067", + "countyname": "Cass", + "countyweights": "{\"48067\": \"100\"}", + "countynamesall": "Cass", + "countyfipsall": "48067", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75567": { + "latitude": "33.31403", + "longitude": "-94.31877", + "city": "Maud", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4824", + "density": "27.5", + "countyfips": "48037", + "countyname": "Bowie", + "countyweights": "{\"48037\": \"100\"}", + "countynamesall": "Bowie", + "countyfipsall": "48037", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75568": { + "latitude": "33.20102", + "longitude": "-94.59619", + "city": "Naples", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2238", + "density": "6.4", + "countyfips": "48343", + "countyname": "Morris", + "countyweights": "{\"48343\": \"68.78\", \"48067\": \"31.22\"}", + "countynamesall": "Morris|Cass", + "countyfipsall": "48343|48067", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75569": { + "latitude": "33.44145", + "longitude": "-94.12641", + "city": "Nash", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3464", + "density": "445.3", + "countyfips": "48037", + "countyname": "Bowie", + "countyweights": "{\"48037\": \"100\"}", + "countynamesall": "Bowie", + "countyfipsall": "48037", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75570": { + "latitude": "33.46195", + "longitude": "-94.43753", + "city": "New Boston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11071", + "density": "31.6", + "countyfips": "48037", + "countyname": "Bowie", + "countyweights": "{\"48037\": \"100\"}", + "countynamesall": "Bowie", + "countyfipsall": "48037", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75571": { + "latitude": "33.20616", + "longitude": "-94.764", + "city": "Omaha", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3134", + "density": "11.7", + "countyfips": "48343", + "countyname": "Morris", + "countyweights": "{\"48343\": \"97.4\", \"48449\": \"2.6\"}", + "countynamesall": "Morris|Titus", + "countyfipsall": "48343|48449", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75572": { + "latitude": "33.23154", + "longitude": "-94.13216", + "city": "Queen City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3896", + "density": "20.9", + "countyfips": "48067", + "countyname": "Cass", + "countyweights": "{\"48067\": \"100\"}", + "countynamesall": "Cass", + "countyfipsall": "48067", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75573": { + "latitude": "33.3423", + "longitude": "-94.23728", + "city": "Redwater", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "115", + "density": "4.5", + "countyfips": "48037", + "countyname": "Bowie", + "countyweights": "{\"48037\": \"100\"}", + "countynamesall": "Bowie", + "countyfipsall": "48037", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75574": { + "latitude": "33.33096", + "longitude": "-94.55347", + "city": "Simms", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1659", + "density": "6.0", + "countyfips": "48037", + "countyname": "Bowie", + "countyweights": "{\"48037\": \"100\"}", + "countynamesall": "Bowie", + "countyfipsall": "48037", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75601": { + "latitude": "32.50856", + "longitude": "-94.72383", + "city": "Longview", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15719", + "density": "653.2", + "countyfips": "48183", + "countyname": "Gregg", + "countyweights": "{\"48183\": \"89.08\", \"48203\": \"10.92\"}", + "countynamesall": "Gregg|Harrison", + "countyfipsall": "48183|48203", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75602": { + "latitude": "32.459", + "longitude": "-94.65992", + "city": "Longview", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21655", + "density": "170.7", + "countyfips": "48183", + "countyname": "Gregg", + "countyweights": "{\"48183\": \"77.57\", \"48203\": \"22.43\"}", + "countynamesall": "Gregg|Harrison", + "countyfipsall": "48183|48203", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75603": { + "latitude": "32.39854", + "longitude": "-94.70911", + "city": "Longview", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6100", + "density": "50.9", + "countyfips": "48183", + "countyname": "Gregg", + "countyweights": "{\"48183\": \"74.69\", \"48401\": \"25.31\"}", + "countynamesall": "Gregg|Rusk", + "countyfipsall": "48183|48401", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75604": { + "latitude": "32.50965", + "longitude": "-94.82774", + "city": "Longview", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31027", + "density": "254.5", + "countyfips": "48183", + "countyname": "Gregg", + "countyweights": "{\"48183\": \"99.36\", \"48459\": \"0.64\"}", + "countynamesall": "Gregg|Upshur", + "countyfipsall": "48183|48459", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75605": { + "latitude": "32.58257", + "longitude": "-94.72064", + "city": "Longview", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30501", + "density": "148.7", + "countyfips": "48183", + "countyname": "Gregg", + "countyweights": "{\"48183\": \"85.3\", \"48203\": \"14.44\", \"48459\": \"0.26\"}", + "countynamesall": "Gregg|Harrison|Upshur", + "countyfipsall": "48183|48203|48459", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75630": { + "latitude": "32.87431", + "longitude": "-94.55271", + "city": "Avinger", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2370", + "density": "10.1", + "countyfips": "48315", + "countyname": "Marion", + "countyweights": "{\"48315\": \"58.69\", \"48067\": \"41.31\"}", + "countynamesall": "Marion|Cass", + "countyfipsall": "48315|48067", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75631": { + "latitude": "32.24926", + "longitude": "-94.45456", + "city": "Beckville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3248", + "density": "10.7", + "countyfips": "48365", + "countyname": "Panola", + "countyweights": "{\"48365\": \"100\"}", + "countynamesall": "Panola", + "countyfipsall": "48365", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75633": { + "latitude": "32.12895", + "longitude": "-94.27705", + "city": "Carthage", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13161", + "density": "15.7", + "countyfips": "48365", + "countyname": "Panola", + "countyweights": "{\"48365\": \"100\"}", + "countynamesall": "Panola", + "countyfipsall": "48365", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75638": { + "latitude": "33.02095", + "longitude": "-94.73186", + "city": "Daingerfield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5505", + "density": "24.0", + "countyfips": "48343", + "countyname": "Morris", + "countyweights": "{\"48343\": \"99.19\", \"48067\": \"0.81\"}", + "countynamesall": "Morris|Cass", + "countyfipsall": "48343|48067", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75639": { + "latitude": "32.29033", + "longitude": "-94.16944", + "city": "De Berry", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2926", + "density": "6.6", + "countyfips": "48365", + "countyname": "Panola", + "countyweights": "{\"48365\": \"100\"}", + "countynamesall": "Panola", + "countyfipsall": "48365", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75640": { + "latitude": "32.71557", + "longitude": "-94.68413", + "city": "Diana", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4859", + "density": "22.2", + "countyfips": "48459", + "countyname": "Upshur", + "countyweights": "{\"48459\": \"74.57\", \"48203\": \"23.8\", \"48315\": \"1.63\"}", + "countynamesall": "Upshur|Harrison|Marion", + "countyfipsall": "48459|48203|48315", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75641": { + "latitude": "32.37844", + "longitude": "-94.57574", + "city": "Easton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "89", + "density": "10.3", + "countyfips": "48183", + "countyname": "Gregg", + "countyweights": "{\"48183\": \"68.16\", \"48401\": \"31.84\"}", + "countynamesall": "Gregg|Rusk", + "countyfipsall": "48183|48401", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75642": { + "latitude": "32.37152", + "longitude": "-94.17658", + "city": "Elysian Fields", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48", + "density": "8.3", + "countyfips": "48203", + "countyname": "Harrison", + "countyweights": "{\"48203\": \"100\"}", + "countynamesall": "Harrison", + "countyfipsall": "48203", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75643": { + "latitude": "32.01618", + "longitude": "-94.36084", + "city": "Gary", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2253", + "density": "12.8", + "countyfips": "48365", + "countyname": "Panola", + "countyweights": "{\"48365\": \"97.06\", \"48419\": \"2.94\"}", + "countynamesall": "Panola|Shelby", + "countyfipsall": "48365|48419", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75644": { + "latitude": "32.7951", + "longitude": "-94.99553", + "city": "Gilmer", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13427", + "density": "27.7", + "countyfips": "48459", + "countyname": "Upshur", + "countyweights": "{\"48459\": \"100\"}", + "countynamesall": "Upshur", + "countyfipsall": "48459", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75645": { + "latitude": "32.68749", + "longitude": "-94.87405", + "city": "Gilmer", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10797", + "density": "28.7", + "countyfips": "48459", + "countyname": "Upshur", + "countyweights": "{\"48459\": \"99.22\", \"48183\": \"0.78\"}", + "countynamesall": "Upshur|Gregg", + "countyfipsall": "48459|48183", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75647": { + "latitude": "32.5189", + "longitude": "-94.95133", + "city": "Gladewater", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13712", + "density": "69.7", + "countyfips": "48183", + "countyname": "Gregg", + "countyweights": "{\"48183\": \"54.63\", \"48459\": \"36.03\", \"48423\": \"9.34\"}", + "countynamesall": "Gregg|Upshur|Smith", + "countyfipsall": "48183|48459|48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75650": { + "latitude": "32.51394", + "longitude": "-94.55473", + "city": "Hallsville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9837", + "density": "30.6", + "countyfips": "48203", + "countyname": "Harrison", + "countyweights": "{\"48203\": \"100\"}", + "countynamesall": "Harrison", + "countyfipsall": "48203", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75651": { + "latitude": "32.67157", + "longitude": "-94.53603", + "city": "Harleton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2100", + "density": "13.8", + "countyfips": "48203", + "countyname": "Harrison", + "countyweights": "{\"48203\": \"97.26\", \"48315\": \"2.74\"}", + "countynamesall": "Harrison|Marion", + "countyfipsall": "48203|48315", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75652": { + "latitude": "32.22989", + "longitude": "-94.73272", + "city": "Henderson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16223", + "density": "35.6", + "countyfips": "48401", + "countyname": "Rusk", + "countyweights": "{\"48401\": \"100\"}", + "countynamesall": "Rusk", + "countyfipsall": "48401", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75654": { + "latitude": "32.08099", + "longitude": "-94.82647", + "city": "Henderson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12664", + "density": "24.1", + "countyfips": "48401", + "countyname": "Rusk", + "countyweights": "{\"48401\": \"99.88\", \"48073\": \"0.12\"}", + "countynamesall": "Rusk|Cherokee", + "countyfipsall": "48401|48073", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75656": { + "latitude": "33.00552", + "longitude": "-94.59071", + "city": "Hughes Springs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4331", + "density": "15.6", + "countyfips": "48067", + "countyname": "Cass", + "countyweights": "{\"48067\": \"91.34\", \"48343\": \"8.66\"}", + "countynamesall": "Cass|Morris", + "countyfipsall": "48067|48343", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75657": { + "latitude": "32.7922", + "longitude": "-94.30601", + "city": "Jefferson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7261", + "density": "8.4", + "countyfips": "48315", + "countyname": "Marion", + "countyweights": "{\"48315\": \"92.29\", \"48067\": \"4.18\", \"48203\": \"3.53\"}", + "countynamesall": "Marion|Cass|Harrison", + "countyfipsall": "48315|48067|48203", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75661": { + "latitude": "32.63754", + "longitude": "-94.16153", + "city": "Karnack", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3094", + "density": "9.4", + "countyfips": "48203", + "countyname": "Harrison", + "countyweights": "{\"48203\": \"100\"}", + "countynamesall": "Harrison", + "countyfipsall": "48203", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75662": { + "latitude": "32.38397", + "longitude": "-94.87014", + "city": "Kilgore", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24976", + "density": "75.6", + "countyfips": "48183", + "countyname": "Gregg", + "countyweights": "{\"48183\": \"72.11\", \"48401\": \"26.09\", \"48423\": \"1.79\"}", + "countynamesall": "Gregg|Rusk|Smith", + "countyfipsall": "48183|48401|48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75667": { + "latitude": "31.98544", + "longitude": "-94.84005", + "city": "Laneville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1193", + "density": "5.5", + "countyfips": "48401", + "countyname": "Rusk", + "countyweights": "{\"48401\": \"100\"}", + "countynamesall": "Rusk", + "countyfipsall": "48401", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75668": { + "latitude": "32.90453", + "longitude": "-94.68362", + "city": "Lone Star", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2371", + "density": "40.2", + "countyfips": "48343", + "countyname": "Morris", + "countyweights": "{\"48343\": \"86.05\", \"48315\": \"13.95\"}", + "countynamesall": "Morris|Marion", + "countyfipsall": "48343|48315", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75669": { + "latitude": "32.03376", + "longitude": "-94.56395", + "city": "Long Branch", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "762", + "density": "4.7", + "countyfips": "48365", + "countyname": "Panola", + "countyweights": "{\"48365\": \"79.04\", \"48401\": \"20.96\"}", + "countynamesall": "Panola|Rusk", + "countyfipsall": "48365|48401", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75670": { + "latitude": "32.57299", + "longitude": "-94.42297", + "city": "Marshall", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17539", + "density": "55.1", + "countyfips": "48203", + "countyname": "Harrison", + "countyweights": "{\"48203\": \"100\"}", + "countynamesall": "Harrison", + "countyfipsall": "48203", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75672": { + "latitude": "32.46883", + "longitude": "-94.29489", + "city": "Marshall", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16351", + "density": "26.6", + "countyfips": "48203", + "countyname": "Harrison", + "countyweights": "{\"48203\": \"100\"}", + "countynamesall": "Harrison", + "countyfipsall": "48203", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75681": { + "latitude": "31.92844", + "longitude": "-94.69197", + "city": "Mount Enterprise", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2128", + "density": "6.4", + "countyfips": "48401", + "countyname": "Rusk", + "countyweights": "{\"48401\": \"100\"}", + "countynamesall": "Rusk", + "countyfipsall": "48401", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75682": { + "latitude": "32.25033", + "longitude": "-94.9366", + "city": "New London", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "578", + "density": "72.6", + "countyfips": "48401", + "countyname": "Rusk", + "countyweights": "{\"48401\": \"100\"}", + "countynamesall": "Rusk", + "countyfipsall": "48401", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75683": { + "latitude": "32.82301", + "longitude": "-94.73701", + "city": "Ore City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3709", + "density": "25.4", + "countyfips": "48459", + "countyname": "Upshur", + "countyweights": "{\"48459\": \"79.23\", \"48315\": \"20.77\"}", + "countynamesall": "Upshur|Marion", + "countyfipsall": "48459|48315", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75684": { + "latitude": "32.27335", + "longitude": "-94.93895", + "city": "Overton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7894", + "density": "30.2", + "countyfips": "48401", + "countyname": "Rusk", + "countyweights": "{\"48401\": \"89.22\", \"48423\": \"10.78\"}", + "countynamesall": "Rusk|Smith", + "countyfipsall": "48401|48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75686": { + "latitude": "32.96953", + "longitude": "-94.95018", + "city": "Pittsburg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13184", + "density": "21.9", + "countyfips": "48063", + "countyname": "Camp", + "countyweights": "{\"48063\": \"86.6\", \"48449\": \"6.78\", \"48459\": \"6.11\", \"48343\": \"0.51\"}", + "countynamesall": "Camp|Titus|Upshur|Morris", + "countyfipsall": "48063|48449|48459|48343", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75691": { + "latitude": "32.31327", + "longitude": "-94.55066", + "city": "Tatum", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4320", + "density": "17.9", + "countyfips": "48401", + "countyname": "Rusk", + "countyweights": "{\"48401\": \"93.24\", \"48365\": \"6.76\"}", + "countynamesall": "Rusk|Panola", + "countyfipsall": "48401|48365", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75692": { + "latitude": "32.48038", + "longitude": "-94.11629", + "city": "Waskom", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4414", + "density": "19.0", + "countyfips": "48203", + "countyname": "Harrison", + "countyweights": "{\"48203\": \"100\"}", + "countynamesall": "Harrison", + "countyfipsall": "48203", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75693": { + "latitude": "32.53385", + "longitude": "-94.85985", + "city": "White Oak", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7076", + "density": "248.8", + "countyfips": "48183", + "countyname": "Gregg", + "countyweights": "{\"48183\": \"100\"}", + "countynamesall": "Gregg", + "countyfipsall": "48183", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75701": { + "latitude": "32.32331", + "longitude": "-95.3009", + "city": "Tyler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35858", + "density": "880.8", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75702": { + "latitude": "32.36287", + "longitude": "-95.31531", + "city": "Tyler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27698", + "density": "782.5", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75703": { + "latitude": "32.23855", + "longitude": "-95.32063", + "city": "Tyler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "42777", + "density": "304.5", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75704": { + "latitude": "32.40753", + "longitude": "-95.44131", + "city": "Tyler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10199", + "density": "58.7", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75705": { + "latitude": "32.36603", + "longitude": "-95.10274", + "city": "Tyler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2762", + "density": "38.5", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75706": { + "latitude": "32.466", + "longitude": "-95.3076", + "city": "Tyler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10449", + "density": "53.8", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75707": { + "latitude": "32.30359", + "longitude": "-95.17687", + "city": "Tyler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14232", + "density": "106.4", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75708": { + "latitude": "32.41635", + "longitude": "-95.20959", + "city": "Tyler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7698", + "density": "54.3", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75709": { + "latitude": "32.31072", + "longitude": "-95.39289", + "city": "Tyler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4731", + "density": "88.1", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75750": { + "latitude": "32.27443", + "longitude": "-95.07493", + "city": "Arp", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3766", + "density": "31.1", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75751": { + "latitude": "32.09643", + "longitude": "-95.90829", + "city": "Athens", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17084", + "density": "41.0", + "countyfips": "48213", + "countyname": "Henderson", + "countyweights": "{\"48213\": \"98.47\", \"48001\": \"1.53\"}", + "countynamesall": "Henderson|Anderson", + "countyfipsall": "48213|48001", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75752": { + "latitude": "32.24454", + "longitude": "-95.80858", + "city": "Athens", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6998", + "density": "18.3", + "countyfips": "48213", + "countyname": "Henderson", + "countyweights": "{\"48213\": \"95.51\", \"48467\": \"4.49\"}", + "countynamesall": "Henderson|Van Zandt", + "countyfipsall": "48213|48467", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75754": { + "latitude": "32.42579", + "longitude": "-95.66519", + "city": "Ben Wheeler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6627", + "density": "20.6", + "countyfips": "48467", + "countyname": "Van Zandt", + "countyweights": "{\"48467\": \"100\"}", + "countynamesall": "Van Zandt", + "countyfipsall": "48467", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75755": { + "latitude": "32.63315", + "longitude": "-95.08596", + "city": "Big Sandy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5178", + "density": "19.1", + "countyfips": "48459", + "countyname": "Upshur", + "countyweights": "{\"48459\": \"98.6\", \"48499\": \"1.4\"}", + "countynamesall": "Upshur|Wood", + "countyfipsall": "48459|48499", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75756": { + "latitude": "32.30402", + "longitude": "-95.60003", + "city": "Brownsboro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4450", + "density": "25.1", + "countyfips": "48213", + "countyname": "Henderson", + "countyweights": "{\"48213\": \"97.18\", \"48467\": \"2.82\"}", + "countynamesall": "Henderson|Van Zandt", + "countyfipsall": "48213|48467", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75757": { + "latitude": "32.11461", + "longitude": "-95.349", + "city": "Bullard", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12802", + "density": "56.6", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"58.98\", \"48073\": \"41.02\"}", + "countynamesall": "Smith|Cherokee", + "countyfipsall": "48423|48073", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75758": { + "latitude": "32.27541", + "longitude": "-95.50733", + "city": "Chandler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8739", + "density": "68.4", + "countyfips": "48213", + "countyname": "Henderson", + "countyweights": "{\"48213\": \"93.07\", \"48467\": \"6.93\"}", + "countynamesall": "Henderson|Van Zandt", + "countyfipsall": "48213|48467", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75759": { + "latitude": "32.03594", + "longitude": "-95.41876", + "city": "Cuney", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "54", + "density": "9.3", + "countyfips": "48073", + "countyname": "Cherokee", + "countyweights": "{\"48073\": \"100\"}", + "countynamesall": "Cherokee", + "countyfipsall": "48073", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75760": { + "latitude": "31.8041", + "longitude": "-94.8556", + "city": "Cushing", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2066", + "density": "6.1", + "countyfips": "48347", + "countyname": "Nacogdoches", + "countyweights": "{\"48347\": \"86.15\", \"48401\": \"13.85\"}", + "countynamesall": "Nacogdoches|Rusk", + "countyfipsall": "48347|48401", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75762": { + "latitude": "32.21681", + "longitude": "-95.41378", + "city": "Flint", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12412", + "density": "110.0", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75763": { + "latitude": "32.04187", + "longitude": "-95.52214", + "city": "Frankston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6247", + "density": "22.4", + "countyfips": "48001", + "countyname": "Anderson", + "countyweights": "{\"48001\": \"51.64\", \"48213\": \"48.36\"}", + "countynamesall": "Anderson|Henderson", + "countyfipsall": "48001|48213", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75764": { + "latitude": "31.89544", + "longitude": "-95.14372", + "city": "Gallatin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "187", + "density": "57.1", + "countyfips": "48073", + "countyname": "Cherokee", + "countyweights": "{\"48073\": \"100\"}", + "countynamesall": "Cherokee", + "countyfipsall": "48073", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75765": { + "latitude": "32.64159", + "longitude": "-95.23516", + "city": "Hawkins", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7157", + "density": "27.1", + "countyfips": "48499", + "countyname": "Wood", + "countyweights": "{\"48499\": \"99.74\", \"48459\": \"0.26\"}", + "countynamesall": "Wood|Upshur", + "countyfipsall": "48499|48459", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75766": { + "latitude": "31.9462", + "longitude": "-95.25702", + "city": "Jacksonville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26925", + "density": "34.0", + "countyfips": "48073", + "countyname": "Cherokee", + "countyweights": "{\"48073\": \"100\"}", + "countynamesall": "Cherokee", + "countyfipsall": "48073", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75770": { + "latitude": "32.13855", + "longitude": "-95.64876", + "city": "Larue", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2925", + "density": "9.4", + "countyfips": "48213", + "countyname": "Henderson", + "countyweights": "{\"48213\": \"100\"}", + "countynamesall": "Henderson", + "countyfipsall": "48213", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75771": { + "latitude": "32.5361", + "longitude": "-95.43456", + "city": "Lindale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21310", + "density": "57.1", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75773": { + "latitude": "32.67876", + "longitude": "-95.44591", + "city": "Mineola", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14523", + "density": "31.4", + "countyfips": "48499", + "countyname": "Wood", + "countyweights": "{\"48499\": \"92.56\", \"48423\": \"7.44\"}", + "countynamesall": "Wood|Smith", + "countyfipsall": "48499|48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75778": { + "latitude": "32.3023", + "longitude": "-95.71185", + "city": "Murchison", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2947", + "density": "20.2", + "countyfips": "48213", + "countyname": "Henderson", + "countyweights": "{\"48213\": \"66.53\", \"48467\": \"33.47\"}", + "countynamesall": "Henderson|Van Zandt", + "countyfipsall": "48213|48467", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75779": { + "latitude": "31.86529", + "longitude": "-95.48595", + "city": "Neches", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "128", + "density": "57.4", + "countyfips": "48001", + "countyname": "Anderson", + "countyweights": "{\"48001\": \"100\"}", + "countynamesall": "Anderson", + "countyfipsall": "48001", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75780": { + "latitude": "31.99099", + "longitude": "-95.09183", + "city": "New Summerfield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "216", + "density": "66.4", + "countyfips": "48073", + "countyname": "Cherokee", + "countyweights": "{\"48073\": \"100\"}", + "countynamesall": "Cherokee", + "countyfipsall": "48073", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75783": { + "latitude": "32.82157", + "longitude": "-95.42365", + "city": "Quitman", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7942", + "density": "25.2", + "countyfips": "48499", + "countyname": "Wood", + "countyweights": "{\"48499\": \"100\"}", + "countynamesall": "Wood", + "countyfipsall": "48499", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75784": { + "latitude": "31.8737", + "longitude": "-94.97332", + "city": "Reklaw", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "774", + "density": "7.7", + "countyfips": "48073", + "countyname": "Cherokee", + "countyweights": "{\"48073\": \"51.98\", \"48401\": \"48.02\"}", + "countynamesall": "Cherokee|Rusk", + "countyfipsall": "48073|48401", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75785": { + "latitude": "31.77994", + "longitude": "-95.17381", + "city": "Rusk", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11357", + "density": "16.4", + "countyfips": "48073", + "countyname": "Cherokee", + "countyweights": "{\"48073\": \"100\"}", + "countynamesall": "Cherokee", + "countyfipsall": "48073", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75788": { + "latitude": "31.82598", + "longitude": "-94.92588", + "city": "Sacul", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23", + "density": "2.6", + "countyfips": "48347", + "countyname": "Nacogdoches", + "countyweights": "{\"48347\": \"100\"}", + "countynamesall": "Nacogdoches", + "countyfipsall": "48347", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75789": { + "latitude": "32.10909", + "longitude": "-95.09693", + "city": "Troup", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7806", + "density": "16.0", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"62.22\", \"48073\": \"37.11\", \"48401\": \"0.67\"}", + "countynamesall": "Smith|Cherokee|Rusk", + "countyfipsall": "48423|48073|48401", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75790": { + "latitude": "32.53231", + "longitude": "-95.6426", + "city": "Van", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3864", + "density": "40.6", + "countyfips": "48467", + "countyname": "Van Zandt", + "countyweights": "{\"48467\": \"98.24\", \"48423\": \"1.76\"}", + "countynamesall": "Van Zandt|Smith", + "countyfipsall": "48467|48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75791": { + "latitude": "32.22164", + "longitude": "-95.22053", + "city": "Whitehouse", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13562", + "density": "135.9", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75792": { + "latitude": "32.47668", + "longitude": "-95.10197", + "city": "Winona", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3002", + "density": "12.3", + "countyfips": "48423", + "countyname": "Smith", + "countyweights": "{\"48423\": \"100\"}", + "countynamesall": "Smith", + "countyfipsall": "48423", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75801": { + "latitude": "31.73457", + "longitude": "-95.53316", + "city": "Palestine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16244", + "density": "29.2", + "countyfips": "48001", + "countyname": "Anderson", + "countyweights": "{\"48001\": \"100\"}", + "countynamesall": "Anderson", + "countyfipsall": "48001", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75803": { + "latitude": "31.87441", + "longitude": "-95.66916", + "city": "Palestine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21928", + "density": "25.5", + "countyfips": "48001", + "countyname": "Anderson", + "countyweights": "{\"48001\": \"100\"}", + "countynamesall": "Anderson", + "countyfipsall": "48001", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75831": { + "latitude": "31.46234", + "longitude": "-96.01473", + "city": "Buffalo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5529", + "density": "8.4", + "countyfips": "48289", + "countyname": "Leon", + "countyweights": "{\"48289\": \"83.51\", \"48161\": \"16.49\"}", + "countynamesall": "Leon|Freestone", + "countyfipsall": "48289|48161", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75832": { + "latitude": "31.91904", + "longitude": "-95.9946", + "city": "Cayuga", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "107", + "density": "2.5", + "countyfips": "48001", + "countyname": "Anderson", + "countyweights": "{\"48001\": \"100\"}", + "countynamesall": "Anderson", + "countyfipsall": "48001", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75833": { + "latitude": "31.26718", + "longitude": "-95.839", + "city": "Centerville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2944", + "density": "4.6", + "countyfips": "48289", + "countyname": "Leon", + "countyweights": "{\"48289\": \"100\"}", + "countynamesall": "Leon", + "countyfipsall": "48289", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75835": { + "latitude": "31.29348", + "longitude": "-95.49196", + "city": "Crockett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11086", + "density": "9.5", + "countyfips": "48225", + "countyname": "Houston", + "countyweights": "{\"48225\": \"100\"}", + "countynamesall": "Houston", + "countyfipsall": "48225", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75838": { + "latitude": "31.47745", + "longitude": "-96.22824", + "city": "Donie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "639", + "density": "3.5", + "countyfips": "48161", + "countyname": "Freestone", + "countyweights": "{\"48161\": \"70.57\", \"48293\": \"29.43\"}", + "countynamesall": "Freestone|Limestone", + "countyfipsall": "48161|48293", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75839": { + "latitude": "31.60599", + "longitude": "-95.5779", + "city": "Elkhart", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5927", + "density": "15.5", + "countyfips": "48001", + "countyname": "Anderson", + "countyweights": "{\"48001\": \"99.31\", \"48225\": \"0.69\"}", + "countynamesall": "Anderson|Houston", + "countyfipsall": "48001|48225", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75840": { + "latitude": "31.78236", + "longitude": "-96.08899", + "city": "Fairfield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6340", + "density": "9.0", + "countyfips": "48161", + "countyname": "Freestone", + "countyweights": "{\"48161\": \"100\"}", + "countynamesall": "Freestone", + "countyfipsall": "48161", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75844": { + "latitude": "31.51376", + "longitude": "-95.43842", + "city": "Grapeland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5968", + "density": "6.4", + "countyfips": "48225", + "countyname": "Houston", + "countyweights": "{\"48225\": \"87.85\", \"48001\": \"12.15\"}", + "countynamesall": "Houston|Anderson", + "countyfipsall": "48225|48001", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75845": { + "latitude": "31.10075", + "longitude": "-95.08954", + "city": "Groveton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2926", + "density": "3.6", + "countyfips": "48455", + "countyname": "Trinity", + "countyweights": "{\"48455\": \"100\"}", + "countynamesall": "Trinity", + "countyfipsall": "48455", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75846": { + "latitude": "31.33865", + "longitude": "-96.16544", + "city": "Jewett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2957", + "density": "7.8", + "countyfips": "48289", + "countyname": "Leon", + "countyweights": "{\"48289\": \"83.92\", \"48293\": \"16.08\"}", + "countynamesall": "Leon|Limestone", + "countyfipsall": "48289|48293", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75847": { + "latitude": "31.35383", + "longitude": "-95.14609", + "city": "Kennard", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1843", + "density": "2.9", + "countyfips": "48225", + "countyname": "Houston", + "countyweights": "{\"48225\": \"85.85\", \"48455\": \"14.15\"}", + "countynamesall": "Houston|Trinity", + "countyfipsall": "48225|48455", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75848": { + "latitude": "31.76525", + "longitude": "-96.32993", + "city": "Kirvin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "137", + "density": "267.4", + "countyfips": "48161", + "countyname": "Freestone", + "countyweights": "{\"48161\": \"100\"}", + "countynamesall": "Freestone", + "countyfipsall": "48161", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75849": { + "latitude": "31.41743", + "longitude": "-95.48164", + "city": "Latexo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "67", + "density": "13.6", + "countyfips": "48225", + "countyname": "Houston", + "countyweights": "{\"48225\": \"100\"}", + "countynamesall": "Houston", + "countyfipsall": "48225", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75850": { + "latitude": "31.13741", + "longitude": "-95.9168", + "city": "Leona", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "796", + "density": "4.3", + "countyfips": "48289", + "countyname": "Leon", + "countyweights": "{\"48289\": \"100\"}", + "countynamesall": "Leon", + "countyfipsall": "48289", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75851": { + "latitude": "31.09323", + "longitude": "-95.49712", + "city": "Lovelady", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4954", + "density": "7.4", + "countyfips": "48225", + "countyname": "Houston", + "countyweights": "{\"48225\": \"96.38\", \"48455\": \"3.62\"}", + "countynamesall": "Houston|Trinity", + "countyfipsall": "48225|48455", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75852": { + "latitude": "30.96685", + "longitude": "-95.71166", + "city": "Midway", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4017", + "density": "9.0", + "countyfips": "48313", + "countyname": "Madison", + "countyweights": "{\"48313\": \"96.62\", \"48471\": \"3.38\"}", + "countynamesall": "Madison|Walker", + "countyfipsall": "48313|48471", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75853": { + "latitude": "31.93692", + "longitude": "-95.81323", + "city": "Montalba", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "466", + "density": "2.4", + "countyfips": "48001", + "countyname": "Anderson", + "countyweights": "{\"48001\": \"100\"}", + "countynamesall": "Anderson", + "countyfipsall": "48001", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75855": { + "latitude": "31.56221", + "longitude": "-95.85025", + "city": "Oakwood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3078", + "density": "4.4", + "countyfips": "48289", + "countyname": "Leon", + "countyweights": "{\"48289\": \"54.41\", \"48161\": \"45.59\"}", + "countynamesall": "Leon|Freestone", + "countyfipsall": "48289|48161", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75856": { + "latitude": "31.18891", + "longitude": "-95.25576", + "city": "Pennington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "215", + "density": "3.3", + "countyfips": "48455", + "countyname": "Trinity", + "countyweights": "{\"48455\": \"58.67\", \"48225\": \"41.33\"}", + "countynamesall": "Trinity|Houston", + "countyfipsall": "48455|48225", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75858": { + "latitude": "31.39074", + "longitude": "-95.12689", + "city": "Ratcliff", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48225", + "countyname": "Houston", + "countyweights": "{\"48225\": \"100\"}", + "countynamesall": "Houston", + "countyfipsall": "48225", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75859": { + "latitude": "31.88161", + "longitude": "-96.24023", + "city": "Streetman", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2134", + "density": "7.0", + "countyfips": "48161", + "countyname": "Freestone", + "countyweights": "{\"48161\": \"83\", \"48349\": \"17\"}", + "countynamesall": "Freestone|Navarro", + "countyfipsall": "48161|48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75860": { + "latitude": "31.62091", + "longitude": "-96.24864", + "city": "Teague", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6516", + "density": "14.8", + "countyfips": "48161", + "countyname": "Freestone", + "countyweights": "{\"48161\": \"100\"}", + "countynamesall": "Freestone", + "countyfipsall": "48161", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75861": { + "latitude": "31.85323", + "longitude": "-95.8924", + "city": "Tennessee Colony", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9126", + "density": "30.8", + "countyfips": "48001", + "countyname": "Anderson", + "countyweights": "{\"48001\": \"100\"}", + "countynamesall": "Anderson", + "countyfipsall": "48001", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75862": { + "latitude": "30.95984", + "longitude": "-95.32384", + "city": "Trinity", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10176", + "density": "15.9", + "countyfips": "48455", + "countyname": "Trinity", + "countyweights": "{\"48455\": \"95.92\", \"48471\": \"4.08\"}", + "countynamesall": "Trinity|Walker", + "countyfipsall": "48455|48471", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75901": { + "latitude": "31.30134", + "longitude": "-94.65552", + "city": "Lufkin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30429", + "density": "72.8", + "countyfips": "48005", + "countyname": "Angelina", + "countyweights": "{\"48005\": \"100\"}", + "countynamesall": "Angelina", + "countyfipsall": "48005", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75904": { + "latitude": "31.3397", + "longitude": "-94.82173", + "city": "Lufkin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34406", + "density": "93.4", + "countyfips": "48005", + "countyname": "Angelina", + "countyweights": "{\"48005\": \"99.95\", \"48455\": \"0.05\"}", + "countynamesall": "Angelina|Trinity", + "countyfipsall": "48005|48455", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75925": { + "latitude": "31.61114", + "longitude": "-95.06597", + "city": "Alto", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4002", + "density": "6.5", + "countyfips": "48073", + "countyname": "Cherokee", + "countyweights": "{\"48073\": \"100\"}", + "countynamesall": "Cherokee", + "countyfipsall": "48073", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75926": { + "latitude": "31.25151", + "longitude": "-94.96273", + "city": "Apple Springs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1151", + "density": "3.8", + "countyfips": "48455", + "countyname": "Trinity", + "countyweights": "{\"48455\": \"100\"}", + "countynamesall": "Trinity", + "countyfipsall": "48455", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75928": { + "latitude": "30.67148", + "longitude": "-93.71173", + "city": "Bon Wier", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1198", + "density": "5.1", + "countyfips": "48351", + "countyname": "Newton", + "countyweights": "{\"48351\": \"100\"}", + "countynamesall": "Newton", + "countyfipsall": "48351", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75929": { + "latitude": "31.24549", + "longitude": "-94.19464", + "city": "Broaddus", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1649", + "density": "4.8", + "countyfips": "48405", + "countyname": "San Augustine", + "countyweights": "{\"48405\": \"100\"}", + "countynamesall": "San Augustine", + "countyfipsall": "48405", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75930": { + "latitude": "31.32203", + "longitude": "-94.03261", + "city": "Bronson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1779", + "density": "5.1", + "countyfips": "48403", + "countyname": "Sabine", + "countyweights": "{\"48403\": \"60.41\", \"48405\": \"39.59\"}", + "countynamesall": "Sabine|San Augustine", + "countyfipsall": "48403|48405", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75931": { + "latitude": "31.1108", + "longitude": "-94.00384", + "city": "Brookeland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2203", + "density": "15.2", + "countyfips": "48241", + "countyname": "Jasper", + "countyweights": "{\"48241\": \"84.87\", \"48403\": \"15.13\"}", + "countynamesall": "Jasper|Sabine", + "countyfipsall": "48241|48403", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75932": { + "latitude": "31.05408", + "longitude": "-93.60988", + "city": "Burkeville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1743", + "density": "5.4", + "countyfips": "48351", + "countyname": "Newton", + "countyweights": "{\"48351\": \"100\"}", + "countynamesall": "Newton", + "countyfipsall": "48351", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75933": { + "latitude": "30.55809", + "longitude": "-93.81161", + "city": "Call", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1158", + "density": "6.0", + "countyfips": "48351", + "countyname": "Newton", + "countyweights": "{\"48351\": \"70.79\", \"48241\": \"29.21\"}", + "countynamesall": "Newton|Jasper", + "countyfipsall": "48351|48241", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75934": { + "latitude": "30.89591", + "longitude": "-94.75068", + "city": "Camden", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "219", + "density": "11.4", + "countyfips": "48373", + "countyname": "Polk", + "countyweights": "{\"48373\": \"100\"}", + "countynamesall": "Polk", + "countyfipsall": "48373", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75935": { + "latitude": "31.73269", + "longitude": "-94.20156", + "city": "Center", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13648", + "density": "14.9", + "countyfips": "48419", + "countyname": "Shelby", + "countyweights": "{\"48419\": \"98.78\", \"48405\": \"1.22\"}", + "countynamesall": "Shelby|San Augustine", + "countyfipsall": "48419|48405", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75936": { + "latitude": "30.95213", + "longitude": "-94.57961", + "city": "Chester", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1128", + "density": "3.5", + "countyfips": "48457", + "countyname": "Tyler", + "countyweights": "{\"48457\": \"85.71\", \"48373\": \"14.29\"}", + "countynamesall": "Tyler|Polk", + "countyfipsall": "48457|48373", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75937": { + "latitude": "31.45872", + "longitude": "-94.3765", + "city": "Chireno", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "891", + "density": "5.1", + "countyfips": "48347", + "countyname": "Nacogdoches", + "countyweights": "{\"48347\": \"100\"}", + "countynamesall": "Nacogdoches", + "countyfipsall": "48347", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75938": { + "latitude": "30.93262", + "longitude": "-94.35342", + "city": "Colmesneil", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2585", + "density": "5.4", + "countyfips": "48457", + "countyname": "Tyler", + "countyweights": "{\"48457\": \"100\"}", + "countynamesall": "Tyler", + "countyfipsall": "48457", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75939": { + "latitude": "31.01824", + "longitude": "-94.79403", + "city": "Corrigan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5260", + "density": "8.4", + "countyfips": "48373", + "countyname": "Polk", + "countyweights": "{\"48373\": \"100\"}", + "countynamesall": "Polk", + "countyfipsall": "48373", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75941": { + "latitude": "31.17992", + "longitude": "-94.76368", + "city": "Diboll", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8465", + "density": "38.5", + "countyfips": "48005", + "countyname": "Angelina", + "countyweights": "{\"48005\": \"100\"}", + "countynamesall": "Angelina", + "countyfipsall": "48005", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75942": { + "latitude": "30.81634", + "longitude": "-94.43146", + "city": "Doucette", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "229", + "density": "214.2", + "countyfips": "48457", + "countyname": "Tyler", + "countyweights": "{\"48457\": \"100\"}", + "countynamesall": "Tyler", + "countyfipsall": "48457", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75943": { + "latitude": "31.65356", + "longitude": "-94.88784", + "city": "Douglass", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1442", + "density": "8.7", + "countyfips": "48347", + "countyname": "Nacogdoches", + "countyweights": "{\"48347\": \"100\"}", + "countynamesall": "Nacogdoches", + "countyfipsall": "48347", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75944": { + "latitude": "31.33734", + "longitude": "-94.38859", + "city": "Etoile", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1100", + "density": "10.7", + "countyfips": "48347", + "countyname": "Nacogdoches", + "countyweights": "{\"48347\": \"100\"}", + "countynamesall": "Nacogdoches", + "countyfipsall": "48347", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75946": { + "latitude": "31.81362", + "longitude": "-94.52541", + "city": "Garrison", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3744", + "density": "10.4", + "countyfips": "48347", + "countyname": "Nacogdoches", + "countyweights": "{\"48347\": \"78.76\", \"48401\": \"21.24\"}", + "countynamesall": "Nacogdoches|Rusk", + "countyfipsall": "48347|48401", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75948": { + "latitude": "31.30812", + "longitude": "-93.77894", + "city": "Hemphill", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6268", + "density": "9.9", + "countyfips": "48403", + "countyname": "Sabine", + "countyweights": "{\"48403\": \"99.65\", \"48351\": \"0.35\"}", + "countynamesall": "Sabine|Newton", + "countyfipsall": "48403|48351", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75949": { + "latitude": "31.23143", + "longitude": "-94.51943", + "city": "Huntington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8225", + "density": "16.1", + "countyfips": "48005", + "countyname": "Angelina", + "countyweights": "{\"48005\": \"100\"}", + "countynamesall": "Angelina", + "countyfipsall": "48005", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75951": { + "latitude": "30.94151", + "longitude": "-94.05384", + "city": "Jasper", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15859", + "density": "15.6", + "countyfips": "48241", + "countyname": "Jasper", + "countyweights": "{\"48241\": \"99.98\", \"48351\": \"0.02\"}", + "countynamesall": "Jasper|Newton", + "countyfipsall": "48241|48351", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75954": { + "latitude": "31.92347", + "longitude": "-94.05436", + "city": "Joaquin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2466", + "density": "8.9", + "countyfips": "48419", + "countyname": "Shelby", + "countyweights": "{\"48419\": \"94.09\", \"48365\": \"5.91\"}", + "countynamesall": "Shelby|Panola", + "countyfipsall": "48419|48365", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75956": { + "latitude": "30.67771", + "longitude": "-93.97821", + "city": "Kirbyville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8937", + "density": "14.2", + "countyfips": "48241", + "countyname": "Jasper", + "countyweights": "{\"48241\": \"91.89\", \"48351\": \"8.11\"}", + "countynamesall": "Jasper|Newton", + "countyfipsall": "48241|48351", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75959": { + "latitude": "31.51451", + "longitude": "-93.8493", + "city": "Milam", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "994", + "density": "8.2", + "countyfips": "48403", + "countyname": "Sabine", + "countyweights": "{\"48403\": \"100\"}", + "countynamesall": "Sabine", + "countyfipsall": "48403", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75960": { + "latitude": "30.91444", + "longitude": "-94.86708", + "city": "Moscow", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "653", + "density": "5.9", + "countyfips": "48373", + "countyname": "Polk", + "countyweights": "{\"48373\": \"100\"}", + "countynamesall": "Polk", + "countyfipsall": "48373", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75961": { + "latitude": "31.56113", + "longitude": "-94.5", + "city": "Nacogdoches", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16004", + "density": "22.3", + "countyfips": "48347", + "countyname": "Nacogdoches", + "countyweights": "{\"48347\": \"100\"}", + "countynamesall": "Nacogdoches", + "countyfipsall": "48347", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75962": { + "latitude": "31.61986", + "longitude": "-94.64708", + "city": "Nacogdoches", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3242", + "density": "4712.4", + "countyfips": "48347", + "countyname": "Nacogdoches", + "countyweights": "{\"48347\": \"100\"}", + "countynamesall": "Nacogdoches", + "countyfipsall": "48347", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75964": { + "latitude": "31.62169", + "longitude": "-94.74495", + "city": "Nacogdoches", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19811", + "density": "33.0", + "countyfips": "48347", + "countyname": "Nacogdoches", + "countyweights": "{\"48347\": \"100\"}", + "countynamesall": "Nacogdoches", + "countyfipsall": "48347", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75965": { + "latitude": "31.72385", + "longitude": "-94.62609", + "city": "Nacogdoches", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17907", + "density": "93.6", + "countyfips": "48347", + "countyname": "Nacogdoches", + "countyweights": "{\"48347\": \"100\"}", + "countynamesall": "Nacogdoches", + "countyfipsall": "48347", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75966": { + "latitude": "30.8352", + "longitude": "-93.72843", + "city": "Newton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4920", + "density": "7.0", + "countyfips": "48351", + "countyname": "Newton", + "countyweights": "{\"48351\": \"100\"}", + "countynamesall": "Newton", + "countyfipsall": "48351", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75968": { + "latitude": "31.25261", + "longitude": "-93.95041", + "city": "Pineland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1635", + "density": "8.6", + "countyfips": "48403", + "countyname": "Sabine", + "countyweights": "{\"48403\": \"99.94\", \"48405\": \"0.06\"}", + "countynamesall": "Sabine|San Augustine", + "countyfipsall": "48403|48405", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75969": { + "latitude": "31.44688", + "longitude": "-94.89891", + "city": "Pollok", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3854", + "density": "17.3", + "countyfips": "48005", + "countyname": "Angelina", + "countyweights": "{\"48005\": \"94.75\", \"48073\": \"5.25\"}", + "countynamesall": "Angelina|Cherokee", + "countyfipsall": "48005|48073", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75972": { + "latitude": "31.49498", + "longitude": "-94.12708", + "city": "San Augustine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6169", + "density": "6.6", + "countyfips": "48405", + "countyname": "San Augustine", + "countyweights": "{\"48405\": \"95.12\", \"48403\": \"4.03\", \"48419\": \"0.85\"}", + "countynamesall": "San Augustine|Sabine|Shelby", + "countyfipsall": "48405|48403|48419", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75973": { + "latitude": "31.71654", + "longitude": "-93.93295", + "city": "Shelbyville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2828", + "density": "6.1", + "countyfips": "48419", + "countyname": "Shelby", + "countyweights": "{\"48419\": \"100\"}", + "countynamesall": "Shelby", + "countyfipsall": "48419", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75974": { + "latitude": "31.95671", + "longitude": "-94.2387", + "city": "Tenaha", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3410", + "density": "12.6", + "countyfips": "48419", + "countyname": "Shelby", + "countyweights": "{\"48419\": \"82.69\", \"48365\": \"17.31\"}", + "countynamesall": "Shelby|Panola", + "countyfipsall": "48419|48365", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75975": { + "latitude": "31.89738", + "longitude": "-94.41302", + "city": "Timpson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4031", + "density": "10.8", + "countyfips": "48419", + "countyname": "Shelby", + "countyweights": "{\"48419\": \"95.78\", \"48401\": \"2.6\", \"48365\": \"1.62\"}", + "countynamesall": "Shelby|Rusk|Panola", + "countyfipsall": "48419|48401|48365", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75976": { + "latitude": "31.5206", + "longitude": "-94.92745", + "city": "Wells", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "778", + "density": "13.2", + "countyfips": "48073", + "countyname": "Cherokee", + "countyweights": "{\"48073\": \"100\"}", + "countynamesall": "Cherokee", + "countyfipsall": "48073", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75977": { + "latitude": "31.06121", + "longitude": "-93.78207", + "city": "Wiergate", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "291", + "density": "0.6", + "countyfips": "48351", + "countyname": "Newton", + "countyweights": "{\"48351\": \"100\"}", + "countynamesall": "Newton", + "countyfipsall": "48351", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75978": { + "latitude": "31.50905", + "longitude": "-94.5272", + "city": "Woden", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "134", + "density": "93.6", + "countyfips": "48347", + "countyname": "Nacogdoches", + "countyweights": "{\"48347\": \"100\"}", + "countynamesall": "Nacogdoches", + "countyfipsall": "48347", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75979": { + "latitude": "30.77631", + "longitude": "-94.40151", + "city": "Woodville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12228", + "density": "16.2", + "countyfips": "48457", + "countyname": "Tyler", + "countyweights": "{\"48457\": \"100\"}", + "countynamesall": "Tyler", + "countyfipsall": "48457", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "75980": { + "latitude": "31.12666", + "longitude": "-94.35255", + "city": "Zavalla", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2254", + "density": "5.4", + "countyfips": "48005", + "countyname": "Angelina", + "countyweights": "{\"48005\": \"97.53\", \"48241\": \"2.47\"}", + "countynamesall": "Angelina|Jasper", + "countyfipsall": "48005|48241", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76001": { + "latitude": "32.6304", + "longitude": "-97.15275", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "33748", + "density": "1262.4", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76002": { + "latitude": "32.62262", + "longitude": "-97.09224", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36460", + "density": "1949.8", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76006": { + "latitude": "32.78493", + "longitude": "-97.10018", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24684", + "density": "1262.1", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76008": { + "latitude": "32.69291", + "longitude": "-97.62376", + "city": "Aledo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19338", + "density": "100.7", + "countyfips": "48367", + "countyname": "Parker", + "countyweights": "{\"48367\": \"86.15\", \"48439\": \"13.85\"}", + "countynamesall": "Parker|Tarrant", + "countyfipsall": "48367|48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76009": { + "latitude": "32.4158", + "longitude": "-97.20169", + "city": "Alvarado", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "20417", + "density": "80.2", + "countyfips": "48251", + "countyname": "Johnson", + "countyweights": "{\"48251\": \"100\"}", + "countynamesall": "Johnson", + "countyfipsall": "48251", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76010": { + "latitude": "32.72283", + "longitude": "-97.08035", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "60097", + "density": "2604.0", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76011": { + "latitude": "32.75425", + "longitude": "-97.08253", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22622", + "density": "1088.4", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76012": { + "latitude": "32.75461", + "longitude": "-97.13902", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25719", + "density": "1215.4", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76013": { + "latitude": "32.72033", + "longitude": "-97.15647", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34203", + "density": "1473.2", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76014": { + "latitude": "32.69202", + "longitude": "-97.08794", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35096", + "density": "2353.4", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76015": { + "latitude": "32.69221", + "longitude": "-97.13341", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16961", + "density": "1528.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76016": { + "latitude": "32.68906", + "longitude": "-97.18871", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "32026", + "density": "1395.3", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76017": { + "latitude": "32.66204", + "longitude": "-97.16261", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "47499", + "density": "1763.9", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76018": { + "latitude": "32.66077", + "longitude": "-97.09", + "city": "Arlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31200", + "density": "1572.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76020": { + "latitude": "32.90006", + "longitude": "-97.56542", + "city": "Azle", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29131", + "density": "170.4", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"56.76\", \"48367\": \"40.75\", \"48497\": \"2.49\"}", + "countynamesall": "Tarrant|Parker|Wise", + "countyfipsall": "48439|48367|48497", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76021": { + "latitude": "32.85231", + "longitude": "-97.13119", + "city": "Bedford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35794", + "density": "1906.8", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76022": { + "latitude": "32.83064", + "longitude": "-97.14523", + "city": "Bedford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13495", + "density": "1951.4", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76023": { + "latitude": "33.04851", + "longitude": "-97.60577", + "city": "Boyd", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6909", + "density": "47.5", + "countyfips": "48497", + "countyname": "Wise", + "countyweights": "{\"48497\": \"96.6\", \"48367\": \"3.4\"}", + "countynamesall": "Wise|Parker", + "countyfipsall": "48497|48367", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76028": { + "latitude": "32.52604", + "longitude": "-97.30318", + "city": "Burleson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "70507", + "density": "353.0", + "countyfips": "48251", + "countyname": "Johnson", + "countyweights": "{\"48251\": \"70.93\", \"48439\": \"29.07\"}", + "countynamesall": "Johnson|Tarrant", + "countyfipsall": "48251|48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76031": { + "latitude": "32.34848", + "longitude": "-97.33114", + "city": "Cleburne", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17668", + "density": "94.1", + "countyfips": "48251", + "countyname": "Johnson", + "countyweights": "{\"48251\": \"100\"}", + "countynamesall": "Johnson", + "countyfipsall": "48251", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76033": { + "latitude": "32.28511", + "longitude": "-97.51137", + "city": "Cleburne", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26081", + "density": "61.4", + "countyfips": "48251", + "countyname": "Johnson", + "countyweights": "{\"48251\": \"99.94\", \"48221\": \"0.06\"}", + "countynamesall": "Johnson|Hood", + "countyfipsall": "48251|48221", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76034": { + "latitude": "32.8912", + "longitude": "-97.14876", + "city": "Colleyville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26418", + "density": "781.1", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76035": { + "latitude": "32.56288", + "longitude": "-97.63361", + "city": "Cresson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2211", + "density": "12.7", + "countyfips": "48367", + "countyname": "Parker", + "countyweights": "{\"48367\": \"67.51\", \"48221\": \"24.41\", \"48251\": \"8.08\"}", + "countynamesall": "Parker|Hood|Johnson", + "countyfipsall": "48367|48221|48251", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76036": { + "latitude": "32.57702", + "longitude": "-97.41284", + "city": "Crowley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27056", + "density": "227.1", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"88.05\", \"48251\": \"11.95\"}", + "countynamesall": "Tarrant|Johnson", + "countyfipsall": "48439|48251", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76039": { + "latitude": "32.85936", + "longitude": "-97.08383", + "city": "Euless", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36087", + "density": "2140.3", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76040": { + "latitude": "32.8147", + "longitude": "-97.0968", + "city": "Euless", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31519", + "density": "1069.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76041": { + "latitude": "32.24005", + "longitude": "-96.84634", + "city": "Forreston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "395", + "density": "12.9", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"100\"}", + "countynamesall": "Ellis", + "countyfipsall": "48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76043": { + "latitude": "32.20528", + "longitude": "-97.79709", + "city": "Glen Rose", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7440", + "density": "20.9", + "countyfips": "48425", + "countyname": "Somervell", + "countyweights": "{\"48425\": \"99.87\", \"48035\": \"0.13\"}", + "countynamesall": "Somervell|Bosque", + "countyfipsall": "48425|48035", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76044": { + "latitude": "32.4276", + "longitude": "-97.54354", + "city": "Godley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4401", + "density": "16.8", + "countyfips": "48251", + "countyname": "Johnson", + "countyweights": "{\"48251\": \"100\"}", + "countynamesall": "Johnson", + "countyfipsall": "48251", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76048": { + "latitude": "32.42318", + "longitude": "-97.80877", + "city": "Granbury", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24822", + "density": "88.3", + "countyfips": "48221", + "countyname": "Hood", + "countyweights": "{\"48221\": \"99.7\", \"48425\": \"0.3\"}", + "countynamesall": "Hood|Somervell", + "countyfipsall": "48221|48425", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76049": { + "latitude": "32.46394", + "longitude": "-97.70805", + "city": "Granbury", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29698", + "density": "113.5", + "countyfips": "48221", + "countyname": "Hood", + "countyweights": "{\"48221\": \"97.09\", \"48367\": \"1.93\", \"48251\": \"0.97\"}", + "countynamesall": "Hood|Parker|Johnson", + "countyfipsall": "48221|48367|48251", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76050": { + "latitude": "32.27537", + "longitude": "-97.16601", + "city": "Grandview", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6212", + "density": "19.6", + "countyfips": "48251", + "countyname": "Johnson", + "countyweights": "{\"48251\": \"90.86\", \"48217\": \"5.4\", \"48139\": \"3.74\"}", + "countynamesall": "Johnson|Hill|Ellis", + "countyfipsall": "48251|48217|48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76051": { + "latitude": "32.92499", + "longitude": "-97.07177", + "city": "Grapevine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "53291", + "density": "558.5", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\", \"48113\": \"0\"}", + "countynamesall": "Tarrant|Dallas", + "countyfipsall": "48439|48113", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76052": { + "latitude": "32.98624", + "longitude": "-97.37655", + "city": "Haslet", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22290", + "density": "190.0", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"92.63\", \"48121\": \"3.73\", \"48497\": \"3.64\"}", + "countynamesall": "Tarrant|Denton|Wise", + "countyfipsall": "48439|48121|48497", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76053": { + "latitude": "32.8171", + "longitude": "-97.17953", + "city": "Hurst", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30765", + "density": "1484.4", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76054": { + "latitude": "32.85918", + "longitude": "-97.17781", + "city": "Hurst", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12280", + "density": "1247.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76055": { + "latitude": "32.16217", + "longitude": "-97.15511", + "city": "Itasca", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2811", + "density": "12.2", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76058": { + "latitude": "32.46693", + "longitude": "-97.42394", + "city": "Joshua", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19904", + "density": "141.1", + "countyfips": "48251", + "countyname": "Johnson", + "countyweights": "{\"48251\": \"100\"}", + "countynamesall": "Johnson", + "countyfipsall": "48251", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76059": { + "latitude": "32.39252", + "longitude": "-97.32687", + "city": "Keene", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5601", + "density": "787.5", + "countyfips": "48251", + "countyname": "Johnson", + "countyweights": "{\"48251\": \"100\"}", + "countynamesall": "Johnson", + "countyfipsall": "48251", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76060": { + "latitude": "32.64076", + "longitude": "-97.21585", + "city": "Kennedale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8468", + "density": "441.9", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76061": { + "latitude": "32.50396", + "longitude": "-97.18842", + "city": "Lillian", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37", + "density": "9.5", + "countyfips": "48251", + "countyname": "Johnson", + "countyweights": "{\"48251\": \"100\"}", + "countynamesall": "Johnson", + "countyfipsall": "48251", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76063": { + "latitude": "32.56979", + "longitude": "-97.14275", + "city": "Mansfield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "73216", + "density": "545.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"95.24\", \"48251\": \"4.76\"}", + "countynamesall": "Tarrant|Johnson", + "countyfipsall": "48439|48251", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76064": { + "latitude": "32.30136", + "longitude": "-97.03549", + "city": "Maypearl", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1818", + "density": "23.5", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"100\"}", + "countynamesall": "Ellis", + "countyfipsall": "48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76065": { + "latitude": "32.4705", + "longitude": "-96.989", + "city": "Midlothian", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37090", + "density": "145.6", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"100\"}", + "countynamesall": "Ellis", + "countyfipsall": "48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76066": { + "latitude": "32.70727", + "longitude": "-97.99502", + "city": "Millsap", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2621", + "density": "11.7", + "countyfips": "48367", + "countyname": "Parker", + "countyweights": "{\"48367\": \"95.16\", \"48363\": \"4.84\"}", + "countynamesall": "Parker|Palo Pinto", + "countyfipsall": "48367|48363", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76067": { + "latitude": "32.80005", + "longitude": "-98.12756", + "city": "Mineral Wells", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "20309", + "density": "45.0", + "countyfips": "48363", + "countyname": "Palo Pinto", + "countyweights": "{\"48363\": \"89.61\", \"48367\": \"10.39\"}", + "countynamesall": "Palo Pinto|Parker", + "countyfipsall": "48363|48367", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76070": { + "latitude": "32.26241", + "longitude": "-97.65424", + "city": "Nemo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "895", + "density": "9.6", + "countyfips": "48425", + "countyname": "Somervell", + "countyweights": "{\"48425\": \"96.81\", \"48251\": \"3.19\"}", + "countynamesall": "Somervell|Johnson", + "countyfipsall": "48425|48251", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76071": { + "latitude": "33.00546", + "longitude": "-97.47935", + "city": "Newark", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4589", + "density": "234.8", + "countyfips": "48497", + "countyname": "Wise", + "countyweights": "{\"48497\": \"89.01\", \"48439\": \"10.99\"}", + "countynamesall": "Wise|Tarrant", + "countyfipsall": "48497|48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76073": { + "latitude": "33.10349", + "longitude": "-97.72734", + "city": "Paradise", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5656", + "density": "25.9", + "countyfips": "48497", + "countyname": "Wise", + "countyweights": "{\"48497\": \"100\"}", + "countynamesall": "Wise", + "countyfipsall": "48497", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76077": { + "latitude": "32.28213", + "longitude": "-97.70548", + "city": "Rainbow", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "355", + "density": "18.8", + "countyfips": "48425", + "countyname": "Somervell", + "countyweights": "{\"48425\": \"100\"}", + "countynamesall": "Somervell", + "countyfipsall": "48425", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76078": { + "latitude": "33.08919", + "longitude": "-97.46659", + "city": "Rhome", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10247", + "density": "58.9", + "countyfips": "48497", + "countyname": "Wise", + "countyweights": "{\"48497\": \"91.33\", \"48121\": \"8.67\"}", + "countynamesall": "Wise|Denton", + "countyfipsall": "48497|48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76082": { + "latitude": "32.97051", + "longitude": "-97.71844", + "city": "Springtown", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "20194", + "density": "77.6", + "countyfips": "48367", + "countyname": "Parker", + "countyweights": "{\"48367\": \"87.31\", \"48497\": \"12.69\"}", + "countynamesall": "Parker|Wise", + "countyfipsall": "48367|48497", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76084": { + "latitude": "32.43218", + "longitude": "-97.08946", + "city": "Venus", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9109", + "density": "69.2", + "countyfips": "48251", + "countyname": "Johnson", + "countyweights": "{\"48251\": \"83.13\", \"48139\": \"16.87\"}", + "countynamesall": "Johnson|Ellis", + "countyfipsall": "48251|48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76085": { + "latitude": "32.85029", + "longitude": "-97.70077", + "city": "Weatherford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11014", + "density": "66.6", + "countyfips": "48367", + "countyname": "Parker", + "countyweights": "{\"48367\": \"100\"}", + "countynamesall": "Parker", + "countyfipsall": "48367", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76086": { + "latitude": "32.75479", + "longitude": "-97.78995", + "city": "Weatherford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23699", + "density": "622.6", + "countyfips": "48367", + "countyname": "Parker", + "countyweights": "{\"48367\": \"100\"}", + "countynamesall": "Parker", + "countyfipsall": "48367", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76087": { + "latitude": "32.67075", + "longitude": "-97.78313", + "city": "Weatherford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27760", + "density": "57.5", + "countyfips": "48367", + "countyname": "Parker", + "countyweights": "{\"48367\": \"98.67\", \"48221\": \"1.33\"}", + "countynamesall": "Parker|Hood", + "countyfipsall": "48367|48221", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76088": { + "latitude": "32.84576", + "longitude": "-97.90143", + "city": "Weatherford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11907", + "density": "29.0", + "countyfips": "48367", + "countyname": "Parker", + "countyweights": "{\"48367\": \"100\"}", + "countynamesall": "Parker", + "countyfipsall": "48367", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76092": { + "latitude": "32.95998", + "longitude": "-97.1486", + "city": "Southlake", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31424", + "density": "538.1", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"97.09\", \"48121\": \"2.91\"}", + "countynamesall": "Tarrant|Denton", + "countyfipsall": "48439|48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76093": { + "latitude": "32.21723", + "longitude": "-97.3949", + "city": "Rio Vista", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1792", + "density": "18.7", + "countyfips": "48251", + "countyname": "Johnson", + "countyweights": "{\"48251\": \"93.41\", \"48217\": \"6.59\"}", + "countynamesall": "Johnson|Hill", + "countyfipsall": "48251|48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76102": { + "latitude": "32.75923", + "longitude": "-97.32978", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9282", + "density": "830.6", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76103": { + "latitude": "32.75205", + "longitude": "-97.26547", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15486", + "density": "1096.3", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76104": { + "latitude": "32.7287", + "longitude": "-97.31777", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18344", + "density": "1208.4", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76105": { + "latitude": "32.72405", + "longitude": "-97.26937", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22179", + "density": "1537.1", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76106": { + "latitude": "32.81451", + "longitude": "-97.35244", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39900", + "density": "1059.0", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76107": { + "latitude": "32.74171", + "longitude": "-97.38196", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30168", + "density": "1083.8", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76108": { + "latitude": "32.77595", + "longitude": "-97.52195", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43169", + "density": "357.0", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"92.56\", \"48367\": \"7.44\"}", + "countynamesall": "Tarrant|Parker", + "countyfipsall": "48439|48367", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76109": { + "latitude": "32.701", + "longitude": "-97.38393", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23220", + "density": "1099.6", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76110": { + "latitude": "32.70699", + "longitude": "-97.33891", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31926", + "density": "2149.0", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76111": { + "latitude": "32.77808", + "longitude": "-97.29988", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22531", + "density": "1054.2", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76112": { + "latitude": "32.74812", + "longitude": "-97.21845", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "42572", + "density": "1450.3", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76114": { + "latitude": "32.77444", + "longitude": "-97.40272", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26563", + "density": "1123.1", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76115": { + "latitude": "32.67879", + "longitude": "-97.33076", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21319", + "density": "1766.5", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76116": { + "latitude": "32.72173", + "longitude": "-97.44636", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "50506", + "density": "1603.6", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76117": { + "latitude": "32.80369", + "longitude": "-97.26756", + "city": "Haltom City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31068", + "density": "1111.8", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76118": { + "latitude": "32.79966", + "longitude": "-97.20773", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16378", + "density": "833.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76119": { + "latitude": "32.69064", + "longitude": "-97.26215", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "52070", + "density": "1239.0", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76120": { + "latitude": "32.77223", + "longitude": "-97.1782", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18125", + "density": "716.2", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76123": { + "latitude": "32.61898", + "longitude": "-97.39318", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36245", + "density": "1726.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76126": { + "latitude": "32.63382", + "longitude": "-97.51239", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23450", + "density": "142.4", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"96.08\", \"48367\": \"3.92\"}", + "countynamesall": "Tarrant|Parker", + "countyfipsall": "48439|48367", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76127": { + "latitude": "32.77701", + "longitude": "-97.43019", + "city": "Naval Air Station Jrb", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1946", + "density": "345.3", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76129": { + "latitude": "32.7087", + "longitude": "-97.36342", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2519", + "density": "8840.9", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76131": { + "latitude": "32.88334", + "longitude": "-97.34691", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43542", + "density": "1113.6", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76132": { + "latitude": "32.66759", + "longitude": "-97.41797", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27243", + "density": "1435.5", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76133": { + "latitude": "32.65393", + "longitude": "-97.37723", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "51505", + "density": "2152.8", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76134": { + "latitude": "32.64275", + "longitude": "-97.33353", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26151", + "density": "1266.3", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76135": { + "latitude": "32.83435", + "longitude": "-97.46485", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21973", + "density": "326.6", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76137": { + "latitude": "32.8588", + "longitude": "-97.29129", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "60385", + "density": "1722.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76140": { + "latitude": "32.6206", + "longitude": "-97.2701", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30723", + "density": "425.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76148": { + "latitude": "32.86811", + "longitude": "-97.25197", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23993", + "density": "1986.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76155": { + "latitude": "32.82398", + "longitude": "-97.04866", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5813", + "density": "647.8", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76164": { + "latitude": "32.78114", + "longitude": "-97.35461", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15488", + "density": "1519.1", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76177": { + "latitude": "32.97522", + "longitude": "-97.3112", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11695", + "density": "312.3", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"84.85\", \"48121\": \"15.15\"}", + "countynamesall": "Tarrant|Denton", + "countyfipsall": "48439|48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76179": { + "latitude": "32.9144", + "longitude": "-97.43777", + "city": "Fort Worth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "65496", + "density": "468.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76180": { + "latitude": "32.83996", + "longitude": "-97.22499", + "city": "North Richland Hills", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37524", + "density": "1537.4", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76182": { + "latitude": "32.88278", + "longitude": "-97.20984", + "city": "North Richland Hills", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31046", + "density": "1364.6", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76201": { + "latitude": "33.22112", + "longitude": "-97.14723", + "city": "Denton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28601", + "density": "1979.5", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76205": { + "latitude": "33.19028", + "longitude": "-97.12812", + "city": "Denton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21326", + "density": "971.9", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76207": { + "latitude": "33.22856", + "longitude": "-97.18133", + "city": "Denton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14588", + "density": "153.1", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76208": { + "latitude": "33.20884", + "longitude": "-97.05737", + "city": "Denton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24621", + "density": "349.1", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76209": { + "latitude": "33.2316", + "longitude": "-97.1099", + "city": "Denton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25689", + "density": "1513.8", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76210": { + "latitude": "33.15036", + "longitude": "-97.096", + "city": "Denton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "45474", + "density": "1077.3", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76225": { + "latitude": "33.36444", + "longitude": "-97.67314", + "city": "Alvord", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2857", + "density": "11.1", + "countyfips": "48497", + "countyname": "Wise", + "countyweights": "{\"48497\": \"100\"}", + "countynamesall": "Wise", + "countyfipsall": "48497", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76226": { + "latitude": "33.11035", + "longitude": "-97.16946", + "city": "Argyle", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26761", + "density": "216.1", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76227": { + "latitude": "33.27393", + "longitude": "-96.99051", + "city": "Aubrey", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34036", + "density": "165.5", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76228": { + "latitude": "33.62099", + "longitude": "-98.06028", + "city": "Bellevue", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "994", + "density": "2.1", + "countyfips": "48077", + "countyname": "Clay", + "countyweights": "{\"48077\": \"87.04\", \"48337\": \"12.96\"}", + "countynamesall": "Clay|Montague", + "countyfipsall": "48077|48337", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76230": { + "latitude": "33.51993", + "longitude": "-97.95469", + "city": "Bowie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9896", + "density": "10.1", + "countyfips": "48337", + "countyname": "Montague", + "countyweights": "{\"48337\": \"95.92\", \"48237\": \"2.62\", \"48077\": \"1.46\"}", + "countynamesall": "Montague|Jack|Clay", + "countyfipsall": "48337|48237|48077", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76233": { + "latitude": "33.53625", + "longitude": "-96.90829", + "city": "Collinsville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3294", + "density": "20.2", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"84.14\", \"48097\": \"15.86\"}", + "countynamesall": "Grayson|Cooke", + "countyfipsall": "48181|48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76234": { + "latitude": "33.272", + "longitude": "-97.51417", + "city": "Decatur", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16630", + "density": "20.7", + "countyfips": "48497", + "countyname": "Wise", + "countyweights": "{\"48497\": \"97.79\", \"48121\": \"1.95\", \"48097\": \"0.26\"}", + "countynamesall": "Wise|Denton|Cooke", + "countyfipsall": "48497|48121|48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76238": { + "latitude": "33.48818", + "longitude": "-97.35069", + "city": "Era", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "324", + "density": "4.7", + "countyfips": "48097", + "countyname": "Cooke", + "countyweights": "{\"48097\": \"100\"}", + "countynamesall": "Cooke", + "countyfipsall": "48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76239": { + "latitude": "33.51985", + "longitude": "-97.54515", + "city": "Forestburg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1087", + "density": "3.7", + "countyfips": "48337", + "countyname": "Montague", + "countyweights": "{\"48337\": \"80.86\", \"48097\": \"19.14\"}", + "countynamesall": "Montague|Cooke", + "countyfipsall": "48337|48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76240": { + "latitude": "33.65628", + "longitude": "-97.17454", + "city": "Gainesville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28010", + "density": "29.3", + "countyfips": "48097", + "countyname": "Cooke", + "countyweights": "{\"48097\": \"100\"}", + "countynamesall": "Cooke", + "countyfipsall": "48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76244": { + "latitude": "32.93098", + "longitude": "-97.28435", + "city": "Keller", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "77496", + "density": "1737.3", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76245": { + "latitude": "33.828", + "longitude": "-96.84915", + "city": "Gordonville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1569", + "density": "26.8", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76247": { + "latitude": "33.09841", + "longitude": "-97.32495", + "city": "Justin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13601", + "density": "73.1", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"100\"}", + "countynamesall": "Denton", + "countyfipsall": "48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76248": { + "latitude": "32.92575", + "longitude": "-97.22899", + "city": "Keller", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39665", + "density": "1060.7", + "countyfips": "48439", + "countyname": "Tarrant", + "countyweights": "{\"48439\": \"100\"}", + "countynamesall": "Tarrant", + "countyfipsall": "48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76249": { + "latitude": "33.28282", + "longitude": "-97.30413", + "city": "Krum", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8317", + "density": "47.4", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"99.53\", \"48497\": \"0.47\"}", + "countynamesall": "Denton|Wise", + "countyfipsall": "48121|48497", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76250": { + "latitude": "33.63013", + "longitude": "-97.23578", + "city": "Lindsay", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1157", + "density": "50.7", + "countyfips": "48097", + "countyname": "Cooke", + "countyweights": "{\"48097\": \"100\"}", + "countynamesall": "Cooke", + "countyfipsall": "48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76251": { + "latitude": "33.62076", + "longitude": "-97.68976", + "city": "Montague", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "779", + "density": "5.7", + "countyfips": "48337", + "countyname": "Montague", + "countyweights": "{\"48337\": \"100\"}", + "countynamesall": "Montague", + "countyfipsall": "48337", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76252": { + "latitude": "33.68568", + "longitude": "-97.38545", + "city": "Muenster", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2624", + "density": "5.5", + "countyfips": "48097", + "countyname": "Cooke", + "countyweights": "{\"48097\": \"100\"}", + "countynamesall": "Cooke", + "countyfipsall": "48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76253": { + "latitude": "33.61587", + "longitude": "-97.31078", + "city": "Myra", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "291", + "density": "72.6", + "countyfips": "48097", + "countyname": "Cooke", + "countyweights": "{\"48097\": \"100\"}", + "countynamesall": "Cooke", + "countyfipsall": "48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76255": { + "latitude": "33.82", + "longitude": "-97.72915", + "city": "Nocona", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5311", + "density": "7.8", + "countyfips": "48337", + "countyname": "Montague", + "countyweights": "{\"48337\": \"100\"}", + "countynamesall": "Montague", + "countyfipsall": "48337", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76258": { + "latitude": "33.37191", + "longitude": "-96.91964", + "city": "Pilot Point", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7010", + "density": "30.3", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"95.03\", \"48181\": \"4.97\"}", + "countynamesall": "Denton|Grayson", + "countyfipsall": "48121|48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76259": { + "latitude": "33.20016", + "longitude": "-97.30705", + "city": "Ponder", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6045", + "density": "41.2", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"99.24\", \"48497\": \"0.76\"}", + "countynamesall": "Denton|Wise", + "countyfipsall": "48121|48497", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76261": { + "latitude": "33.80066", + "longitude": "-97.96327", + "city": "Ringgold", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "285", + "density": "1.6", + "countyfips": "48337", + "countyname": "Montague", + "countyweights": "{\"48337\": \"90.56\", \"48077\": \"9.44\"}", + "countynamesall": "Montague|Clay", + "countyfipsall": "48337|48077", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76262": { + "latitude": "33.00948", + "longitude": "-97.22581", + "city": "Roanoke", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39425", + "density": "336.0", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"60.77\", \"48439\": \"39.23\"}", + "countynamesall": "Denton|Tarrant", + "countyfipsall": "48121|48439", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76263": { + "latitude": "33.46748", + "longitude": "-97.45338", + "city": "Rosston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "46", + "density": "2.1", + "countyfips": "48097", + "countyname": "Cooke", + "countyweights": "{\"48097\": \"100\"}", + "countynamesall": "Cooke", + "countyfipsall": "48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76264": { + "latitude": "33.73974", + "longitude": "-96.83528", + "city": "Sadler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1513", + "density": "16.4", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76265": { + "latitude": "33.74828", + "longitude": "-97.54502", + "city": "Saint Jo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1472", + "density": "2.9", + "countyfips": "48337", + "countyname": "Montague", + "countyweights": "{\"48337\": \"94.24\", \"48097\": \"5.76\"}", + "countynamesall": "Montague|Cooke", + "countyfipsall": "48337|48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76266": { + "latitude": "33.36725", + "longitude": "-97.21414", + "city": "Sanger", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16112", + "density": "51.7", + "countyfips": "48121", + "countyname": "Denton", + "countyweights": "{\"48121\": \"99.93\", \"48097\": \"0.07\"}", + "countynamesall": "Denton|Cooke", + "countyfipsall": "48121|48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76268": { + "latitude": "33.62759", + "longitude": "-96.76741", + "city": "Southmayd", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "232", + "density": "155.2", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"100\"}", + "countynamesall": "Grayson", + "countyfipsall": "48181", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76270": { + "latitude": "33.45613", + "longitude": "-97.75202", + "city": "Sunset", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1958", + "density": "7.5", + "countyfips": "48337", + "countyname": "Montague", + "countyweights": "{\"48337\": \"67.08\", \"48497\": \"32.92\"}", + "countynamesall": "Montague|Wise", + "countyfipsall": "48337|48497", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76271": { + "latitude": "33.46699", + "longitude": "-96.90774", + "city": "Tioga", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1792", + "density": "17.5", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"91.12\", \"48097\": \"8.88\"}", + "countynamesall": "Grayson|Cooke", + "countyfipsall": "48181|48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76272": { + "latitude": "33.46625", + "longitude": "-97.12889", + "city": "Valley View", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4116", + "density": "16.1", + "countyfips": "48097", + "countyname": "Cooke", + "countyweights": "{\"48097\": \"98.88\", \"48121\": \"1.12\"}", + "countynamesall": "Cooke|Denton", + "countyfipsall": "48097|48121", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76273": { + "latitude": "33.74557", + "longitude": "-96.93355", + "city": "Whitesboro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9806", + "density": "18.6", + "countyfips": "48181", + "countyname": "Grayson", + "countyweights": "{\"48181\": \"76.79\", \"48097\": \"23.21\"}", + "countynamesall": "Grayson|Cooke", + "countyfipsall": "48181|48097", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76301": { + "latitude": "33.90559", + "longitude": "-98.47978", + "city": "Wichita Falls", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14757", + "density": "490.6", + "countyfips": "48485", + "countyname": "Wichita", + "countyweights": "{\"48485\": \"100\"}", + "countynamesall": "Wichita", + "countyfipsall": "48485", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76302": { + "latitude": "33.86456", + "longitude": "-98.49109", + "city": "Wichita Falls", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13482", + "density": "623.8", + "countyfips": "48485", + "countyname": "Wichita", + "countyweights": "{\"48485\": \"100\"}", + "countynamesall": "Wichita", + "countyfipsall": "48485", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76305": { + "latitude": "33.99942", + "longitude": "-98.3939", + "city": "Wichita Falls", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4261", + "density": "7.5", + "countyfips": "48485", + "countyname": "Wichita", + "countyweights": "{\"48485\": \"58.45\", \"48077\": \"41.55\"}", + "countynamesall": "Wichita|Clay", + "countyfipsall": "48485|48077", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76306": { + "latitude": "33.94504", + "longitude": "-98.52395", + "city": "Wichita Falls", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14980", + "density": "440.6", + "countyfips": "48485", + "countyname": "Wichita", + "countyweights": "{\"48485\": \"100\"}", + "countynamesall": "Wichita", + "countyfipsall": "48485", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76308": { + "latitude": "33.85238", + "longitude": "-98.54057", + "city": "Wichita Falls", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19493", + "density": "842.9", + "countyfips": "48485", + "countyname": "Wichita", + "countyweights": "{\"48485\": \"94.31\", \"48009\": \"5.69\"}", + "countynamesall": "Wichita|Archer", + "countyfipsall": "48485|48009", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76309": { + "latitude": "33.89524", + "longitude": "-98.54432", + "city": "Wichita Falls", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12991", + "density": "880.1", + "countyfips": "48485", + "countyname": "Wichita", + "countyweights": "{\"48485\": \"100\"}", + "countynamesall": "Wichita", + "countyfipsall": "48485", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76310": { + "latitude": "33.79856", + "longitude": "-98.5109", + "city": "Wichita Falls", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19187", + "density": "41.3", + "countyfips": "48485", + "countyname": "Wichita", + "countyweights": "{\"48485\": \"85.56\", \"48009\": \"8.55\", \"48077\": \"5.89\"}", + "countynamesall": "Wichita|Archer|Clay", + "countyfipsall": "48485|48009|48077", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76311": { + "latitude": "33.96889", + "longitude": "-98.50882", + "city": "Sheppard Afb", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8987", + "density": "2216.5", + "countyfips": "48485", + "countyname": "Wichita", + "countyweights": "{\"48485\": \"100\"}", + "countynamesall": "Wichita", + "countyfipsall": "48485", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76351": { + "latitude": "33.56892", + "longitude": "-98.67455", + "city": "Archer City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2068", + "density": "4.2", + "countyfips": "48009", + "countyname": "Archer", + "countyweights": "{\"48009\": \"100\"}", + "countynamesall": "Archer", + "countyfipsall": "48009", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76354": { + "latitude": "34.09738", + "longitude": "-98.62144", + "city": "Burkburnett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12114", + "density": "59.6", + "countyfips": "48485", + "countyname": "Wichita", + "countyweights": "{\"48485\": \"100\"}", + "countynamesall": "Wichita", + "countyfipsall": "48485", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76357": { + "latitude": "34.08174", + "longitude": "-98.18468", + "city": "Byers", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "569", + "density": "3.3", + "countyfips": "48077", + "countyname": "Clay", + "countyweights": "{\"48077\": \"100\"}", + "countynamesall": "Clay", + "countyfipsall": "48077", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76360": { + "latitude": "33.96894", + "longitude": "-98.96631", + "city": "Electra", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3545", + "density": "4.8", + "countyfips": "48485", + "countyname": "Wichita", + "countyweights": "{\"48485\": \"95.06\", \"48487\": \"3.31\", \"48009\": \"1.63\"}", + "countynamesall": "Wichita|Wilbarger|Archer", + "countyfipsall": "48485|48487|48009", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76363": { + "latitude": "33.48306", + "longitude": "-99.54199", + "city": "Goree", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "534", + "density": "3.4", + "countyfips": "48275", + "countyname": "Knox", + "countyweights": "{\"48275\": \"100\"}", + "countynamesall": "Knox", + "countyfipsall": "48275", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76364": { + "latitude": "34.11368", + "longitude": "-99.01676", + "city": "Harrold", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "174", + "density": "1.0", + "countyfips": "48487", + "countyname": "Wilbarger", + "countyweights": "{\"48487\": \"100\"}", + "countynamesall": "Wilbarger", + "countyfipsall": "48487", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76365": { + "latitude": "33.75814", + "longitude": "-98.20162", + "city": "Henrietta", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4688", + "density": "3.4", + "countyfips": "48077", + "countyname": "Clay", + "countyweights": "{\"48077\": \"99.42\", \"48237\": \"0.58\"}", + "countynamesall": "Clay|Jack", + "countyfipsall": "48077|48237", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76366": { + "latitude": "33.727", + "longitude": "-98.78209", + "city": "Holliday", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1903", + "density": "3.1", + "countyfips": "48009", + "countyname": "Archer", + "countyweights": "{\"48009\": \"100\"}", + "countynamesall": "Archer", + "countyfipsall": "48009", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76367": { + "latitude": "33.97433", + "longitude": "-98.72275", + "city": "Iowa Park", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14247", + "density": "27.7", + "countyfips": "48485", + "countyname": "Wichita", + "countyweights": "{\"48485\": \"100\"}", + "countynamesall": "Wichita", + "countyfipsall": "48485", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76370": { + "latitude": "33.53167", + "longitude": "-98.88816", + "city": "Megargel", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "232", + "density": "0.8", + "countyfips": "48009", + "countyname": "Archer", + "countyweights": "{\"48009\": \"100\"}", + "countynamesall": "Archer", + "countyfipsall": "48009", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76371": { + "latitude": "33.48661", + "longitude": "-99.64034", + "city": "Munday", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1367", + "density": "5.0", + "countyfips": "48275", + "countyname": "Knox", + "countyweights": "{\"48275\": \"100\"}", + "countynamesall": "Knox", + "countyfipsall": "48275", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76372": { + "latitude": "33.25292", + "longitude": "-98.91903", + "city": "Newcastle", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1166", + "density": "1.7", + "countyfips": "48503", + "countyname": "Young", + "countyweights": "{\"48503\": \"88.5\", \"48447\": \"11.5\"}", + "countynamesall": "Young|Throckmorton", + "countyfipsall": "48503|48447", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76373": { + "latitude": "34.13069", + "longitude": "-99.11397", + "city": "Oklaunion", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "153", + "density": "2.0", + "countyfips": "48487", + "countyname": "Wilbarger", + "countyweights": "{\"48487\": \"100\"}", + "countynamesall": "Wilbarger", + "countyfipsall": "48487", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76374": { + "latitude": "33.35976", + "longitude": "-98.73819", + "city": "Olney", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3858", + "density": "5.3", + "countyfips": "48503", + "countyname": "Young", + "countyweights": "{\"48503\": \"97.69\", \"48009\": \"2.31\"}", + "countynamesall": "Young|Archer", + "countyfipsall": "48503|48009", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76377": { + "latitude": "34.01483", + "longitude": "-98.23963", + "city": "Petrolia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "555", + "density": "7.1", + "countyfips": "48077", + "countyname": "Clay", + "countyweights": "{\"48077\": \"100\"}", + "countynamesall": "Clay", + "countyfipsall": "48077", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76379": { + "latitude": "33.67016", + "longitude": "-98.47541", + "city": "Scotland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "590", + "density": "5.2", + "countyfips": "48009", + "countyname": "Archer", + "countyweights": "{\"48009\": \"100\"}", + "countynamesall": "Archer", + "countyfipsall": "48009", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76380": { + "latitude": "33.61862", + "longitude": "-99.24239", + "city": "Seymour", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3630", + "density": "1.5", + "countyfips": "48023", + "countyname": "Baylor", + "countyweights": "{\"48023\": \"97.54\", \"48275\": \"2.46\"}", + "countynamesall": "Baylor|Knox", + "countyfipsall": "48023|48275", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76384": { + "latitude": "34.16773", + "longitude": "-99.32555", + "city": "Vernon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12179", + "density": "9.9", + "countyfips": "48487", + "countyname": "Wilbarger", + "countyweights": "{\"48487\": \"99.85\", \"48155\": \"0.15\"}", + "countynamesall": "Wilbarger|Foard", + "countyfipsall": "48487|48155", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76388": { + "latitude": "33.32169", + "longitude": "-99.63091", + "city": "Weinert", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "235", + "density": "0.9", + "countyfips": "48207", + "countyname": "Haskell", + "countyweights": "{\"48207\": \"100\"}", + "countynamesall": "Haskell", + "countyfipsall": "48207", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76389": { + "latitude": "33.51578", + "longitude": "-98.4582", + "city": "Windthorst", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1257", + "density": "2.4", + "countyfips": "48009", + "countyname": "Archer", + "countyweights": "{\"48009\": \"75.32\", \"48077\": \"19.94\", \"48237\": \"4.74\"}", + "countynamesall": "Archer|Clay|Jack", + "countyfipsall": "48009|48077|48237", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76401": { + "latitude": "32.28258", + "longitude": "-98.19881", + "city": "Stephenville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30003", + "density": "28.1", + "countyfips": "48143", + "countyname": "Erath", + "countyweights": "{\"48143\": \"100\"}", + "countynamesall": "Erath", + "countyfipsall": "48143", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76402": { + "latitude": "32.21637", + "longitude": "-98.21726", + "city": "Stephenville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "953", + "density": "4132.1", + "countyfips": "48143", + "countyname": "Erath", + "countyweights": "{\"48143\": \"100\"}", + "countynamesall": "Erath", + "countyfipsall": "48143", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76424": { + "latitude": "32.80509", + "longitude": "-98.89862", + "city": "Breckenridge", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8721", + "density": "6.5", + "countyfips": "48429", + "countyname": "Stephens", + "countyweights": "{\"48429\": \"99.86\", \"48503\": \"0.14\"}", + "countynamesall": "Stephens|Young", + "countyfipsall": "48429|48503", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76426": { + "latitude": "33.16683", + "longitude": "-97.84268", + "city": "Bridgeport", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12351", + "density": "36.2", + "countyfips": "48497", + "countyname": "Wise", + "countyweights": "{\"48497\": \"96.94\", \"48237\": \"3.06\"}", + "countynamesall": "Wise|Jack", + "countyfipsall": "48497|48237", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76427": { + "latitude": "33.15546", + "longitude": "-98.37755", + "city": "Bryson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "859", + "density": "5.9", + "countyfips": "48237", + "countyname": "Jack", + "countyweights": "{\"48237\": \"100\"}", + "countynamesall": "Jack", + "countyfipsall": "48237", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76429": { + "latitude": "32.741", + "longitude": "-98.6742", + "city": "Caddo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "133", + "density": "0.5", + "countyfips": "48429", + "countyname": "Stephens", + "countyweights": "{\"48429\": \"81.78\", \"48363\": \"18.22\"}", + "countynamesall": "Stephens|Palo Pinto", + "countyfipsall": "48429|48363", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76430": { + "latitude": "32.785", + "longitude": "-99.2474", + "city": "Albany", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2288", + "density": "2.5", + "countyfips": "48417", + "countyname": "Shackelford", + "countyweights": "{\"48417\": \"99.84\", \"48447\": \"0.16\"}", + "countynamesall": "Shackelford|Throckmorton", + "countyfipsall": "48417|48447", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76431": { + "latitude": "33.31747", + "longitude": "-97.85662", + "city": "Chico", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3630", + "density": "11.8", + "countyfips": "48497", + "countyname": "Wise", + "countyweights": "{\"48497\": \"98.35\", \"48237\": \"1.65\"}", + "countynamesall": "Wise|Jack", + "countyfipsall": "48497|48237", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76432": { + "latitude": "31.84215", + "longitude": "-98.79696", + "city": "Blanket", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1314", + "density": "5.3", + "countyfips": "48049", + "countyname": "Brown", + "countyweights": "{\"48049\": \"91.9\", \"48093\": \"8.1\"}", + "countynamesall": "Brown|Comanche", + "countyfipsall": "48049|48093", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76433": { + "latitude": "32.31517", + "longitude": "-98.01968", + "city": "Bluff Dale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1796", + "density": "5.8", + "countyfips": "48143", + "countyname": "Erath", + "countyweights": "{\"48143\": \"87.92\", \"48221\": \"8.97\", \"48425\": \"3.11\"}", + "countynamesall": "Erath|Hood|Somervell", + "countyfipsall": "48143|48221|48425", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76435": { + "latitude": "32.25177", + "longitude": "-98.85661", + "city": "Carbon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "512", + "density": "2.7", + "countyfips": "48133", + "countyname": "Eastland", + "countyweights": "{\"48133\": \"100\"}", + "countynamesall": "Eastland", + "countyfipsall": "48133", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76436": { + "latitude": "31.86715", + "longitude": "-98.22143", + "city": "Carlton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "227", + "density": "1.9", + "countyfips": "48193", + "countyname": "Hamilton", + "countyweights": "{\"48193\": \"65.57\", \"48093\": \"34.43\"}", + "countynamesall": "Hamilton|Comanche", + "countyfipsall": "48193|48093", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76437": { + "latitude": "32.39591", + "longitude": "-99.02367", + "city": "Cisco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5818", + "density": "5.5", + "countyfips": "48133", + "countyname": "Eastland", + "countyweights": "{\"48133\": \"95.33\", \"48429\": \"2.39\", \"48059\": \"2.27\"}", + "countynamesall": "Eastland|Stephens|Callahan", + "countyfipsall": "48133|48429|48059", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76442": { + "latitude": "31.89183", + "longitude": "-98.6149", + "city": "Comanche", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7909", + "density": "6.8", + "countyfips": "48093", + "countyname": "Comanche", + "countyweights": "{\"48093\": \"98.73\", \"48333\": \"1.27\"}", + "countynamesall": "Comanche|Mills", + "countyfipsall": "48093|48333", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76443": { + "latitude": "32.13341", + "longitude": "-99.21059", + "city": "Cross Plains", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1914", + "density": "5.2", + "countyfips": "48059", + "countyname": "Callahan", + "countyweights": "{\"48059\": \"93.04\", \"48049\": \"4.9\", \"48083\": \"2.06\"}", + "countynamesall": "Callahan|Brown|Coleman", + "countyfipsall": "48059|48049|48083", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76444": { + "latitude": "32.11472", + "longitude": "-98.56573", + "city": "De Leon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3339", + "density": "8.9", + "countyfips": "48093", + "countyname": "Comanche", + "countyweights": "{\"48093\": \"100\"}", + "countynamesall": "Comanche", + "countyfipsall": "48093", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76445": { + "latitude": "32.29949", + "longitude": "-98.55077", + "city": "Desdemona", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "292", + "density": "1.7", + "countyfips": "48133", + "countyname": "Eastland", + "countyweights": "{\"48133\": \"77.4\", \"48093\": \"20.64\", \"48143\": \"1.97\"}", + "countynamesall": "Eastland|Comanche|Erath", + "countyfipsall": "48133|48093|48143", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76446": { + "latitude": "32.0752", + "longitude": "-98.34943", + "city": "Dublin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7709", + "density": "7.1", + "countyfips": "48143", + "countyname": "Erath", + "countyweights": "{\"48143\": \"88.37\", \"48093\": \"11.63\"}", + "countynamesall": "Erath|Comanche", + "countyfipsall": "48143|48093", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76448": { + "latitude": "32.40015", + "longitude": "-98.80082", + "city": "Eastland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5196", + "density": "15.9", + "countyfips": "48133", + "countyname": "Eastland", + "countyweights": "{\"48133\": \"100\"}", + "countynamesall": "Eastland", + "countyfipsall": "48133", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76449": { + "latitude": "32.91565", + "longitude": "-98.32279", + "city": "Graford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2430", + "density": "4.5", + "countyfips": "48363", + "countyname": "Palo Pinto", + "countyweights": "{\"48363\": \"100\"}", + "countynamesall": "Palo Pinto", + "countyfipsall": "48363", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76450": { + "latitude": "33.06259", + "longitude": "-98.62573", + "city": "Graham", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13112", + "density": "11.0", + "countyfips": "48503", + "countyname": "Young", + "countyweights": "{\"48503\": \"97.9\", \"48363\": \"1.53\", \"48429\": \"0.57\"}", + "countynamesall": "Young|Palo Pinto|Stephens", + "countyfipsall": "48503|48363|48429", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76452": { + "latitude": "31.75506", + "longitude": "-98.3541", + "city": "Energy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "99", + "density": "4.3", + "countyfips": "48093", + "countyname": "Comanche", + "countyweights": "{\"48093\": \"100\"}", + "countynamesall": "Comanche", + "countyfipsall": "48093", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76453": { + "latitude": "32.5856", + "longitude": "-98.34162", + "city": "Gordon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1295", + "density": "3.8", + "countyfips": "48363", + "countyname": "Palo Pinto", + "countyweights": "{\"48363\": \"90.31\", \"48143\": \"9.69\"}", + "countynamesall": "Palo Pinto|Erath", + "countyfipsall": "48363|48143", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76454": { + "latitude": "32.2081", + "longitude": "-98.72898", + "city": "Gorman", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1870", + "density": "5.3", + "countyfips": "48133", + "countyname": "Eastland", + "countyweights": "{\"48133\": \"91.41\", \"48093\": \"8.59\"}", + "countynamesall": "Eastland|Comanche", + "countyfipsall": "48133|48093", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76455": { + "latitude": "31.80574", + "longitude": "-98.38354", + "city": "Gustine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1009", + "density": "4.3", + "countyfips": "48093", + "countyname": "Comanche", + "countyweights": "{\"48093\": \"100\"}", + "countynamesall": "Comanche", + "countyfipsall": "48093", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76457": { + "latitude": "31.95198", + "longitude": "-98.02939", + "city": "Hico", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4013", + "density": "4.9", + "countyfips": "48193", + "countyname": "Hamilton", + "countyweights": "{\"48193\": \"61.04\", \"48143\": \"33.96\", \"48035\": \"5\"}", + "countynamesall": "Hamilton|Erath|Bosque", + "countyfipsall": "48193|48143|48035", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76458": { + "latitude": "33.21797", + "longitude": "-98.18771", + "city": "Jacksboro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6111", + "density": "4.2", + "countyfips": "48237", + "countyname": "Jack", + "countyweights": "{\"48237\": \"100\"}", + "countynamesall": "Jack", + "countyfipsall": "48237", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76459": { + "latitude": "33.27406", + "longitude": "-98.38756", + "city": "Jermyn", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "270", + "density": "4.6", + "countyfips": "48237", + "countyname": "Jack", + "countyweights": "{\"48237\": \"100\"}", + "countynamesall": "Jack", + "countyfipsall": "48237", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76460": { + "latitude": "33.30965", + "longitude": "-98.49838", + "city": "Loving", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "233", + "density": "1.0", + "countyfips": "48503", + "countyname": "Young", + "countyweights": "{\"48503\": \"100\"}", + "countynamesall": "Young", + "countyfipsall": "48503", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76462": { + "latitude": "32.52348", + "longitude": "-98.0275", + "city": "Lipan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3762", + "density": "8.7", + "countyfips": "48221", + "countyname": "Hood", + "countyweights": "{\"48221\": \"45.47\", \"48367\": \"26.32\", \"48363\": \"14.65\", \"48143\": \"13.55\"}", + "countynamesall": "Hood|Parker|Palo Pinto|Erath", + "countyfipsall": "48221|48367|48363|48143", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76463": { + "latitude": "32.45664", + "longitude": "-98.41487", + "city": "Mingus", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "412", + "density": "2.1", + "countyfips": "48363", + "countyname": "Palo Pinto", + "countyweights": "{\"48363\": \"56.34\", \"48143\": \"43.66\"}", + "countynamesall": "Palo Pinto|Erath", + "countyfipsall": "48363|48143", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76464": { + "latitude": "32.5559", + "longitude": "-99.16497", + "city": "Moran", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "505", + "density": "1.0", + "countyfips": "48417", + "countyname": "Shackelford", + "countyweights": "{\"48417\": \"87.35\", \"48059\": \"6.32\", \"48429\": \"6.32\"}", + "countynamesall": "Shackelford|Callahan|Stephens", + "countyfipsall": "48417|48059|48429", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76466": { + "latitude": "32.43334", + "longitude": "-98.73744", + "city": "Olden", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "149", + "density": "9.5", + "countyfips": "48133", + "countyname": "Eastland", + "countyweights": "{\"48133\": \"100\"}", + "countynamesall": "Eastland", + "countyfipsall": "48133", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76469": { + "latitude": "32.34528", + "longitude": "-99.19387", + "city": "Putnam", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "93", + "density": "2.5", + "countyfips": "48059", + "countyname": "Callahan", + "countyweights": "{\"48059\": \"100\"}", + "countynamesall": "Callahan", + "countyfipsall": "48059", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76470": { + "latitude": "32.50228", + "longitude": "-98.66152", + "city": "Ranger", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3580", + "density": "4.8", + "countyfips": "48133", + "countyname": "Eastland", + "countyweights": "{\"48133\": \"94.07\", \"48429\": \"5.93\"}", + "countynamesall": "Eastland|Stephens", + "countyfipsall": "48133|48429", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76471": { + "latitude": "32.11605", + "longitude": "-98.98478", + "city": "Rising Star", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1785", + "density": "3.9", + "countyfips": "48133", + "countyname": "Eastland", + "countyweights": "{\"48133\": \"85.57\", \"48049\": \"11.86\", \"48093\": \"2.57\"}", + "countynamesall": "Eastland|Brown|Comanche", + "countyfipsall": "48133|48049|48093", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76472": { + "latitude": "32.60119", + "longitude": "-98.17057", + "city": "Santo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1761", + "density": "6.7", + "countyfips": "48363", + "countyname": "Palo Pinto", + "countyweights": "{\"48363\": \"100\"}", + "countynamesall": "Palo Pinto", + "countyfipsall": "48363", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76474": { + "latitude": "31.97301", + "longitude": "-98.79293", + "city": "Sidney", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "171", + "density": "1.8", + "countyfips": "48093", + "countyname": "Comanche", + "countyweights": "{\"48093\": \"98.22\", \"48049\": \"1.78\"}", + "countynamesall": "Comanche|Brown", + "countyfipsall": "48093|48049", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76475": { + "latitude": "32.65903", + "longitude": "-98.49888", + "city": "Strawn", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "956", + "density": "1.6", + "countyfips": "48363", + "countyname": "Palo Pinto", + "countyweights": "{\"48363\": \"97.34\", \"48133\": \"2.25\", \"48429\": \"0.41\"}", + "countynamesall": "Palo Pinto|Eastland|Stephens", + "countyfipsall": "48363|48133|48429", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76476": { + "latitude": "32.36651", + "longitude": "-97.91946", + "city": "Tolar", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2628", + "density": "9.9", + "countyfips": "48221", + "countyname": "Hood", + "countyweights": "{\"48221\": \"100\"}", + "countynamesall": "Hood", + "countyfipsall": "48221", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76481": { + "latitude": "32.9956", + "longitude": "-98.74309", + "city": "South Bend", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "189", + "density": "1.2", + "countyfips": "48503", + "countyname": "Young", + "countyweights": "{\"48503\": \"100\", \"48429\": \"0\"}", + "countynamesall": "Young|Stephens", + "countyfipsall": "48503|48429", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76483": { + "latitude": "33.18878", + "longitude": "-99.27224", + "city": "Throckmorton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "932", + "density": "0.6", + "countyfips": "48447", + "countyname": "Throckmorton", + "countyweights": "{\"48447\": \"100\"}", + "countynamesall": "Throckmorton", + "countyfipsall": "48447", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76484": { + "latitude": "32.75833", + "longitude": "-98.28241", + "city": "Palo Pinto", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "916", + "density": "3.3", + "countyfips": "48363", + "countyname": "Palo Pinto", + "countyweights": "{\"48363\": \"100\"}", + "countynamesall": "Palo Pinto", + "countyfipsall": "48363", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76486": { + "latitude": "33.02291", + "longitude": "-98.0622", + "city": "Perrin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1125", + "density": "4.2", + "countyfips": "48237", + "countyname": "Jack", + "countyweights": "{\"48237\": \"69.09\", \"48367\": \"21.09\", \"48363\": \"9.82\"}", + "countynamesall": "Jack|Parker|Palo Pinto", + "countyfipsall": "48237|48367|48363", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76487": { + "latitude": "32.97949", + "longitude": "-97.88221", + "city": "Poolville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3058", + "density": "13.2", + "countyfips": "48367", + "countyname": "Parker", + "countyweights": "{\"48367\": \"74.31\", \"48497\": \"20.26\", \"48237\": \"5.42\"}", + "countynamesall": "Parker|Wise|Jack", + "countyfipsall": "48367|48497|48237", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76490": { + "latitude": "32.94544", + "longitude": "-98.01889", + "city": "Whitt", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "90", + "density": "46.8", + "countyfips": "48367", + "countyname": "Parker", + "countyweights": "{\"48367\": \"100\"}", + "countynamesall": "Parker", + "countyfipsall": "48367", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76491": { + "latitude": "33.03487", + "longitude": "-99.05052", + "city": "Woodson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "347", + "density": "1.1", + "countyfips": "48447", + "countyname": "Throckmorton", + "countyweights": "{\"48447\": \"100\"}", + "countynamesall": "Throckmorton", + "countyfipsall": "48447", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76501": { + "latitude": "31.07505", + "longitude": "-97.25435", + "city": "Temple", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16710", + "density": "55.2", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"100\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76502": { + "latitude": "31.09624", + "longitude": "-97.41039", + "city": "Temple", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "42103", + "density": "258.1", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"100\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76504": { + "latitude": "31.13805", + "longitude": "-97.3726", + "city": "Temple", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23756", + "density": "339.1", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"100\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76508": { + "latitude": "31.07758", + "longitude": "-97.36425", + "city": "Temple", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7", + "density": "46.9", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"0\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76511": { + "latitude": "30.80163", + "longitude": "-97.42498", + "city": "Bartlett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2505", + "density": "12.3", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"65.12\", \"48027\": \"30.03\", \"48331\": \"4.85\"}", + "countynamesall": "Williamson|Bell|Milam", + "countyfipsall": "48491|48027|48331", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76513": { + "latitude": "31.05135", + "longitude": "-97.49967", + "city": "Belton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39411", + "density": "144.4", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"100\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76518": { + "latitude": "30.84974", + "longitude": "-97.15418", + "city": "Buckholts", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1880", + "density": "6.2", + "countyfips": "48331", + "countyname": "Milam", + "countyweights": "{\"48331\": \"100\"}", + "countynamesall": "Milam", + "countyfipsall": "48331", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76519": { + "latitude": "30.99427", + "longitude": "-97.04726", + "city": "Burlington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "487", + "density": "3.7", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"50.48\", \"48331\": \"40.73\", \"48145\": \"8.79\"}", + "countynamesall": "Bell|Milam|Falls", + "countyfipsall": "48027|48331|48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76520": { + "latitude": "30.87611", + "longitude": "-96.90748", + "city": "Cameron", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7722", + "density": "9.9", + "countyfips": "48331", + "countyname": "Milam", + "countyweights": "{\"48331\": \"100\"}", + "countynamesall": "Milam", + "countyfipsall": "48331", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76522": { + "latitude": "31.21604", + "longitude": "-97.97338", + "city": "Copperas Cove", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36560", + "density": "122.9", + "countyfips": "48099", + "countyname": "Coryell", + "countyweights": "{\"48099\": \"94.69\", \"48281\": \"5.31\"}", + "countynamesall": "Coryell|Lampasas", + "countyfipsall": "48099|48281", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76523": { + "latitude": "30.78956", + "longitude": "-97.29127", + "city": "Davilla", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48331", + "countyname": "Milam", + "countyweights": "{\"48331\": \"100\"}", + "countynamesall": "Milam", + "countyfipsall": "48331", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76524": { + "latitude": "31.26693", + "longitude": "-97.20313", + "city": "Eddy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3042", + "density": "17.5", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"81.03\", \"48145\": \"18.97\"}", + "countynamesall": "McLennan|Falls", + "countyfipsall": "48309|48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76525": { + "latitude": "31.48558", + "longitude": "-98.14597", + "city": "Evant", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1098", + "density": "2.2", + "countyfips": "48099", + "countyname": "Coryell", + "countyweights": "{\"48099\": \"51.13\", \"48193\": \"42.47\", \"48281\": \"6.4\"}", + "countynamesall": "Coryell|Hamilton|Lampasas", + "countyfipsall": "48099|48193|48281", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76527": { + "latitude": "30.84416", + "longitude": "-97.80601", + "city": "Florence", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2969", + "density": "8.9", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"88.32\", \"48053\": \"6.75\", \"48027\": \"4.93\"}", + "countynamesall": "Williamson|Burnet|Bell", + "countyfipsall": "48491|48053|48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76528": { + "latitude": "31.42046", + "longitude": "-97.76152", + "city": "Gatesville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17284", + "density": "13.2", + "countyfips": "48099", + "countyname": "Coryell", + "countyweights": "{\"48099\": \"98.34\", \"48027\": \"1.66\"}", + "countynamesall": "Coryell|Bell", + "countyfipsall": "48099|48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76530": { + "latitude": "30.71583", + "longitude": "-97.42174", + "city": "Granger", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1874", + "density": "7.7", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"100\"}", + "countynamesall": "Williamson", + "countyfipsall": "48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76531": { + "latitude": "31.6858", + "longitude": "-98.18812", + "city": "Hamilton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4728", + "density": "4.8", + "countyfips": "48193", + "countyname": "Hamilton", + "countyweights": "{\"48193\": \"99.94\", \"48333\": \"0.06\"}", + "countynamesall": "Hamilton|Mills", + "countyfipsall": "48193|48333", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76534": { + "latitude": "30.88263", + "longitude": "-97.37359", + "city": "Holland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3046", + "density": "13.3", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"96.6\", \"48331\": \"3.4\"}", + "countynamesall": "Bell|Milam", + "countyfipsall": "48027|48331", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76537": { + "latitude": "30.81749", + "longitude": "-97.60543", + "city": "Jarrell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5782", + "density": "41.5", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"100\"}", + "countynamesall": "Williamson", + "countyfipsall": "48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76538": { + "latitude": "31.64149", + "longitude": "-97.89017", + "city": "Jonesboro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1025", + "density": "2.6", + "countyfips": "48099", + "countyname": "Coryell", + "countyweights": "{\"48099\": \"51.51\", \"48193\": \"48.49\"}", + "countynamesall": "Coryell|Hamilton", + "countyfipsall": "48099|48193", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76539": { + "latitude": "31.08867", + "longitude": "-98.00991", + "city": "Kempner", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8608", + "density": "24.2", + "countyfips": "48281", + "countyname": "Lampasas", + "countyweights": "{\"48281\": \"69.33\", \"48027\": \"17.45\", \"48099\": \"9.49\", \"48053\": \"3.74\"}", + "countynamesall": "Lampasas|Bell|Coryell|Burnet", + "countyfipsall": "48281|48027|48099|48053", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76541": { + "latitude": "31.11414", + "longitude": "-97.72885", + "city": "Killeen", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17691", + "density": "1444.3", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"100\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76542": { + "latitude": "31.01061", + "longitude": "-97.74608", + "city": "Killeen", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "51405", + "density": "246.8", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"100\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76543": { + "latitude": "31.13897", + "longitude": "-97.64323", + "city": "Killeen", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30268", + "density": "240.8", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"100\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76544": { + "latitude": "31.14312", + "longitude": "-97.76165", + "city": "Fort Hood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23834", + "density": "300.1", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"51.06\", \"48099\": \"48.94\"}", + "countynamesall": "Bell|Coryell", + "countyfipsall": "48027|48099", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76548": { + "latitude": "31.05081", + "longitude": "-97.64587", + "city": "Harker Heights", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30510", + "density": "759.2", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"100\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76549": { + "latitude": "31.01316", + "longitude": "-97.82996", + "city": "Killeen", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "52012", + "density": "261.6", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"99.2\", \"48053\": \"0.4\", \"48099\": \"0.4\"}", + "countynamesall": "Bell|Burnet|Coryell", + "countyfipsall": "48027|48053|48099", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76550": { + "latitude": "31.08755", + "longitude": "-98.22873", + "city": "Lampasas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13412", + "density": "9.7", + "countyfips": "48281", + "countyname": "Lampasas", + "countyweights": "{\"48281\": \"92.09\", \"48053\": \"7.91\"}", + "countynamesall": "Lampasas|Burnet", + "countyfipsall": "48281|48053", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76554": { + "latitude": "30.97574", + "longitude": "-97.36779", + "city": "Little River Academy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2380", + "density": "115.3", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"100\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76556": { + "latitude": "30.70295", + "longitude": "-96.82589", + "city": "Milano", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1494", + "density": "5.8", + "countyfips": "48331", + "countyname": "Milam", + "countyweights": "{\"48331\": \"100\"}", + "countynamesall": "Milam", + "countyfipsall": "48331", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76557": { + "latitude": "31.29554", + "longitude": "-97.39495", + "city": "Moody", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5331", + "density": "15.1", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"60.2\", \"48027\": \"33.35\", \"48099\": \"6.45\"}", + "countynamesall": "McLennan|Bell|Coryell", + "countyfipsall": "48309|48027|48099", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76559": { + "latitude": "31.07639", + "longitude": "-97.6049", + "city": "Nolanville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6211", + "density": "357.2", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"100\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76561": { + "latitude": "31.41292", + "longitude": "-97.53715", + "city": "Oglesby", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1030", + "density": "8.8", + "countyfips": "48099", + "countyname": "Coryell", + "countyweights": "{\"48099\": \"100\"}", + "countynamesall": "Coryell", + "countyfipsall": "48099", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76565": { + "latitude": "31.6437", + "longitude": "-98.35105", + "city": "Pottsville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "138", + "density": "1.9", + "countyfips": "48193", + "countyname": "Hamilton", + "countyweights": "{\"48193\": \"100\"}", + "countynamesall": "Hamilton", + "countyfipsall": "48193", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76566": { + "latitude": "31.51052", + "longitude": "-97.99614", + "city": "Purmela", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "242", + "density": "1.7", + "countyfips": "48099", + "countyname": "Coryell", + "countyweights": "{\"48099\": \"89.15\", \"48193\": \"10.85\"}", + "countynamesall": "Coryell|Hamilton", + "countyfipsall": "48099|48193", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76567": { + "latitude": "30.65", + "longitude": "-97.00757", + "city": "Rockdale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9161", + "density": "18.3", + "countyfips": "48331", + "countyname": "Milam", + "countyweights": "{\"48331\": \"97.75\", \"48051\": \"2.25\"}", + "countynamesall": "Milam|Burleson", + "countyfipsall": "48331|48051", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76569": { + "latitude": "30.94373", + "longitude": "-97.22878", + "city": "Rogers", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2681", + "density": "12.7", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"96.4\", \"48331\": \"3.6\"}", + "countynamesall": "Bell|Milam", + "countyfipsall": "48027|48331", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76570": { + "latitude": "31.08166", + "longitude": "-96.93867", + "city": "Rosebud", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2700", + "density": "5.8", + "countyfips": "48145", + "countyname": "Falls", + "countyweights": "{\"48145\": \"96.23\", \"48331\": \"3.77\"}", + "countynamesall": "Falls|Milam", + "countyfipsall": "48145|48331", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76571": { + "latitude": "30.9338", + "longitude": "-97.58908", + "city": "Salado", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8630", + "density": "28.2", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"100\"}", + "countynamesall": "Bell", + "countyfipsall": "48027", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76573": { + "latitude": "30.81862", + "longitude": "-97.50231", + "city": "Schwertner", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29", + "density": "12.5", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"100\"}", + "countynamesall": "Williamson", + "countyfipsall": "48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76574": { + "latitude": "30.58423", + "longitude": "-97.38741", + "city": "Taylor", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19161", + "density": "52.0", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"100\"}", + "countynamesall": "Williamson", + "countyfipsall": "48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76577": { + "latitude": "30.62971", + "longitude": "-97.16969", + "city": "Thorndale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3187", + "density": "8.1", + "countyfips": "48331", + "countyname": "Milam", + "countyweights": "{\"48331\": \"98.39\", \"48491\": \"1.61\"}", + "countynamesall": "Milam|Williamson", + "countyfipsall": "48331|48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76578": { + "latitude": "30.53615", + "longitude": "-97.23789", + "city": "Thrall", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1482", + "density": "7.6", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"100\"}", + "countynamesall": "Williamson", + "countyfipsall": "48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76579": { + "latitude": "31.19707", + "longitude": "-97.26374", + "city": "Troy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5223", + "density": "35.2", + "countyfips": "48027", + "countyname": "Bell", + "countyweights": "{\"48027\": \"97.63\", \"48145\": \"2.37\"}", + "countynamesall": "Bell|Falls", + "countyfipsall": "48027|48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76596": { + "latitude": "31.47755", + "longitude": "-97.7296", + "city": "Gatesville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1250", + "density": "1598.7", + "countyfips": "48099", + "countyname": "Coryell", + "countyweights": "{\"48099\": \"100\"}", + "countynamesall": "Coryell", + "countyfipsall": "48099", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76597": { + "latitude": "31.48635", + "longitude": "-97.70694", + "city": "Gatesville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2657", + "density": "2126.9", + "countyfips": "48099", + "countyname": "Coryell", + "countyweights": "{\"48099\": \"100\"}", + "countynamesall": "Coryell", + "countyfipsall": "48099", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76598": { + "latitude": "31.47532", + "longitude": "-97.73549", + "city": "Gatesville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "479", + "density": "4796.1", + "countyfips": "48099", + "countyname": "Coryell", + "countyweights": "{\"48099\": \"100\"}", + "countynamesall": "Coryell", + "countyfipsall": "48099", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76599": { + "latitude": "31.4679", + "longitude": "-97.73518", + "city": "Gatesville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2339", + "density": "1836.3", + "countyfips": "48099", + "countyname": "Coryell", + "countyweights": "{\"48099\": \"100\"}", + "countynamesall": "Coryell", + "countyfipsall": "48099", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76621": { + "latitude": "31.883", + "longitude": "-97.08594", + "city": "Abbott", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "867", + "density": "4.6", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76622": { + "latitude": "31.82204", + "longitude": "-97.24398", + "city": "Aquilla", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1160", + "density": "8.5", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76623": { + "latitude": "32.21038", + "longitude": "-96.75659", + "city": "Avalon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "259", + "density": "19.7", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"100\"}", + "countynamesall": "Ellis", + "countyfipsall": "48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76624": { + "latitude": "31.6566", + "longitude": "-96.9596", + "city": "Axtell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2015", + "density": "12.1", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76626": { + "latitude": "32.10623", + "longitude": "-96.71536", + "city": "Blooming Grove", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1386", + "density": "13.1", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76627": { + "latitude": "32.10741", + "longitude": "-97.39448", + "city": "Blum", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1511", + "density": "6.6", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76628": { + "latitude": "32.03143", + "longitude": "-96.95221", + "city": "Brandon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "54", + "density": "2.2", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76629": { + "latitude": "31.15494", + "longitude": "-96.6554", + "city": "Bremond", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1668", + "density": "4.5", + "countyfips": "48395", + "countyname": "Robertson", + "countyweights": "{\"48395\": \"90.5\", \"48145\": \"9.5\"}", + "countynamesall": "Robertson|Falls", + "countyfipsall": "48395|48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76630": { + "latitude": "31.3405", + "longitude": "-97.22091", + "city": "Bruceville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1359", + "density": "36.4", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"99.4\", \"48145\": \"0.6\"}", + "countynamesall": "McLennan|Falls", + "countyfipsall": "48309|48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76631": { + "latitude": "31.97453", + "longitude": "-96.96749", + "city": "Bynum", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "692", + "density": "6.5", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76632": { + "latitude": "31.29871", + "longitude": "-97.06006", + "city": "Chilton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1613", + "density": "10.4", + "countyfips": "48145", + "countyname": "Falls", + "countyweights": "{\"48145\": \"100\"}", + "countynamesall": "Falls", + "countyfipsall": "48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76633": { + "latitude": "31.6781", + "longitude": "-97.31732", + "city": "China Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5290", + "density": "42.3", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"90.25\", \"48035\": \"9.75\"}", + "countynamesall": "McLennan|Bosque", + "countyfipsall": "48309|48035", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76634": { + "latitude": "31.80782", + "longitude": "-97.56146", + "city": "Clifton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7431", + "density": "10.1", + "countyfips": "48035", + "countyname": "Bosque", + "countyweights": "{\"48035\": \"99.38\", \"48099\": \"0.62\"}", + "countynamesall": "Bosque|Coryell", + "countyfipsall": "48035|48099", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76635": { + "latitude": "31.7284", + "longitude": "-96.66386", + "city": "Coolidge", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1290", + "density": "4.7", + "countyfips": "48293", + "countyname": "Limestone", + "countyweights": "{\"48293\": \"100\"}", + "countynamesall": "Limestone", + "countyfipsall": "48293", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76636": { + "latitude": "32.17157", + "longitude": "-97.28593", + "city": "Covington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1525", + "density": "13.6", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76637": { + "latitude": "31.76614", + "longitude": "-97.81681", + "city": "Cranfills Gap", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "540", + "density": "5.3", + "countyfips": "48035", + "countyname": "Bosque", + "countyweights": "{\"48035\": \"91.04\", \"48193\": \"8.96\"}", + "countynamesall": "Bosque|Hamilton", + "countyfipsall": "48035|48193", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76638": { + "latitude": "31.5498", + "longitude": "-97.44461", + "city": "Crawford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2910", + "density": "13.6", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76639": { + "latitude": "31.87245", + "longitude": "-96.65574", + "city": "Dawson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1318", + "density": "5.5", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76640": { + "latitude": "31.68989", + "longitude": "-97.07076", + "city": "Elm Mott", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3567", + "density": "48.4", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76641": { + "latitude": "32.0345", + "longitude": "-96.79489", + "city": "Frost", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1575", + "density": "8.1", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76642": { + "latitude": "31.50128", + "longitude": "-96.51757", + "city": "Groesbeck", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6949", + "density": "10.5", + "countyfips": "48293", + "countyname": "Limestone", + "countyweights": "{\"48293\": \"100\"}", + "countynamesall": "Limestone", + "countyfipsall": "48293", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76643": { + "latitude": "31.45383", + "longitude": "-97.19364", + "city": "Hewitt", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14523", + "density": "697.0", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76645": { + "latitude": "32.02173", + "longitude": "-97.1336", + "city": "Hillsboro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10568", + "density": "24.4", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76648": { + "latitude": "31.8472", + "longitude": "-96.80272", + "city": "Hubbard", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2887", + "density": "10.8", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"88.62\", \"48349\": \"9.08\", \"48293\": \"2.3\"}", + "countynamesall": "Hill|Navarro|Limestone", + "countyfipsall": "48217|48349|48293", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76649": { + "latitude": "32.00079", + "longitude": "-97.87752", + "city": "Iredell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "596", + "density": "1.7", + "countyfips": "48035", + "countyname": "Bosque", + "countyweights": "{\"48035\": \"91.52\", \"48143\": \"8.48\"}", + "countynamesall": "Bosque|Erath", + "countyfipsall": "48035|48143", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76650": { + "latitude": "31.98357", + "longitude": "-96.8604", + "city": "Irene", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "186", + "density": "6.9", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76651": { + "latitude": "32.1807", + "longitude": "-96.86697", + "city": "Italy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3250", + "density": "12.1", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"100\"}", + "countynamesall": "Ellis", + "countyfipsall": "48139", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76652": { + "latitude": "32.11575", + "longitude": "-97.57043", + "city": "Kopperl", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1349", + "density": "6.0", + "countyfips": "48035", + "countyname": "Bosque", + "countyweights": "{\"48035\": \"100\"}", + "countynamesall": "Bosque", + "countyfipsall": "48035", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76653": { + "latitude": "31.29812", + "longitude": "-96.60817", + "city": "Kosse", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1279", + "density": "3.3", + "countyfips": "48293", + "countyname": "Limestone", + "countyweights": "{\"48293\": \"79.76\", \"48145\": \"18.58\", \"48395\": \"1.66\"}", + "countynamesall": "Limestone|Falls|Robertson", + "countyfipsall": "48293|48145|48395", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76654": { + "latitude": "31.73054", + "longitude": "-97.01427", + "city": "Leroy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "139", + "density": "83.6", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76655": { + "latitude": "31.39609", + "longitude": "-97.17738", + "city": "Lorena", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8312", + "density": "42.0", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"92.5\", \"48145\": \"7.5\"}", + "countynamesall": "McLennan|Falls", + "countyfipsall": "48309|48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76656": { + "latitude": "31.18465", + "longitude": "-97.0586", + "city": "Lott", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2446", + "density": "8.2", + "countyfips": "48145", + "countyname": "Falls", + "countyweights": "{\"48145\": \"100\"}", + "countynamesall": "Falls", + "countyfipsall": "48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76657": { + "latitude": "31.4458", + "longitude": "-97.39449", + "city": "McGregor", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10108", + "density": "36.7", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"98.36\", \"48099\": \"1.64\"}", + "countynamesall": "McLennan|Coryell", + "countyfipsall": "48309|48099", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76660": { + "latitude": "31.9243", + "longitude": "-96.90239", + "city": "Malone", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "561", + "density": "6.1", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76661": { + "latitude": "31.31864", + "longitude": "-96.84932", + "city": "Marlin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7755", + "density": "18.7", + "countyfips": "48145", + "countyname": "Falls", + "countyweights": "{\"48145\": \"100\"}", + "countynamesall": "Falls", + "countyfipsall": "48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76664": { + "latitude": "31.55793", + "longitude": "-96.79573", + "city": "Mart", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3688", + "density": "10.5", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"88.22\", \"48293\": \"10.39\", \"48145\": \"1.39\"}", + "countynamesall": "McLennan|Limestone|Falls", + "countyfipsall": "48309|48293|48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76665": { + "latitude": "31.91349", + "longitude": "-97.71634", + "city": "Meridian", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2417", + "density": "5.9", + "countyfips": "48035", + "countyname": "Bosque", + "countyweights": "{\"48035\": \"100\"}", + "countynamesall": "Bosque", + "countyfipsall": "48035", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76666": { + "latitude": "32.04403", + "longitude": "-96.91737", + "city": "Mertens", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "268", + "density": "6.3", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76667": { + "latitude": "31.65529", + "longitude": "-96.46854", + "city": "Mexia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11098", + "density": "29.8", + "countyfips": "48293", + "countyname": "Limestone", + "countyweights": "{\"48293\": \"96.93\", \"48161\": \"3.07\"}", + "countynamesall": "Limestone|Freestone", + "countyfipsall": "48293|48161", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76670": { + "latitude": "32.13146", + "longitude": "-96.98936", + "city": "Milford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1517", + "density": "8.4", + "countyfips": "48139", + "countyname": "Ellis", + "countyweights": "{\"48139\": \"71.46\", \"48217\": \"28.54\"}", + "countynamesall": "Ellis|Hill", + "countyfipsall": "48139|48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76671": { + "latitude": "31.99489", + "longitude": "-97.53199", + "city": "Morgan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1621", + "density": "7.9", + "countyfips": "48035", + "countyname": "Bosque", + "countyweights": "{\"48035\": \"100\"}", + "countynamesall": "Bosque", + "countyfipsall": "48035", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76673": { + "latitude": "31.74944", + "longitude": "-96.89139", + "city": "Mount Calm", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1706", + "density": "7.1", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"70.35\", \"48293\": \"29.15\", \"48309\": \"0.51\"}", + "countynamesall": "Hill|Limestone|McLennan", + "countyfipsall": "48217|48293|48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76676": { + "latitude": "31.86551", + "longitude": "-96.95103", + "city": "Penelope", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "281", + "density": "5.1", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76678": { + "latitude": "31.65548", + "longitude": "-96.75883", + "city": "Prairie Hill", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "260", + "density": "2.7", + "countyfips": "48293", + "countyname": "Limestone", + "countyweights": "{\"48293\": \"100\"}", + "countynamesall": "Limestone", + "countyfipsall": "48293", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76679": { + "latitude": "31.92428", + "longitude": "-96.58566", + "city": "Purdon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1435", + "density": "7.3", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76680": { + "latitude": "31.19335", + "longitude": "-96.81791", + "city": "Reagan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "279", + "density": "1.9", + "countyfips": "48145", + "countyname": "Falls", + "countyweights": "{\"48145\": \"100\"}", + "countynamesall": "Falls", + "countyfipsall": "48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76681": { + "latitude": "31.8933", + "longitude": "-96.43508", + "city": "Richland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "801", + "density": "4.2", + "countyfips": "48349", + "countyname": "Navarro", + "countyweights": "{\"48349\": \"100\"}", + "countynamesall": "Navarro", + "countyfipsall": "48349", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76682": { + "latitude": "31.45363", + "longitude": "-96.9059", + "city": "Riesel", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2846", + "density": "9.7", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"78.57\", \"48145\": \"21.43\"}", + "countynamesall": "McLennan|Falls", + "countyfipsall": "48309|48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76685": { + "latitude": "31.35326", + "longitude": "-97.01115", + "city": "Satin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40", + "density": "1.1", + "countyfips": "48145", + "countyname": "Falls", + "countyweights": "{\"48145\": \"100\"}", + "countynamesall": "Falls", + "countyfipsall": "48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76686": { + "latitude": "31.76592", + "longitude": "-96.558", + "city": "Tehuacana", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "195", + "density": "6.7", + "countyfips": "48293", + "countyname": "Limestone", + "countyweights": "{\"48293\": \"100\"}", + "countynamesall": "Limestone", + "countyfipsall": "48293", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76687": { + "latitude": "31.37171", + "longitude": "-96.49934", + "city": "Thornton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1879", + "density": "5.5", + "countyfips": "48293", + "countyname": "Limestone", + "countyweights": "{\"48293\": \"80.76\", \"48395\": \"18.35\", \"48145\": \"0.89\"}", + "countynamesall": "Limestone|Robertson|Falls", + "countyfipsall": "48293|48395|48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76689": { + "latitude": "31.66663", + "longitude": "-97.50415", + "city": "Valley Mills", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3565", + "density": "6.0", + "countyfips": "48035", + "countyname": "Bosque", + "countyweights": "{\"48035\": \"66.89\", \"48309\": \"28.53\", \"48099\": \"4.58\"}", + "countynamesall": "Bosque|McLennan|Coryell", + "countyfipsall": "48035|48309|48099", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76690": { + "latitude": "32.08226", + "longitude": "-97.73325", + "city": "Walnut Springs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1101", + "density": "5.2", + "countyfips": "48035", + "countyname": "Bosque", + "countyweights": "{\"48035\": \"100\"}", + "countynamesall": "Bosque", + "countyfipsall": "48035", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76691": { + "latitude": "31.77818", + "longitude": "-97.09625", + "city": "West", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6333", + "density": "24.5", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"98.79\", \"48217\": \"1.21\"}", + "countynamesall": "McLennan|Hill", + "countyfipsall": "48309|48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76692": { + "latitude": "31.95806", + "longitude": "-97.32888", + "city": "Whitney", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10252", + "density": "32.3", + "countyfips": "48217", + "countyname": "Hill", + "countyweights": "{\"48217\": \"100\"}", + "countynamesall": "Hill", + "countyfipsall": "48217", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76693": { + "latitude": "31.78599", + "longitude": "-96.40641", + "city": "Wortham", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1492", + "density": "7.5", + "countyfips": "48161", + "countyname": "Freestone", + "countyweights": "{\"48161\": \"98.3\", \"48293\": \"1.7\"}", + "countynamesall": "Freestone|Limestone", + "countyfipsall": "48161|48293", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76701": { + "latitude": "31.55202", + "longitude": "-97.13858", + "city": "Waco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1895", + "density": "642.4", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76704": { + "latitude": "31.57676", + "longitude": "-97.127", + "city": "Waco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7956", + "density": "595.5", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76705": { + "latitude": "31.62655", + "longitude": "-97.09605", + "city": "Waco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31734", + "density": "107.2", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76706": { + "latitude": "31.46653", + "longitude": "-97.09121", + "city": "Waco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39221", + "density": "213.7", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"99.97\", \"48145\": \"0.03\"}", + "countynamesall": "McLennan|Falls", + "countyfipsall": "48309|48145", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76707": { + "latitude": "31.55371", + "longitude": "-97.15818", + "city": "Waco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15688", + "density": "1856.2", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76708": { + "latitude": "31.62687", + "longitude": "-97.21135", + "city": "Waco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27964", + "density": "232.0", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76710": { + "latitude": "31.53876", + "longitude": "-97.19525", + "city": "Waco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24837", + "density": "1008.1", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76711": { + "latitude": "31.51442", + "longitude": "-97.15332", + "city": "Waco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9988", + "density": "976.9", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76712": { + "latitude": "31.52403", + "longitude": "-97.25566", + "city": "Woodway", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25525", + "density": "195.8", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76798": { + "latitude": "31.5484", + "longitude": "-97.11901", + "city": "Waco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1591", + "density": "17599.8", + "countyfips": "48309", + "countyname": "McLennan", + "countyweights": "{\"48309\": \"100\"}", + "countynamesall": "McLennan", + "countyfipsall": "48309", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76801": { + "latitude": "31.74249", + "longitude": "-99.03991", + "city": "Brownwood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25011", + "density": "25.3", + "countyfips": "48049", + "countyname": "Brown", + "countyweights": "{\"48049\": \"99.75\", \"48333\": \"0.23\", \"48083\": \"0.02\"}", + "countynamesall": "Brown|Mills|Coleman", + "countyfipsall": "48049|48333|48083", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76802": { + "latitude": "31.75328", + "longitude": "-98.90283", + "city": "Early", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5251", + "density": "28.0", + "countyfips": "48049", + "countyname": "Brown", + "countyweights": "{\"48049\": \"100\"}", + "countynamesall": "Brown", + "countyfipsall": "48049", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76820": { + "latitude": "30.76719", + "longitude": "-99.04869", + "city": "Art", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "88", + "density": "0.5", + "countyfips": "48319", + "countyname": "Mason", + "countyweights": "{\"48319\": \"100\"}", + "countynamesall": "Mason", + "countyfipsall": "48319", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76821": { + "latitude": "31.73869", + "longitude": "-99.93625", + "city": "Ballinger", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4561", + "density": "5.8", + "countyfips": "48399", + "countyname": "Runnels", + "countyweights": "{\"48399\": \"100\"}", + "countynamesall": "Runnels", + "countyfipsall": "48399", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76823": { + "latitude": "31.70119", + "longitude": "-99.15991", + "city": "Bangs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3024", + "density": "10.4", + "countyfips": "48049", + "countyname": "Brown", + "countyweights": "{\"48049\": \"98.74\", \"48083\": \"1.26\"}", + "countynamesall": "Brown|Coleman", + "countyfipsall": "48049|48083", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76824": { + "latitude": "31.0036", + "longitude": "-98.47069", + "city": "Bend", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9", + "density": "0.1", + "countyfips": "48411", + "countyname": "San Saba", + "countyweights": "{\"48411\": \"100\"}", + "countynamesall": "San Saba", + "countyfipsall": "48411", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76825": { + "latitude": "31.10471", + "longitude": "-99.39545", + "city": "Brady", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6908", + "density": "5.1", + "countyfips": "48307", + "countyname": "McCulloch", + "countyweights": "{\"48307\": \"99.56\", \"48319\": \"0.44\"}", + "countynamesall": "McCulloch|Mason", + "countyfipsall": "48307|48319", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76827": { + "latitude": "31.52636", + "longitude": "-99.12819", + "city": "Brookesmith", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "418", + "density": "2.2", + "countyfips": "48049", + "countyname": "Brown", + "countyweights": "{\"48049\": \"100\"}", + "countynamesall": "Brown", + "countyfipsall": "48049", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76828": { + "latitude": "32.00902", + "longitude": "-99.29396", + "city": "Burkett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "240", + "density": "1.0", + "countyfips": "48083", + "countyname": "Coleman", + "countyweights": "{\"48083\": \"100\"}", + "countynamesall": "Coleman", + "countyfipsall": "48083", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76831": { + "latitude": "30.63979", + "longitude": "-98.91958", + "city": "Castell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48299", + "countyname": "Llano", + "countyweights": "{\"48299\": \"100\"}", + "countynamesall": "Llano", + "countyfipsall": "48299", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76832": { + "latitude": "30.98538", + "longitude": "-98.73031", + "city": "Cherokee", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "728", + "density": "1.4", + "countyfips": "48411", + "countyname": "San Saba", + "countyweights": "{\"48411\": \"100\"}", + "countynamesall": "San Saba", + "countyfipsall": "48411", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76834": { + "latitude": "31.87436", + "longitude": "-99.47039", + "city": "Coleman", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5310", + "density": "5.0", + "countyfips": "48083", + "countyname": "Coleman", + "countyweights": "{\"48083\": \"100\"}", + "countynamesall": "Coleman", + "countyfipsall": "48083", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76836": { + "latitude": "31.42607", + "longitude": "-99.55601", + "city": "Doole", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48307", + "countyname": "McCulloch", + "countyweights": "{\"48307\": \"100\"}", + "countynamesall": "McCulloch", + "countyfipsall": "48307", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76837": { + "latitude": "31.2208", + "longitude": "-99.89593", + "city": "Eden", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2440", + "density": "2.2", + "countyfips": "48095", + "countyname": "Concho", + "countyweights": "{\"48095\": \"100\"}", + "countynamesall": "Concho", + "countyfipsall": "48095", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76841": { + "latitude": "30.8936", + "longitude": "-100.09665", + "city": "Fort McKavett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19", + "density": "0.1", + "countyfips": "48327", + "countyname": "Menard", + "countyweights": "{\"48327\": \"90.16\", \"48413\": \"9.84\"}", + "countynamesall": "Menard|Schleicher", + "countyfipsall": "48327|48413", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76842": { + "latitude": "30.95434", + "longitude": "-99.07295", + "city": "Fredonia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "242", + "density": "1.0", + "countyfips": "48319", + "countyname": "Mason", + "countyweights": "{\"48319\": \"58.64\", \"48411\": \"31.94\", \"48307\": \"9.42\"}", + "countynamesall": "Mason|San Saba|McCulloch", + "countyfipsall": "48319|48411|48307", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76844": { + "latitude": "31.43788", + "longitude": "-98.50904", + "city": "Goldthwaite", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3534", + "density": "3.3", + "countyfips": "48333", + "countyname": "Mills", + "countyweights": "{\"48333\": \"99.13\", \"48193\": \"0.45\", \"48281\": \"0.42\"}", + "countynamesall": "Mills|Hamilton|Lampasas", + "countyfipsall": "48333|48193|48281", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76845": { + "latitude": "31.54733", + "longitude": "-99.48707", + "city": "Gouldbusk", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "288", + "density": "1.0", + "countyfips": "48083", + "countyname": "Coleman", + "countyweights": "{\"48083\": \"100\"}", + "countynamesall": "Coleman", + "countyfipsall": "48083", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76848": { + "latitude": "30.84316", + "longitude": "-99.56995", + "city": "Hext", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48", + "density": "0.3", + "countyfips": "48327", + "countyname": "Menard", + "countyweights": "{\"48327\": \"100\"}", + "countynamesall": "Menard", + "countyfipsall": "48327", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76849": { + "latitude": "30.48896", + "longitude": "-99.79705", + "city": "Junction", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3785", + "density": "1.5", + "countyfips": "48267", + "countyname": "Kimble", + "countyweights": "{\"48267\": \"100\"}", + "countynamesall": "Kimble", + "countyfipsall": "48267", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76852": { + "latitude": "31.35939", + "longitude": "-99.4509", + "city": "Lohn", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "268", + "density": "0.7", + "countyfips": "48307", + "countyname": "McCulloch", + "countyweights": "{\"48307\": \"100\"}", + "countynamesall": "McCulloch", + "countyfipsall": "48307", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76853": { + "latitude": "31.24577", + "longitude": "-98.3872", + "city": "Lometa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1456", + "density": "2.2", + "countyfips": "48281", + "countyname": "Lampasas", + "countyweights": "{\"48281\": \"98.71\", \"48333\": \"1.29\"}", + "countynamesall": "Lampasas|Mills", + "countyfipsall": "48281|48333", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76854": { + "latitude": "30.68565", + "longitude": "-99.57564", + "city": "London", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "220", + "density": "0.6", + "countyfips": "48267", + "countyname": "Kimble", + "countyweights": "{\"48267\": \"68.33\", \"48327\": \"31.67\"}", + "countynamesall": "Kimble|Menard", + "countyfipsall": "48267|48327", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76856": { + "latitude": "30.70618", + "longitude": "-99.26619", + "city": "Mason", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3735", + "density": "2.0", + "countyfips": "48319", + "countyname": "Mason", + "countyweights": "{\"48319\": \"100\"}", + "countynamesall": "Mason", + "countyfipsall": "48319", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76857": { + "latitude": "31.93191", + "longitude": "-98.93511", + "city": "May", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1761", + "density": "5.1", + "countyfips": "48049", + "countyname": "Brown", + "countyweights": "{\"48049\": \"99.44\", \"48093\": \"0.56\"}", + "countynamesall": "Brown|Comanche", + "countyfipsall": "48049|48093", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76858": { + "latitude": "31.19743", + "longitude": "-99.62049", + "city": "Melvin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "292", + "density": "0.9", + "countyfips": "48307", + "countyname": "McCulloch", + "countyweights": "{\"48307\": \"86.61\", \"48095\": \"13.39\"}", + "countynamesall": "McCulloch|Concho", + "countyfipsall": "48307|48095", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76859": { + "latitude": "30.90801", + "longitude": "-99.8326", + "city": "Menard", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2015", + "density": "1.1", + "countyfips": "48327", + "countyname": "Menard", + "countyweights": "{\"48327\": \"100\"}", + "countynamesall": "Menard", + "countyfipsall": "48327", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76861": { + "latitude": "31.59099", + "longitude": "-100.19534", + "city": "Miles", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1945", + "density": "4.4", + "countyfips": "48399", + "countyname": "Runnels", + "countyweights": "{\"48399\": \"57.49\", \"48451\": \"42.51\"}", + "countynamesall": "Runnels|Tom Green", + "countyfipsall": "48399|48451", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76862": { + "latitude": "31.41518", + "longitude": "-99.68744", + "city": "Millersview", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "207", + "density": "0.6", + "countyfips": "48095", + "countyname": "Concho", + "countyweights": "{\"48095\": \"100\"}", + "countynamesall": "Concho", + "countyfipsall": "48095", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76864": { + "latitude": "31.5541", + "longitude": "-98.73378", + "city": "Mullin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "821", + "density": "1.3", + "countyfips": "48333", + "countyname": "Mills", + "countyweights": "{\"48333\": \"100\"}", + "countynamesall": "Mills", + "countyfipsall": "48333", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76865": { + "latitude": "31.85815", + "longitude": "-100.1663", + "city": "Norton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "151", + "density": "1.8", + "countyfips": "48399", + "countyname": "Runnels", + "countyweights": "{\"48399\": \"100\"}", + "countynamesall": "Runnels", + "countyfipsall": "48399", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76866": { + "latitude": "31.46085", + "longitude": "-99.92785", + "city": "Paint Rock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "537", + "density": "0.7", + "countyfips": "48095", + "countyname": "Concho", + "countyweights": "{\"48095\": \"100\"}", + "countynamesall": "Concho", + "countyfipsall": "48095", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76869": { + "latitude": "30.91282", + "longitude": "-98.99787", + "city": "Pontotoc", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "64", + "density": "0.3", + "countyfips": "48319", + "countyname": "Mason", + "countyweights": "{\"48319\": \"82.4\", \"48411\": \"17.6\"}", + "countynamesall": "Mason|San Saba", + "countyfipsall": "48319|48411", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76870": { + "latitude": "31.63824", + "longitude": "-98.52981", + "city": "Priddy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "270", + "density": "3.8", + "countyfips": "48333", + "countyname": "Mills", + "countyweights": "{\"48333\": \"100\"}", + "countynamesall": "Mills", + "countyfipsall": "48333", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76871": { + "latitude": "31.29056", + "longitude": "-98.98708", + "city": "Richland Springs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "657", + "density": "1.1", + "countyfips": "48411", + "countyname": "San Saba", + "countyweights": "{\"48411\": \"99.36\", \"48307\": \"0.64\"}", + "countynamesall": "San Saba|McCulloch", + "countyfipsall": "48411|48307", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76872": { + "latitude": "31.32321", + "longitude": "-99.16715", + "city": "Rochelle", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "770", + "density": "1.0", + "countyfips": "48307", + "countyname": "McCulloch", + "countyweights": "{\"48307\": \"83.82\", \"48411\": \"16.18\"}", + "countynamesall": "McCulloch|San Saba", + "countyfipsall": "48307|48411", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76873": { + "latitude": "31.51108", + "longitude": "-99.37924", + "city": "Rockwood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "60", + "density": "0.5", + "countyfips": "48083", + "countyname": "Coleman", + "countyweights": "{\"48083\": \"100\"}", + "countynamesall": "Coleman", + "countyfipsall": "48083", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76874": { + "latitude": "30.45873", + "longitude": "-100.06913", + "city": "Roosevelt", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48267", + "countyname": "Kimble", + "countyweights": "{\"48267\": \"100\"}", + "countynamesall": "Kimble", + "countyfipsall": "48267", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76875": { + "latitude": "31.60275", + "longitude": "-100.00576", + "city": "Rowena", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "525", + "density": "1.9", + "countyfips": "48399", + "countyname": "Runnels", + "countyweights": "{\"48399\": \"93.41\", \"48095\": \"6.59\"}", + "countynamesall": "Runnels|Concho", + "countyfipsall": "48399|48095", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76877": { + "latitude": "31.17243", + "longitude": "-98.75696", + "city": "San Saba", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4371", + "density": "3.0", + "countyfips": "48411", + "countyname": "San Saba", + "countyweights": "{\"48411\": \"100\"}", + "countynamesall": "San Saba", + "countyfipsall": "48411", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76878": { + "latitude": "31.65761", + "longitude": "-99.29342", + "city": "Santa Anna", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1688", + "density": "2.5", + "countyfips": "48083", + "countyname": "Coleman", + "countyweights": "{\"48083\": \"100\"}", + "countynamesall": "Coleman", + "countyfipsall": "48083", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76882": { + "latitude": "31.81965", + "longitude": "-99.70241", + "city": "Talpa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "214", + "density": "0.6", + "countyfips": "48083", + "countyname": "Coleman", + "countyweights": "{\"48083\": \"78.57\", \"48399\": \"21.43\"}", + "countynamesall": "Coleman|Runnels", + "countyfipsall": "48083|48399", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76884": { + "latitude": "31.73031", + "longitude": "-99.55324", + "city": "Valera", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "115", + "density": "1.3", + "countyfips": "48083", + "countyname": "Coleman", + "countyweights": "{\"48083\": \"100\"}", + "countynamesall": "Coleman", + "countyfipsall": "48083", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76885": { + "latitude": "30.87708", + "longitude": "-98.86324", + "city": "Valley Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "216", + "density": "1.1", + "countyfips": "48299", + "countyname": "Llano", + "countyweights": "{\"48299\": \"100\"}", + "countynamesall": "Llano", + "countyfipsall": "48299", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76887": { + "latitude": "31.01265", + "longitude": "-99.16057", + "city": "Voca", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "82", + "density": "0.5", + "countyfips": "48307", + "countyname": "McCulloch", + "countyweights": "{\"48307\": \"100\"}", + "countynamesall": "McCulloch", + "countyfipsall": "48307", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76888": { + "latitude": "31.60827", + "longitude": "-99.63989", + "city": "Voss", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "151", + "density": "0.5", + "countyfips": "48083", + "countyname": "Coleman", + "countyweights": "{\"48083\": \"100\"}", + "countynamesall": "Coleman", + "countyfipsall": "48083", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76890": { + "latitude": "31.69146", + "longitude": "-98.7756", + "city": "Zephyr", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "982", + "density": "4.0", + "countyfips": "48049", + "countyname": "Brown", + "countyweights": "{\"48049\": \"89.15\", \"48333\": \"10.21\", \"48093\": \"0.64\"}", + "countynamesall": "Brown|Mills|Comanche", + "countyfipsall": "48049|48333|48093", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76901": { + "latitude": "31.54094", + "longitude": "-100.62877", + "city": "San Angelo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31667", + "density": "44.3", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"99.9\", \"48235\": \"0.1\"}", + "countynamesall": "Tom Green|Irion", + "countyfipsall": "48451|48235", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76903": { + "latitude": "31.48482", + "longitude": "-100.43722", + "city": "San Angelo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31248", + "density": "453.2", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"100\"}", + "countynamesall": "Tom Green", + "countyfipsall": "48451", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76904": { + "latitude": "31.2836", + "longitude": "-100.39452", + "city": "San Angelo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36178", + "density": "34.6", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"99.8\", \"48235\": \"0.2\"}", + "countynamesall": "Tom Green|Irion", + "countyfipsall": "48451|48235", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76905": { + "latitude": "31.50981", + "longitude": "-100.32217", + "city": "San Angelo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12206", + "density": "22.7", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"100\"}", + "countynamesall": "Tom Green", + "countyfipsall": "48451", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76908": { + "latitude": "31.43208", + "longitude": "-100.40222", + "city": "Goodfellow Afb", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2554", + "density": "706.2", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"100\"}", + "countynamesall": "Tom Green", + "countyfipsall": "48451", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76930": { + "latitude": "31.27278", + "longitude": "-101.17275", + "city": "Barnhart", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "107", + "density": "0.2", + "countyfips": "48235", + "countyname": "Irion", + "countyweights": "{\"48235\": \"100\"}", + "countynamesall": "Irion", + "countyfipsall": "48235", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76932": { + "latitude": "31.26949", + "longitude": "-101.54094", + "city": "Big Lake", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3819", + "density": "1.5", + "countyfips": "48383", + "countyname": "Reagan", + "countyweights": "{\"48383\": \"98.88\", \"48105\": \"1.12\"}", + "countynamesall": "Reagan|Crockett", + "countyfipsall": "48383|48105", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76933": { + "latitude": "31.86341", + "longitude": "-100.28783", + "city": "Bronte", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1209", + "density": "1.8", + "countyfips": "48081", + "countyname": "Coke", + "countyweights": "{\"48081\": \"92.31\", \"48399\": \"7.69\"}", + "countynamesall": "Coke|Runnels", + "countyfipsall": "48081|48399", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76934": { + "latitude": "31.60305", + "longitude": "-100.66898", + "city": "Carlsbad", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1084", + "density": "26.9", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"100\"}", + "countynamesall": "Tom Green", + "countyfipsall": "48451", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76935": { + "latitude": "31.08046", + "longitude": "-100.41658", + "city": "Christoval", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1791", + "density": "2.4", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"95.33\", \"48413\": \"4.67\"}", + "countynamesall": "Tom Green|Schleicher", + "countyfipsall": "48451|48413", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76936": { + "latitude": "30.88566", + "longitude": "-100.58752", + "city": "Eldorado", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2983", + "density": "1.1", + "countyfips": "48413", + "countyname": "Schleicher", + "countyweights": "{\"48413\": \"100\"}", + "countynamesall": "Schleicher", + "countyfipsall": "48413", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76937": { + "latitude": "31.38854", + "longitude": "-100.15138", + "city": "Eola", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15", + "density": "0.6", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"100\"}", + "countynamesall": "Tom Green", + "countyfipsall": "48451", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76939": { + "latitude": "31.27778", + "longitude": "-100.5574", + "city": "Knickerbocker", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"100\"}", + "countynamesall": "Tom Green", + "countyfipsall": "48451", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76940": { + "latitude": "31.43903", + "longitude": "-100.14294", + "city": "Mereta", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "113", + "density": "2.9", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"100\"}", + "countynamesall": "Tom Green", + "countyfipsall": "48451", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76941": { + "latitude": "31.26808", + "longitude": "-100.91169", + "city": "Mertzon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1455", + "density": "1.0", + "countyfips": "48235", + "countyname": "Irion", + "countyweights": "{\"48235\": \"100\"}", + "countynamesall": "Irion", + "countyfipsall": "48235", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76943": { + "latitude": "30.53101", + "longitude": "-101.30067", + "city": "Ozona", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3420", + "density": "0.5", + "countyfips": "48105", + "countyname": "Crockett", + "countyweights": "{\"48105\": \"98.54\", \"48465\": \"1.46\"}", + "countynamesall": "Crockett|Val Verde", + "countyfipsall": "48105|48465", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76945": { + "latitude": "31.88096", + "longitude": "-100.61152", + "city": "Robert Lee", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1798", + "density": "1.2", + "countyfips": "48081", + "countyname": "Coke", + "countyweights": "{\"48081\": \"100\", \"48431\": \"0\"}", + "countynamesall": "Coke|Sterling", + "countyfipsall": "48081|48431", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76949": { + "latitude": "32.04184", + "longitude": "-100.69272", + "city": "Silver", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12", + "density": "0.5", + "countyfips": "48081", + "countyname": "Coke", + "countyweights": "{\"48081\": \"100\"}", + "countynamesall": "Coke", + "countyfipsall": "48081", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76950": { + "latitude": "30.43734", + "longitude": "-100.56036", + "city": "Sonora", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3867", + "density": "0.8", + "countyfips": "48435", + "countyname": "Sutton", + "countyweights": "{\"48435\": \"98.76\", \"48137\": \"1.05\", \"48465\": \"0.19\"}", + "countynamesall": "Sutton|Edwards|Val Verde", + "countyfipsall": "48435|48137|48465", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76951": { + "latitude": "31.81488", + "longitude": "-101.04641", + "city": "Sterling City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1231", + "density": "0.6", + "countyfips": "48431", + "countyname": "Sterling", + "countyweights": "{\"48431\": \"100\"}", + "countynamesall": "Sterling", + "countyfipsall": "48431", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76953": { + "latitude": "31.72301", + "longitude": "-100.32766", + "city": "Tennyson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "101", + "density": "0.9", + "countyfips": "48081", + "countyname": "Coke", + "countyweights": "{\"48081\": \"100\"}", + "countynamesall": "Coke", + "countyfipsall": "48081", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76955": { + "latitude": "31.28953", + "longitude": "-100.15274", + "city": "Vancourt", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "192", + "density": "1.5", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"100\"}", + "countynamesall": "Tom Green", + "countyfipsall": "48451", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76957": { + "latitude": "31.3722", + "longitude": "-100.30507", + "city": "Wall", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "134", + "density": "185.1", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"100\"}", + "countynamesall": "Tom Green", + "countyfipsall": "48451", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "76958": { + "latitude": "31.59512", + "longitude": "-100.79924", + "city": "Water Valley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "183", + "density": "0.7", + "countyfips": "48451", + "countyname": "Tom Green", + "countyweights": "{\"48451\": \"100\"}", + "countynamesall": "Tom Green", + "countyfipsall": "48451", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77002": { + "latitude": "29.75641", + "longitude": "-95.3653", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15613", + "density": "2995.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77003": { + "latitude": "29.74932", + "longitude": "-95.34582", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9707", + "density": "1476.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77004": { + "latitude": "29.72463", + "longitude": "-95.36309", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37294", + "density": "2491.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77005": { + "latitude": "29.71816", + "longitude": "-95.42419", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28572", + "density": "2869.1", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77006": { + "latitude": "29.74088", + "longitude": "-95.39132", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22580", + "density": "3865.9", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77007": { + "latitude": "29.77128", + "longitude": "-95.41144", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40080", + "density": "1981.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77008": { + "latitude": "29.7986", + "longitude": "-95.41754", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34895", + "density": "2062.5", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77009": { + "latitude": "29.79504", + "longitude": "-95.36747", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36147", + "density": "2257.1", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77010": { + "latitude": "29.75365", + "longitude": "-95.35982", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "890", + "density": "2783.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77011": { + "latitude": "29.7433", + "longitude": "-95.30849", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17447", + "density": "1887.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77012": { + "latitude": "29.71896", + "longitude": "-95.27431", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19597", + "density": "1926.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77013": { + "latitude": "29.79548", + "longitude": "-95.2382", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19198", + "density": "845.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77014": { + "latitude": "29.9805", + "longitude": "-95.4636", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37488", + "density": "2017.1", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77015": { + "latitude": "29.76437", + "longitude": "-95.17347", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "56477", + "density": "1032.5", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77016": { + "latitude": "29.86163", + "longitude": "-95.29997", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30741", + "density": "1226.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77017": { + "latitude": "29.68995", + "longitude": "-95.25224", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "32985", + "density": "1464.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77018": { + "latitude": "29.82694", + "longitude": "-95.42589", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28229", + "density": "1646.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77019": { + "latitude": "29.7532", + "longitude": "-95.41008", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22057", + "density": "2419.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77020": { + "latitude": "29.77305", + "longitude": "-95.31379", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26357", + "density": "1474.5", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77021": { + "latitude": "29.69713", + "longitude": "-95.35743", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26214", + "density": "1664.9", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77022": { + "latitude": "29.83057", + "longitude": "-95.37697", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27924", + "density": "1846.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77023": { + "latitude": "29.72163", + "longitude": "-95.31846", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29138", + "density": "2064.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77024": { + "latitude": "29.77084", + "longitude": "-95.51161", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38190", + "density": "1149.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77025": { + "latitude": "29.68661", + "longitude": "-95.43499", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28540", + "density": "2570.0", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77026": { + "latitude": "29.8001", + "longitude": "-95.32947", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21300", + "density": "1268.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77027": { + "latitude": "29.74023", + "longitude": "-95.44589", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18323", + "density": "2471.9", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77028": { + "latitude": "29.82466", + "longitude": "-95.28678", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17425", + "density": "733.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77029": { + "latitude": "29.76278", + "longitude": "-95.26243", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17781", + "density": "528.9", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77030": { + "latitude": "29.70628", + "longitude": "-95.40258", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11229", + "density": "1721.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77031": { + "latitude": "29.65448", + "longitude": "-95.54639", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18058", + "density": "2186.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77032": { + "latitude": "29.96497", + "longitude": "-95.34163", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14535", + "density": "253.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77033": { + "latitude": "29.66724", + "longitude": "-95.33703", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30558", + "density": "1974.5", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77034": { + "latitude": "29.61755", + "longitude": "-95.19245", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40635", + "density": "1141.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77035": { + "latitude": "29.65246", + "longitude": "-95.47699", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36931", + "density": "2497.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77036": { + "latitude": "29.70165", + "longitude": "-95.53595", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "74472", + "density": "4016.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77037": { + "latitude": "29.89114", + "longitude": "-95.39441", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18966", + "density": "1174.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77038": { + "latitude": "29.9186", + "longitude": "-95.44169", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31912", + "density": "1307.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77039": { + "latitude": "29.90926", + "longitude": "-95.34118", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28877", + "density": "1103.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77040": { + "latitude": "29.8744", + "longitude": "-95.52787", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "47823", + "density": "1313.1", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77041": { + "latitude": "29.86048", + "longitude": "-95.58085", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "33941", + "density": "707.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77042": { + "latitude": "29.74115", + "longitude": "-95.5606", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "41734", + "density": "2587.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77043": { + "latitude": "29.81187", + "longitude": "-95.58126", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24803", + "density": "645.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77044": { + "latitude": "29.8979", + "longitude": "-95.17696", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48783", + "density": "481.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77045": { + "latitude": "29.63572", + "longitude": "-95.43304", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36532", + "density": "1217.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77046": { + "latitude": "29.73376", + "longitude": "-95.4334", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1207", + "density": "3989.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77047": { + "latitude": "29.60844", + "longitude": "-95.38665", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "32616", + "density": "911.0", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77048": { + "latitude": "29.62042", + "longitude": "-95.3303", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18383", + "density": "640.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77049": { + "latitude": "29.83413", + "longitude": "-95.14734", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36434", + "density": "570.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77050": { + "latitude": "29.90307", + "longitude": "-95.27004", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4741", + "density": "271.1", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77051": { + "latitude": "29.6562", + "longitude": "-95.38015", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17221", + "density": "908.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77053": { + "latitude": "29.58305", + "longitude": "-95.46032", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31650", + "density": "984.5", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"59.62\", \"48201\": \"40.38\"}", + "countynamesall": "Fort Bend|Harris", + "countyfipsall": "48157|48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77054": { + "latitude": "29.68088", + "longitude": "-95.40494", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23267", + "density": "1604.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77055": { + "latitude": "29.79765", + "longitude": "-95.49173", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "44671", + "density": "2087.0", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77056": { + "latitude": "29.74832", + "longitude": "-95.46803", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22056", + "density": "2461.9", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77057": { + "latitude": "29.74546", + "longitude": "-95.48868", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "41690", + "density": "3784.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77058": { + "latitude": "29.56284", + "longitude": "-95.09287", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16120", + "density": "756.0", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77059": { + "latitude": "29.60764", + "longitude": "-95.12483", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17254", + "density": "676.9", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77060": { + "latitude": "29.93513", + "longitude": "-95.3969", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "45642", + "density": "2144.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77061": { + "latitude": "29.65377", + "longitude": "-95.28423", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26253", + "density": "1277.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77062": { + "latitude": "29.57485", + "longitude": "-95.13148", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26477", + "density": "1884.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77063": { + "latitude": "29.73554", + "longitude": "-95.5216", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39249", + "density": "3307.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77064": { + "latitude": "29.92218", + "longitude": "-95.54706", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48637", + "density": "1275.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77065": { + "latitude": "29.92696", + "longitude": "-95.60376", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37793", + "density": "1777.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77066": { + "latitude": "29.95659", + "longitude": "-95.50204", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35676", + "density": "1599.1", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77067": { + "latitude": "29.95272", + "longitude": "-95.44687", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35227", + "density": "2269.0", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77068": { + "latitude": "30.00596", + "longitude": "-95.48692", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11011", + "density": "1116.5", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77069": { + "latitude": "29.98568", + "longitude": "-95.52439", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19345", + "density": "1559.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77070": { + "latitude": "29.97775", + "longitude": "-95.57315", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "53057", + "density": "1571.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77071": { + "latitude": "29.65295", + "longitude": "-95.52025", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28888", + "density": "2495.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77072": { + "latitude": "29.69965", + "longitude": "-95.585", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "61122", + "density": "3213.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77073": { + "latitude": "29.99986", + "longitude": "-95.39958", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39939", + "density": "1113.5", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77074": { + "latitude": "29.68803", + "longitude": "-95.51626", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40978", + "density": "2906.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77075": { + "latitude": "29.6209", + "longitude": "-95.26714", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "44517", + "density": "1559.5", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77076": { + "latitude": "29.85962", + "longitude": "-95.38351", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36009", + "density": "2912.5", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77077": { + "latitude": "29.75009", + "longitude": "-95.61546", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "59588", + "density": "2630.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77078": { + "latitude": "29.853", + "longitude": "-95.2516", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15663", + "density": "564.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77079": { + "latitude": "29.77627", + "longitude": "-95.60462", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34122", + "density": "1785.1", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77080": { + "latitude": "29.8159", + "longitude": "-95.52401", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "45586", + "density": "2757.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77081": { + "latitude": "29.71203", + "longitude": "-95.48118", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "53031", + "density": "6597.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77082": { + "latitude": "29.72358", + "longitude": "-95.64179", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "55056", + "density": "1699.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77083": { + "latitude": "29.69327", + "longitude": "-95.6489", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "78298", + "density": "2929.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"56\", \"48157\": \"44\"}", + "countynamesall": "Harris|Fort Bend", + "countyfipsall": "48201|48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77084": { + "latitude": "29.82642", + "longitude": "-95.66213", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "107673", + "density": "1356.1", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77085": { + "latitude": "29.62431", + "longitude": "-95.48427", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17991", + "density": "1315.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"97.31\", \"48157\": \"2.69\"}", + "countynamesall": "Harris|Fort Bend", + "countyfipsall": "48201|48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77086": { + "latitude": "29.91819", + "longitude": "-95.49109", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28636", + "density": "1629.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77087": { + "latitude": "29.68613", + "longitude": "-95.30343", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37886", + "density": "2202.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77088": { + "latitude": "29.88181", + "longitude": "-95.45352", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "55734", + "density": "1923.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77089": { + "latitude": "29.58673", + "longitude": "-95.22523", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "54751", + "density": "1598.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77090": { + "latitude": "30.00866", + "longitude": "-95.44393", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40761", + "density": "1914.0", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77091": { + "latitude": "29.85378", + "longitude": "-95.44065", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27750", + "density": "1491.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77092": { + "latitude": "29.82968", + "longitude": "-95.47383", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38458", + "density": "1952.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77093": { + "latitude": "29.86227", + "longitude": "-95.341", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "47135", + "density": "1513.1", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77094": { + "latitude": "29.7621", + "longitude": "-95.67824", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10271", + "density": "349.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77095": { + "latitude": "29.9082", + "longitude": "-95.65322", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "70692", + "density": "1771.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77096": { + "latitude": "29.67475", + "longitude": "-95.47951", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "32682", + "density": "2102.9", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77098": { + "latitude": "29.73487", + "longitude": "-95.41529", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13818", + "density": "3005.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77099": { + "latitude": "29.67079", + "longitude": "-95.58519", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "52294", + "density": "3248.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"95.59\", \"48157\": \"4.41\"}", + "countynamesall": "Harris|Fort Bend", + "countyfipsall": "48201|48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77201": { + "latitude": "29.76601", + "longitude": "-95.36456", + "city": "Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"0\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77301": { + "latitude": "30.30793", + "longitude": "-95.43427", + "city": "Conroe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34169", + "density": "697.9", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77302": { + "latitude": "30.22236", + "longitude": "-95.359", + "city": "Conroe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18658", + "density": "124.3", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77303": { + "latitude": "30.37665", + "longitude": "-95.38136", + "city": "Conroe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "20655", + "density": "129.0", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77304": { + "latitude": "30.32956", + "longitude": "-95.5141", + "city": "Conroe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "33364", + "density": "339.9", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77306": { + "latitude": "30.27974", + "longitude": "-95.31255", + "city": "Conroe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13569", + "density": "126.8", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77316": { + "latitude": "30.31022", + "longitude": "-95.67997", + "city": "Montgomery", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26119", + "density": "79.9", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77318": { + "latitude": "30.44571", + "longitude": "-95.54319", + "city": "Willis", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16303", + "density": "164.1", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77320": { + "latitude": "30.80399", + "longitude": "-95.55092", + "city": "Huntsville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36122", + "density": "43.9", + "countyfips": "48471", + "countyname": "Walker", + "countyweights": "{\"48471\": \"97.06\", \"48407\": \"2.94\"}", + "countynamesall": "Walker|San Jacinto", + "countyfipsall": "48471|48407", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77326": { + "latitude": "30.50488", + "longitude": "-94.81705", + "city": "Ace", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37", + "density": "6.0", + "countyfips": "48373", + "countyname": "Polk", + "countyweights": "{\"48373\": \"100\"}", + "countynamesall": "Polk", + "countyfipsall": "48373", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77327": { + "latitude": "30.32155", + "longitude": "-94.9263", + "city": "Cleveland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23274", + "density": "28.3", + "countyfips": "48291", + "countyname": "Liberty", + "countyweights": "{\"48291\": \"100\"}", + "countynamesall": "Liberty", + "countyfipsall": "48291", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77328": { + "latitude": "30.39628", + "longitude": "-95.19391", + "city": "Cleveland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14438", + "density": "34.3", + "countyfips": "48407", + "countyname": "San Jacinto", + "countyweights": "{\"48407\": \"42.09\", \"48339\": \"42.02\", \"48291\": \"15.89\"}", + "countynamesall": "San Jacinto|Montgomery|Liberty", + "countyfipsall": "48407|48339|48291", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77331": { + "latitude": "30.61649", + "longitude": "-95.16596", + "city": "Coldspring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7971", + "density": "20.1", + "countyfips": "48407", + "countyname": "San Jacinto", + "countyweights": "{\"48407\": \"100\"}", + "countynamesall": "San Jacinto", + "countyfipsall": "48407", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77334": { + "latitude": "30.77998", + "longitude": "-95.36464", + "city": "Dodge", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "358", + "density": "9.6", + "countyfips": "48471", + "countyname": "Walker", + "countyweights": "{\"48471\": \"100\"}", + "countynamesall": "Walker", + "countyfipsall": "48471", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77335": { + "latitude": "30.58762", + "longitude": "-94.92472", + "city": "Goodrich", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2972", + "density": "31.4", + "countyfips": "48373", + "countyname": "Polk", + "countyweights": "{\"48373\": \"100\"}", + "countynamesall": "Polk", + "countyfipsall": "48373", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77336": { + "latitude": "30.06429", + "longitude": "-95.09884", + "city": "Huffman", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13156", + "density": "130.1", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77338": { + "latitude": "30.00678", + "longitude": "-95.29019", + "city": "Humble", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43558", + "density": "633.9", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77339": { + "latitude": "30.04931", + "longitude": "-95.22132", + "city": "Kingwood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40133", + "density": "909.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"80.06\", \"48339\": \"19.94\"}", + "countynamesall": "Harris|Montgomery", + "countyfipsall": "48201|48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77340": { + "latitude": "30.64369", + "longitude": "-95.53981", + "city": "Huntsville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31352", + "density": "55.6", + "countyfips": "48471", + "countyname": "Walker", + "countyweights": "{\"48471\": \"100\"}", + "countynamesall": "Walker", + "countyfipsall": "48471", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77342": { + "latitude": "30.74017", + "longitude": "-95.55393", + "city": "Huntsville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48471", + "countyname": "Walker", + "countyweights": "{\"48471\": \"100\"}", + "countynamesall": "Walker", + "countyfipsall": "48471", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77345": { + "latitude": "30.05416", + "longitude": "-95.15899", + "city": "Kingwood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27993", + "density": "1273.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77346": { + "latitude": "29.99497", + "longitude": "-95.17718", + "city": "Humble", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "66805", + "density": "1484.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77350": { + "latitude": "30.82867", + "longitude": "-94.84797", + "city": "Leggett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "135", + "density": "19.8", + "countyfips": "48373", + "countyname": "Polk", + "countyweights": "{\"48373\": \"100\"}", + "countynamesall": "Polk", + "countyfipsall": "48373", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77351": { + "latitude": "30.7127", + "longitude": "-94.82192", + "city": "Livingston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34366", + "density": "19.8", + "countyfips": "48373", + "countyname": "Polk", + "countyweights": "{\"48373\": \"100\"}", + "countynamesall": "Polk", + "countyfipsall": "48373", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77354": { + "latitude": "30.21107", + "longitude": "-95.64787", + "city": "Magnolia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37058", + "density": "189.2", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77355": { + "latitude": "30.15769", + "longitude": "-95.74805", + "city": "Magnolia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29281", + "density": "198.0", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"95.84\", \"48473\": \"4.16\"}", + "countynamesall": "Montgomery|Waller", + "countyfipsall": "48339|48473", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77356": { + "latitude": "30.45055", + "longitude": "-95.70183", + "city": "Montgomery", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26987", + "density": "80.0", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"99.54\", \"48185\": \"0.46\"}", + "countynamesall": "Montgomery|Grimes", + "countyfipsall": "48339|48185", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77357": { + "latitude": "30.15846", + "longitude": "-95.19112", + "city": "New Caney", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27721", + "density": "170.8", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"97.58\", \"48201\": \"2.42\"}", + "countynamesall": "Montgomery|Harris", + "countyfipsall": "48339|48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77358": { + "latitude": "30.55776", + "longitude": "-95.43502", + "city": "New Waverly", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5565", + "density": "17.4", + "countyfips": "48471", + "countyname": "Walker", + "countyweights": "{\"48471\": \"77.23\", \"48407\": \"15.46\", \"48339\": \"7.31\"}", + "countynamesall": "Walker|San Jacinto|Montgomery", + "countyfipsall": "48471|48407|48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77359": { + "latitude": "30.75385", + "longitude": "-95.29988", + "city": "Oakhurst", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "425", + "density": "3.1", + "countyfips": "48407", + "countyname": "San Jacinto", + "countyweights": "{\"48407\": \"100\"}", + "countynamesall": "San Jacinto", + "countyfipsall": "48407", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77360": { + "latitude": "30.84704", + "longitude": "-95.11402", + "city": "Onalaska", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5115", + "density": "60.1", + "countyfips": "48373", + "countyname": "Polk", + "countyweights": "{\"48373\": \"100\"}", + "countynamesall": "Polk", + "countyfipsall": "48373", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77362": { + "latitude": "30.15825", + "longitude": "-95.66832", + "city": "Pinehurst", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6435", + "density": "301.0", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77363": { + "latitude": "30.32935", + "longitude": "-95.85388", + "city": "Plantersville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2853", + "density": "15.9", + "countyfips": "48185", + "countyname": "Grimes", + "countyweights": "{\"48185\": \"93.7\", \"48473\": \"6.3\"}", + "countynamesall": "Grimes|Waller", + "countyfipsall": "48185|48473", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77364": { + "latitude": "30.76591", + "longitude": "-95.22091", + "city": "Pointblank", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1828", + "density": "23.3", + "countyfips": "48407", + "countyname": "San Jacinto", + "countyweights": "{\"48407\": \"100\"}", + "countynamesall": "San Jacinto", + "countyfipsall": "48407", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77365": { + "latitude": "30.1111", + "longitude": "-95.2675", + "city": "Porter", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36755", + "density": "402.0", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"99.45\", \"48201\": \"0.55\"}", + "countynamesall": "Montgomery|Harris", + "countyfipsall": "48339|48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77367": { + "latitude": "30.85587", + "longitude": "-95.39831", + "city": "Riverside", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "80", + "density": "38.2", + "countyfips": "48471", + "countyname": "Walker", + "countyweights": "{\"48471\": \"100\"}", + "countynamesall": "Walker", + "countyfipsall": "48471", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77368": { + "latitude": "30.45857", + "longitude": "-94.82625", + "city": "Romayor", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "223", + "density": "11.4", + "countyfips": "48291", + "countyname": "Liberty", + "countyweights": "{\"48291\": \"100\"}", + "countynamesall": "Liberty", + "countyfipsall": "48291", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77369": { + "latitude": "30.42364", + "longitude": "-94.7452", + "city": "Rye", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "555", + "density": "5.8", + "countyfips": "48291", + "countyname": "Liberty", + "countyweights": "{\"48291\": \"94.5\", \"48199\": \"5.5\"}", + "countynamesall": "Liberty|Hardin", + "countyfipsall": "48291|48199", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77371": { + "latitude": "30.49363", + "longitude": "-94.99091", + "city": "Shepherd", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8036", + "density": "24.4", + "countyfips": "48407", + "countyname": "San Jacinto", + "countyweights": "{\"48407\": \"99.83\", \"48291\": \"0.17\"}", + "countynamesall": "San Jacinto|Liberty", + "countyfipsall": "48407|48291", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77372": { + "latitude": "30.2408", + "longitude": "-95.16108", + "city": "Splendora", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14116", + "density": "105.1", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"76.82\", \"48291\": \"23.18\"}", + "countynamesall": "Montgomery|Liberty", + "countyfipsall": "48339|48291", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77373": { + "latitude": "30.06145", + "longitude": "-95.38415", + "city": "Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "61501", + "density": "1000.0", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77374": { + "latitude": "30.39595", + "longitude": "-94.62253", + "city": "Thicket", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "536", + "density": "4.0", + "countyfips": "48199", + "countyname": "Hardin", + "countyweights": "{\"48199\": \"100\"}", + "countynamesall": "Hardin", + "countyfipsall": "48199", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77375": { + "latitude": "30.09544", + "longitude": "-95.5894", + "city": "Tomball", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "55759", + "density": "627.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77376": { + "latitude": "30.44803", + "longitude": "-94.67384", + "city": "Votaw", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "569", + "density": "7.1", + "countyfips": "48199", + "countyname": "Hardin", + "countyweights": "{\"48199\": \"100\"}", + "countynamesall": "Hardin", + "countyfipsall": "48199", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77377": { + "latitude": "30.06135", + "longitude": "-95.68201", + "city": "Tomball", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38469", + "density": "379.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77378": { + "latitude": "30.4574", + "longitude": "-95.36867", + "city": "Willis", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17616", + "density": "69.9", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"91.07\", \"48407\": \"8.93\"}", + "countynamesall": "Montgomery|San Jacinto", + "countyfipsall": "48339|48407", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77379": { + "latitude": "30.03912", + "longitude": "-95.53382", + "city": "Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "81368", + "density": "1234.0", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77380": { + "latitude": "30.13645", + "longitude": "-95.46866", + "city": "Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25761", + "density": "801.2", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77381": { + "latitude": "30.17818", + "longitude": "-95.50144", + "city": "Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36160", + "density": "1071.8", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77382": { + "latitude": "30.19804", + "longitude": "-95.54606", + "city": "Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "41581", + "density": "1418.8", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77384": { + "latitude": "30.23494", + "longitude": "-95.49526", + "city": "Conroe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19467", + "density": "430.4", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77385": { + "latitude": "30.18888", + "longitude": "-95.42223", + "city": "Conroe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25160", + "density": "441.6", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77386": { + "latitude": "30.10125", + "longitude": "-95.35584", + "city": "Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "57421", + "density": "547.6", + "countyfips": "48339", + "countyname": "Montgomery", + "countyweights": "{\"48339\": \"100\"}", + "countynamesall": "Montgomery", + "countyfipsall": "48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77388": { + "latitude": "30.05984", + "longitude": "-95.46851", + "city": "Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "50701", + "density": "1412.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77389": { + "latitude": "30.11516", + "longitude": "-95.5075", + "city": "Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38222", + "density": "702.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77396": { + "latitude": "29.94822", + "longitude": "-95.25991", + "city": "Humble", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "58396", + "density": "840.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77401": { + "latitude": "29.70443", + "longitude": "-95.46175", + "city": "Bellaire", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19372", + "density": "2002.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77406": { + "latitude": "29.64359", + "longitude": "-95.79799", + "city": "Richmond", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "49261", + "density": "293.2", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77407": { + "latitude": "29.67651", + "longitude": "-95.71253", + "city": "Richmond", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "60000", + "density": "1224.0", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77412": { + "latitude": "29.555", + "longitude": "-96.42816", + "city": "Altair", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "44", + "density": "2.0", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"100\"}", + "countynamesall": "Colorado", + "countyfipsall": "48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77414": { + "latitude": "28.89958", + "longitude": "-95.88091", + "city": "Bay City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23982", + "density": "17.9", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"100\"}", + "countynamesall": "Matagorda", + "countyfipsall": "48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77415": { + "latitude": "28.93254", + "longitude": "-95.73575", + "city": "Cedar Lane", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "88", + "density": "19.6", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"100\"}", + "countynamesall": "Matagorda", + "countyfipsall": "48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77417": { + "latitude": "29.46457", + "longitude": "-95.96703", + "city": "Beasley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2550", + "density": "16.4", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77418": { + "latitude": "29.97879", + "longitude": "-96.25055", + "city": "Bellville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10537", + "density": "21.4", + "countyfips": "48015", + "countyname": "Austin", + "countyweights": "{\"48015\": \"100\"}", + "countynamesall": "Austin", + "countyfipsall": "48015", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77419": { + "latitude": "28.85073", + "longitude": "-96.2561", + "city": "Blessing", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1253", + "density": "7.7", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"100\"}", + "countynamesall": "Matagorda", + "countyfipsall": "48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77420": { + "latitude": "29.2581", + "longitude": "-95.93008", + "city": "Boling", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2695", + "density": "19.5", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"100\"}", + "countynamesall": "Wharton", + "countyfipsall": "48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77422": { + "latitude": "28.96092", + "longitude": "-95.56105", + "city": "Brazoria", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13194", + "density": "29.8", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"100\"}", + "countynamesall": "Brazoria", + "countyfipsall": "48039", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77423": { + "latitude": "29.83893", + "longitude": "-95.98251", + "city": "Brookshire", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12377", + "density": "33.1", + "countyfips": "48473", + "countyname": "Waller", + "countyweights": "{\"48473\": \"97.09\", \"48157\": \"2.91\"}", + "countynamesall": "Waller|Fort Bend", + "countyfipsall": "48473|48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77426": { + "latitude": "30.11817", + "longitude": "-96.24904", + "city": "Chappell Hill", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2524", + "density": "11.0", + "countyfips": "48477", + "countyname": "Washington", + "countyweights": "{\"48477\": \"93.33\", \"48015\": \"6.67\"}", + "countynamesall": "Washington|Austin", + "countyfipsall": "48477|48015", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77428": { + "latitude": "28.62311", + "longitude": "-96.18975", + "city": "Collegeport", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"100\"}", + "countynamesall": "Matagorda", + "countyfipsall": "48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77429": { + "latitude": "29.99104", + "longitude": "-95.6588", + "city": "Cypress", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "88628", + "density": "893.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77430": { + "latitude": "29.26718", + "longitude": "-95.65366", + "city": "Damon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2078", + "density": "7.2", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"64.96\", \"48157\": \"35.04\"}", + "countynamesall": "Brazoria|Fort Bend", + "countyfipsall": "48039|48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77432": { + "latitude": "29.06993", + "longitude": "-96.19387", + "city": "Danevang", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "47", + "density": "0.7", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"100\"}", + "countynamesall": "Wharton", + "countyfipsall": "48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77433": { + "latitude": "29.94911", + "longitude": "-95.73923", + "city": "Cypress", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "90657", + "density": "599.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77434": { + "latitude": "29.52568", + "longitude": "-96.30214", + "city": "Eagle Lake", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4740", + "density": "9.6", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"89.66\", \"48481\": \"10.34\"}", + "countynamesall": "Colorado|Wharton", + "countyfipsall": "48089|48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77435": { + "latitude": "29.51733", + "longitude": "-96.11114", + "city": "East Bernard", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4031", + "density": "11.1", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"90.5\", \"48157\": \"9.03\", \"48089\": \"0.46\"}", + "countynamesall": "Wharton|Fort Bend|Colorado", + "countyfipsall": "48481|48157|48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77436": { + "latitude": "29.42393", + "longitude": "-96.23226", + "city": "Egypt", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "54", + "density": "3.2", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"100\"}", + "countynamesall": "Wharton", + "countyfipsall": "48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77437": { + "latitude": "29.21304", + "longitude": "-96.28036", + "city": "El Campo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16913", + "density": "20.3", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"100\"}", + "countynamesall": "Wharton", + "countyfipsall": "48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77440": { + "latitude": "28.89492", + "longitude": "-96.15082", + "city": "Elmaton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27", + "density": "2.0", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"100\"}", + "countynamesall": "Matagorda", + "countyfipsall": "48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77441": { + "latitude": "29.66824", + "longitude": "-95.92279", + "city": "Fulshear", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12559", + "density": "110.9", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77442": { + "latitude": "29.42428", + "longitude": "-96.50681", + "city": "Garwood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "996", + "density": "2.0", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"100\"}", + "countynamesall": "Colorado", + "countyfipsall": "48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77443": { + "latitude": "29.34828", + "longitude": "-96.19267", + "city": "Glen Flora", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "300", + "density": "380.5", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"100\"}", + "countynamesall": "Wharton", + "countyfipsall": "48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77444": { + "latitude": "29.28815", + "longitude": "-95.77719", + "city": "Guy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "534", + "density": "5.5", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"67.98\", \"48039\": \"32.02\"}", + "countynamesall": "Fort Bend|Brazoria", + "countyfipsall": "48157|48039", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77445": { + "latitude": "30.09968", + "longitude": "-96.06494", + "city": "Hempstead", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14200", + "density": "31.0", + "countyfips": "48473", + "countyname": "Waller", + "countyweights": "{\"48473\": \"100\"}", + "countynamesall": "Waller", + "countyfipsall": "48473", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77446": { + "latitude": "30.08681", + "longitude": "-95.99051", + "city": "Prairie View", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6520", + "density": "383.8", + "countyfips": "48473", + "countyname": "Waller", + "countyweights": "{\"48473\": \"100\"}", + "countynamesall": "Waller", + "countyfipsall": "48473", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77447": { + "latitude": "30.05124", + "longitude": "-95.83044", + "city": "Hockley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16246", + "density": "62.5", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"58.2\", \"48473\": \"31.78\", \"48339\": \"10.02\"}", + "countynamesall": "Harris|Waller|Montgomery", + "countyfipsall": "48201|48473|48339", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77448": { + "latitude": "29.41534", + "longitude": "-96.08656", + "city": "Hungerford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "131", + "density": "8.0", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"100\"}", + "countynamesall": "Wharton", + "countyfipsall": "48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77449": { + "latitude": "29.83556", + "longitude": "-95.73813", + "city": "Katy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "128294", + "density": "1658.0", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77450": { + "latitude": "29.74629", + "longitude": "-95.73832", + "city": "Katy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "73692", + "density": "1391.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"66.63\", \"48157\": \"33.37\"}", + "countynamesall": "Harris|Fort Bend", + "countyfipsall": "48201|48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77451": { + "latitude": "29.4379", + "longitude": "-96.00165", + "city": "Kendleton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "53", + "density": "17.7", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77453": { + "latitude": "29.21196", + "longitude": "-95.99945", + "city": "Lane City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "393", + "density": "13.1", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"100\"}", + "countynamesall": "Wharton", + "countyfipsall": "48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77454": { + "latitude": "29.52037", + "longitude": "-96.21862", + "city": "Lissie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"100\"}", + "countynamesall": "Wharton", + "countyfipsall": "48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77455": { + "latitude": "29.13955", + "longitude": "-96.43031", + "city": "Louise", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2194", + "density": "4.0", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"98.53\", \"48239\": \"1.47\"}", + "countynamesall": "Wharton|Jackson", + "countyfipsall": "48481|48239", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77456": { + "latitude": "29.00035", + "longitude": "-96.09033", + "city": "Markham", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1384", + "density": "10.2", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"100\"}", + "countynamesall": "Matagorda", + "countyfipsall": "48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77457": { + "latitude": "28.70908", + "longitude": "-95.92228", + "city": "Matagorda", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "488", + "density": "18.6", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"100\"}", + "countynamesall": "Matagorda", + "countyfipsall": "48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77458": { + "latitude": "28.95289", + "longitude": "-96.24036", + "city": "Midfield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "210", + "density": "2.2", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"100\"}", + "countynamesall": "Matagorda", + "countyfipsall": "48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77459": { + "latitude": "29.52565", + "longitude": "-95.53298", + "city": "Missouri City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "72788", + "density": "858.2", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77460": { + "latitude": "29.39744", + "longitude": "-96.38451", + "city": "Nada", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39", + "density": "21.7", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"100\"}", + "countynamesall": "Colorado", + "countyfipsall": "48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77461": { + "latitude": "29.38013", + "longitude": "-95.80672", + "city": "Needville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11447", + "density": "29.9", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77464": { + "latitude": "29.59337", + "longitude": "-95.96175", + "city": "Orchard", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "99", + "density": "20.7", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77465": { + "latitude": "28.76248", + "longitude": "-96.22968", + "city": "Palacios", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7151", + "density": "14.2", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"90.48\", \"48239\": \"8.18\", \"48057\": \"1.34\"}", + "countynamesall": "Matagorda|Jackson|Calhoun", + "countyfipsall": "48321|48239|48057", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77466": { + "latitude": "29.80562", + "longitude": "-96.01287", + "city": "Pattison", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "511", + "density": "17.1", + "countyfips": "48473", + "countyname": "Waller", + "countyweights": "{\"48473\": \"100\"}", + "countynamesall": "Waller", + "countyfipsall": "48473", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77467": { + "latitude": "29.21068", + "longitude": "-96.12324", + "city": "Pierce", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17", + "density": "0.3", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"100\"}", + "countynamesall": "Wharton", + "countyfipsall": "48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77468": { + "latitude": "29.14259", + "longitude": "-95.93111", + "city": "Pledger", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39", + "density": "0.8", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"100\"}", + "countynamesall": "Matagorda", + "countyfipsall": "48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77469": { + "latitude": "29.48", + "longitude": "-95.68313", + "city": "Richmond", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "53992", + "density": "159.5", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77470": { + "latitude": "29.53214", + "longitude": "-96.55145", + "city": "Rock Island", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "374", + "density": "5.1", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"100\"}", + "countynamesall": "Colorado", + "countyfipsall": "48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77471": { + "latitude": "29.54596", + "longitude": "-95.86815", + "city": "Rosenberg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "41212", + "density": "184.3", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77473": { + "latitude": "29.79516", + "longitude": "-96.1077", + "city": "San Felipe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "77", + "density": "253.6", + "countyfips": "48015", + "countyname": "Austin", + "countyweights": "{\"48015\": \"100\"}", + "countynamesall": "Austin", + "countyfipsall": "48015", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77474": { + "latitude": "29.77377", + "longitude": "-96.17926", + "city": "Sealy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12487", + "density": "23.2", + "countyfips": "48015", + "countyname": "Austin", + "countyweights": "{\"48015\": \"100\"}", + "countynamesall": "Austin", + "countyfipsall": "48015", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77475": { + "latitude": "29.49304", + "longitude": "-96.65871", + "city": "Sheridan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "790", + "density": "12.8", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"100\"}", + "countynamesall": "Colorado", + "countyfipsall": "48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77476": { + "latitude": "29.67246", + "longitude": "-95.98329", + "city": "Simonton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "204", + "density": "15.3", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77477": { + "latitude": "29.62571", + "longitude": "-95.56673", + "city": "Stafford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35830", + "density": "1319.1", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"89.44\", \"48201\": \"10.56\"}", + "countynamesall": "Fort Bend|Harris", + "countyfipsall": "48157|48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77478": { + "latitude": "29.61964", + "longitude": "-95.607", + "city": "Sugar Land", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25721", + "density": "1022.6", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77479": { + "latitude": "29.56646", + "longitude": "-95.63557", + "city": "Sugar Land", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "93848", + "density": "1100.0", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77480": { + "latitude": "29.09233", + "longitude": "-95.766", + "city": "Sweeny", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8055", + "density": "21.8", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"95.69\", \"48321\": \"4.31\"}", + "countynamesall": "Brazoria|Matagorda", + "countyfipsall": "48039|48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77481": { + "latitude": "29.47038", + "longitude": "-95.56", + "city": "Thompsons", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35", + "density": "1.7", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77482": { + "latitude": "29.1021", + "longitude": "-95.8802", + "city": "Van Vleck", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1779", + "density": "11.6", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"100\"}", + "countynamesall": "Matagorda", + "countyfipsall": "48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77483": { + "latitude": "28.78761", + "longitude": "-95.83652", + "city": "Wadsworth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "309", + "density": "3.3", + "countyfips": "48321", + "countyname": "Matagorda", + "countyweights": "{\"48321\": \"100\"}", + "countynamesall": "Matagorda", + "countyfipsall": "48321", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77484": { + "latitude": "30.07526", + "longitude": "-95.93087", + "city": "Waller", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10875", + "density": "27.1", + "countyfips": "48473", + "countyname": "Waller", + "countyweights": "{\"48473\": \"78.28\", \"48201\": \"19.73\", \"48185\": \"1.99\"}", + "countynamesall": "Waller|Harris|Grimes", + "countyfipsall": "48473|48201|48185", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77485": { + "latitude": "29.63418", + "longitude": "-96.05612", + "city": "Wallis", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4627", + "density": "21.4", + "countyfips": "48015", + "countyname": "Austin", + "countyweights": "{\"48015\": \"54.76\", \"48157\": \"45.09\", \"48481\": \"0.15\"}", + "countynamesall": "Austin|Fort Bend|Wharton", + "countyfipsall": "48015|48157|48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77486": { + "latitude": "29.15812", + "longitude": "-95.68094", + "city": "West Columbia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7491", + "density": "60.9", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"100\"}", + "countynamesall": "Brazoria", + "countyfipsall": "48039", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77488": { + "latitude": "29.30684", + "longitude": "-96.09126", + "city": "Wharton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14525", + "density": "25.8", + "countyfips": "48481", + "countyname": "Wharton", + "countyweights": "{\"48481\": \"100\"}", + "countynamesall": "Wharton", + "countyfipsall": "48481", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77489": { + "latitude": "29.6006", + "longitude": "-95.5163", + "city": "Missouri City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38242", + "density": "1315.7", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"96.7\", \"48201\": \"3.3\"}", + "countynamesall": "Fort Bend|Harris", + "countyfipsall": "48157|48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77493": { + "latitude": "29.85208", + "longitude": "-95.83094", + "city": "Katy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36334", + "density": "243.1", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"89.18\", \"48473\": \"10.08\", \"48157\": \"0.73\"}", + "countynamesall": "Harris|Waller|Fort Bend", + "countyfipsall": "48201|48473|48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77494": { + "latitude": "29.7433", + "longitude": "-95.82862", + "city": "Katy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "118291", + "density": "1117.8", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"91.69\", \"48201\": \"8.13\", \"48473\": \"0.18\"}", + "countynamesall": "Fort Bend|Harris|Waller", + "countyfipsall": "48157|48201|48473", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77498": { + "latitude": "29.64338", + "longitude": "-95.65236", + "city": "Sugar Land", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "51293", + "density": "1276.7", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77502": { + "latitude": "29.67951", + "longitude": "-95.19976", + "city": "Pasadena", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38199", + "density": "2626.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77503": { + "latitude": "29.70218", + "longitude": "-95.15943", + "city": "Pasadena", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24808", + "density": "1109.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77504": { + "latitude": "29.64802", + "longitude": "-95.18997", + "city": "Pasadena", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24954", + "density": "1742.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77505": { + "latitude": "29.64607", + "longitude": "-95.13825", + "city": "Pasadena", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24223", + "density": "1022.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77506": { + "latitude": "29.7149", + "longitude": "-95.20013", + "city": "Pasadena", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38765", + "density": "1634.3", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77507": { + "latitude": "29.62601", + "longitude": "-95.06443", + "city": "Pasadena", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "312", + "density": "8.6", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"0\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77510": { + "latitude": "29.36107", + "longitude": "-95.08555", + "city": "Santa Fe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14485", + "density": "190.8", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77511": { + "latitude": "29.38147", + "longitude": "-95.24204", + "city": "Alvin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "47556", + "density": "115.8", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"93.88\", \"48167\": \"6.12\"}", + "countynamesall": "Brazoria|Galveston", + "countyfipsall": "48039|48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77514": { + "latitude": "29.68073", + "longitude": "-94.59949", + "city": "Anahuac", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5127", + "density": "9.1", + "countyfips": "48071", + "countyname": "Chambers", + "countyweights": "{\"48071\": \"100\"}", + "countynamesall": "Chambers", + "countyfipsall": "48071", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77515": { + "latitude": "29.17436", + "longitude": "-95.44993", + "city": "Angleton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "32469", + "density": "61.1", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"100\"}", + "countynamesall": "Brazoria", + "countyfipsall": "48039", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77517": { + "latitude": "29.36962", + "longitude": "-95.13221", + "city": "Santa Fe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5677", + "density": "108.7", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77518": { + "latitude": "29.50703", + "longitude": "-94.98696", + "city": "Bacliff", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10856", + "density": "1445.6", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77519": { + "latitude": "30.23425", + "longitude": "-94.60224", + "city": "Batson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1066", + "density": "9.9", + "countyfips": "48199", + "countyname": "Hardin", + "countyweights": "{\"48199\": \"100\"}", + "countynamesall": "Hardin", + "countyfipsall": "48199", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77520": { + "latitude": "29.73895", + "longitude": "-94.99829", + "city": "Baytown", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35350", + "density": "570.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77521": { + "latitude": "29.79848", + "longitude": "-94.96591", + "city": "Baytown", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "60164", + "density": "559.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"94.09\", \"48071\": \"5.91\"}", + "countynamesall": "Harris|Chambers", + "countyfipsall": "48201|48071", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77523": { + "latitude": "29.78789", + "longitude": "-94.86717", + "city": "Baytown", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23501", + "density": "100.8", + "countyfips": "48071", + "countyname": "Chambers", + "countyweights": "{\"48071\": \"100\"}", + "countynamesall": "Chambers", + "countyfipsall": "48071", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77530": { + "latitude": "29.78836", + "longitude": "-95.11149", + "city": "Channelview", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "33437", + "density": "977.9", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77531": { + "latitude": "29.04935", + "longitude": "-95.39242", + "city": "Clute", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16228", + "density": "317.3", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"100\"}", + "countynamesall": "Brazoria", + "countyfipsall": "48039", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77532": { + "latitude": "29.93018", + "longitude": "-95.05654", + "city": "Crosby", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29963", + "density": "147.5", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77533": { + "latitude": "30.09162", + "longitude": "-94.59604", + "city": "Daisetta", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "938", + "density": "14.1", + "countyfips": "48291", + "countyname": "Liberty", + "countyweights": "{\"48291\": \"100\"}", + "countynamesall": "Liberty", + "countyfipsall": "48291", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77534": { + "latitude": "29.22632", + "longitude": "-95.30893", + "city": "Danbury", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2256", + "density": "24.2", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"100\"}", + "countynamesall": "Brazoria", + "countyfipsall": "48039", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77535": { + "latitude": "30.05703", + "longitude": "-94.91786", + "city": "Dayton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34537", + "density": "42.5", + "countyfips": "48291", + "countyname": "Liberty", + "countyweights": "{\"48291\": \"94.35\", \"48071\": \"5.65\"}", + "countynamesall": "Liberty|Chambers", + "countyfipsall": "48291|48071", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77536": { + "latitude": "29.69839", + "longitude": "-95.12128", + "city": "Deer Park", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "32146", + "density": "988.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77538": { + "latitude": "29.99154", + "longitude": "-94.53111", + "city": "Devers", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1042", + "density": "2.8", + "countyfips": "48291", + "countyname": "Liberty", + "countyweights": "{\"48291\": \"100\"}", + "countynamesall": "Liberty", + "countyfipsall": "48291", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77539": { + "latitude": "29.456", + "longitude": "-95.03172", + "city": "Dickinson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "46032", + "density": "352.8", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77541": { + "latitude": "29.02696", + "longitude": "-95.3112", + "city": "Freeport", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18609", + "density": "59.1", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"100\"}", + "countynamesall": "Brazoria", + "countyfipsall": "48039", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77545": { + "latitude": "29.53635", + "longitude": "-95.47456", + "city": "Fresno", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25226", + "density": "796.5", + "countyfips": "48157", + "countyname": "Fort Bend", + "countyweights": "{\"48157\": \"100\"}", + "countynamesall": "Fort Bend", + "countyfipsall": "48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77546": { + "latitude": "29.51493", + "longitude": "-95.19218", + "city": "Friendswood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "53623", + "density": "785.6", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"53.56\", \"48201\": \"46.44\"}", + "countynamesall": "Galveston|Harris", + "countyfipsall": "48167|48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77547": { + "latitude": "29.73604", + "longitude": "-95.23785", + "city": "Galena Park", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9925", + "density": "1436.9", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77550": { + "latitude": "29.3098", + "longitude": "-94.77746", + "city": "Galveston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21863", + "density": "1124.4", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77551": { + "latitude": "29.27872", + "longitude": "-94.83323", + "city": "Galveston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21929", + "density": "2222.3", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77554": { + "latitude": "29.2456", + "longitude": "-94.92348", + "city": "Galveston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8556", + "density": "93.6", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77560": { + "latitude": "29.87662", + "longitude": "-94.59323", + "city": "Hankamer", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "337", + "density": "4.2", + "countyfips": "48071", + "countyname": "Chambers", + "countyweights": "{\"48071\": \"98.81\", \"48291\": \"1.19\"}", + "countynamesall": "Chambers|Liberty", + "countyfipsall": "48071|48291", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77561": { + "latitude": "30.16651", + "longitude": "-94.73547", + "city": "Hardin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "103", + "density": "73.2", + "countyfips": "48291", + "countyname": "Liberty", + "countyweights": "{\"48291\": \"100\"}", + "countynamesall": "Liberty", + "countyfipsall": "48291", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77562": { + "latitude": "29.83106", + "longitude": "-95.05353", + "city": "Highlands", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10680", + "density": "277.9", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77563": { + "latitude": "29.29417", + "longitude": "-95.03031", + "city": "Hitchcock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11027", + "density": "81.0", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77564": { + "latitude": "30.20361", + "longitude": "-94.66743", + "city": "Hull", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1888", + "density": "13.9", + "countyfips": "48291", + "countyname": "Liberty", + "countyweights": "{\"48291\": \"93.46\", \"48199\": \"6.54\"}", + "countynamesall": "Liberty|Hardin", + "countyfipsall": "48291|48199", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77565": { + "latitude": "29.53619", + "longitude": "-95.03021", + "city": "Kemah", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8650", + "density": "876.4", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77566": { + "latitude": "29.05026", + "longitude": "-95.47542", + "city": "Lake Jackson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29436", + "density": "480.2", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"100\"}", + "countynamesall": "Brazoria", + "countyfipsall": "48039", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77568": { + "latitude": "29.36383", + "longitude": "-94.97975", + "city": "La Marque", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15680", + "density": "480.9", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77571": { + "latitude": "29.69052", + "longitude": "-95.05359", + "city": "La Porte", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37427", + "density": "413.4", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77573": { + "latitude": "29.50205", + "longitude": "-95.08652", + "city": "League City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "88131", + "density": "1128.9", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77575": { + "latitude": "30.07534", + "longitude": "-94.73395", + "city": "Liberty", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16884", + "density": "27.2", + "countyfips": "48291", + "countyname": "Liberty", + "countyweights": "{\"48291\": \"99.74\", \"48071\": \"0.26\"}", + "countynamesall": "Liberty|Chambers", + "countyfipsall": "48291|48071", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77577": { + "latitude": "29.27976", + "longitude": "-95.27872", + "city": "Liverpool", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1481", + "density": "28.7", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"100\"}", + "countynamesall": "Brazoria", + "countyfipsall": "48039", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77578": { + "latitude": "29.48132", + "longitude": "-95.36559", + "city": "Manvel", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22527", + "density": "232.9", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"100\"}", + "countynamesall": "Brazoria", + "countyfipsall": "48039", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77580": { + "latitude": "29.8676", + "longitude": "-94.86923", + "city": "Mont Belvieu", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1099", + "density": "137.1", + "countyfips": "48071", + "countyname": "Chambers", + "countyweights": "{\"48071\": \"100\"}", + "countynamesall": "Chambers", + "countyfipsall": "48071", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77581": { + "latitude": "29.56048", + "longitude": "-95.27753", + "city": "Pearland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48438", + "density": "725.5", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"90.93\", \"48201\": \"9.07\"}", + "countynamesall": "Brazoria|Harris", + "countyfipsall": "48039|48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77583": { + "latitude": "29.38137", + "longitude": "-95.46219", + "city": "Rosharon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40514", + "density": "93.7", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"77.39\", \"48157\": \"22.61\"}", + "countynamesall": "Brazoria|Fort Bend", + "countyfipsall": "48039|48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77584": { + "latitude": "29.546", + "longitude": "-95.35081", + "city": "Pearland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "90372", + "density": "1087.2", + "countyfips": "48039", + "countyname": "Brazoria", + "countyweights": "{\"48039\": \"98.97\", \"48157\": \"1.03\"}", + "countynamesall": "Brazoria|Fort Bend", + "countyfipsall": "48039|48157", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77585": { + "latitude": "30.29552", + "longitude": "-94.52242", + "city": "Saratoga", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "986", + "density": "3.6", + "countyfips": "48199", + "countyname": "Hardin", + "countyweights": "{\"48199\": \"100\"}", + "countynamesall": "Hardin", + "countyfipsall": "48199", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77586": { + "latitude": "29.58428", + "longitude": "-95.03611", + "city": "Seabrook", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22548", + "density": "670.2", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77587": { + "latitude": "29.66108", + "longitude": "-95.22955", + "city": "South Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16928", + "density": "2207.8", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77590": { + "latitude": "29.39095", + "longitude": "-94.91973", + "city": "Texas City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31604", + "density": "691.5", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77591": { + "latitude": "29.39941", + "longitude": "-94.99751", + "city": "Texas City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14936", + "density": "534.0", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77597": { + "latitude": "29.83708", + "longitude": "-94.70221", + "city": "Wallisville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "986", + "density": "17.5", + "countyfips": "48071", + "countyname": "Chambers", + "countyweights": "{\"48071\": \"100\"}", + "countynamesall": "Chambers", + "countyfipsall": "48071", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77598": { + "latitude": "29.53784", + "longitude": "-95.13685", + "city": "Webster", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26460", + "density": "843.7", + "countyfips": "48201", + "countyname": "Harris", + "countyweights": "{\"48201\": \"100\"}", + "countynamesall": "Harris", + "countyfipsall": "48201", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77611": { + "latitude": "30.0132", + "longitude": "-93.82257", + "city": "Bridge City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8578", + "density": "137.4", + "countyfips": "48361", + "countyname": "Orange", + "countyweights": "{\"48361\": \"100\"}", + "countynamesall": "Orange", + "countyfipsall": "48361", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77612": { + "latitude": "30.40615", + "longitude": "-93.92573", + "city": "Buna", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9408", + "density": "10.5", + "countyfips": "48241", + "countyname": "Jasper", + "countyweights": "{\"48241\": \"91.81\", \"48351\": \"8.19\"}", + "countynamesall": "Jasper|Newton", + "countyfipsall": "48241|48351", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77613": { + "latitude": "30.04723", + "longitude": "-94.35561", + "city": "China", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1097", + "density": "11.1", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77614": { + "latitude": "30.30478", + "longitude": "-93.76105", + "city": "Deweyville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "265", + "density": "10.0", + "countyfips": "48351", + "countyname": "Newton", + "countyweights": "{\"48351\": \"100\"}", + "countynamesall": "Newton", + "countyfipsall": "48351", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77615": { + "latitude": "30.32407", + "longitude": "-94.05969", + "city": "Evadale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1084", + "density": "27.6", + "countyfips": "48241", + "countyname": "Jasper", + "countyweights": "{\"48241\": \"100\"}", + "countynamesall": "Jasper", + "countyfipsall": "48241", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77616": { + "latitude": "30.56777", + "longitude": "-94.17998", + "city": "Fred", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "511", + "density": "3.8", + "countyfips": "48457", + "countyname": "Tyler", + "countyweights": "{\"48457\": \"100\"}", + "countynamesall": "Tyler", + "countyfipsall": "48457", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77617": { + "latitude": "29.50649", + "longitude": "-94.52151", + "city": "Gilchrist", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "66", + "density": "4.4", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77619": { + "latitude": "29.94724", + "longitude": "-93.91851", + "city": "Groves", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15662", + "density": "1012.7", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77622": { + "latitude": "29.85997", + "longitude": "-94.29897", + "city": "Hamshire", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1439", + "density": "24.8", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77623": { + "latitude": "29.55988", + "longitude": "-94.41714", + "city": "High Island", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "648", + "density": "15.9", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77624": { + "latitude": "30.68372", + "longitude": "-94.29168", + "city": "Hillister", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "609", + "density": "3.9", + "countyfips": "48457", + "countyname": "Tyler", + "countyweights": "{\"48457\": \"100\"}", + "countynamesall": "Tyler", + "countyfipsall": "48457", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77625": { + "latitude": "30.37575", + "longitude": "-94.37899", + "city": "Kountze", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9761", + "density": "12.2", + "countyfips": "48199", + "countyname": "Hardin", + "countyweights": "{\"48199\": \"100\"}", + "countynamesall": "Hardin", + "countyfipsall": "48199", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77627": { + "latitude": "29.98742", + "longitude": "-94.00907", + "city": "Nederland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21698", + "density": "792.1", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77629": { + "latitude": "29.97774", + "longitude": "-94.40228", + "city": "Nome", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "786", + "density": "4.8", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77630": { + "latitude": "30.0711", + "longitude": "-93.86461", + "city": "Orange", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28925", + "density": "123.3", + "countyfips": "48361", + "countyname": "Orange", + "countyweights": "{\"48361\": \"100\"}", + "countynamesall": "Orange", + "countyfipsall": "48361", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77632": { + "latitude": "30.20328", + "longitude": "-93.80512", + "city": "Orange", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22903", + "density": "66.9", + "countyfips": "48361", + "countyname": "Orange", + "countyweights": "{\"48361\": \"89.6\", \"48351\": \"10.4\"}", + "countynamesall": "Orange|Newton", + "countyfipsall": "48361|48351", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77640": { + "latitude": "29.88111", + "longitude": "-93.94105", + "city": "Port Arthur", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15706", + "density": "157.3", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77642": { + "latitude": "29.93921", + "longitude": "-93.91601", + "city": "Port Arthur", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39202", + "density": "768.8", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77650": { + "latitude": "29.4276", + "longitude": "-94.68586", + "city": "Port Bolivar", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1835", + "density": "33.7", + "countyfips": "48167", + "countyname": "Galveston", + "countyweights": "{\"48167\": \"100\"}", + "countynamesall": "Galveston", + "countyfipsall": "48167", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77651": { + "latitude": "29.98507", + "longitude": "-93.95605", + "city": "Port Neches", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12782", + "density": "398.6", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77655": { + "latitude": "29.71322", + "longitude": "-93.95371", + "city": "Sabine Pass", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "213", + "density": "1.7", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77656": { + "latitude": "30.41587", + "longitude": "-94.17206", + "city": "Silsbee", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16524", + "density": "40.6", + "countyfips": "48199", + "countyname": "Hardin", + "countyweights": "{\"48199\": \"98.69\", \"48457\": \"1.31\"}", + "countynamesall": "Hardin|Tyler", + "countyfipsall": "48199|48457", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77657": { + "latitude": "30.2256", + "longitude": "-94.19614", + "city": "Lumberton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21345", + "density": "128.6", + "countyfips": "48199", + "countyname": "Hardin", + "countyweights": "{\"48199\": \"100\"}", + "countynamesall": "Hardin", + "countyfipsall": "48199", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77659": { + "latitude": "30.15814", + "longitude": "-94.43521", + "city": "Sour Lake", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5326", + "density": "17.6", + "countyfips": "48199", + "countyname": "Hardin", + "countyweights": "{\"48199\": \"100\"}", + "countynamesall": "Hardin", + "countyfipsall": "48199", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77660": { + "latitude": "30.64628", + "longitude": "-94.14546", + "city": "Spurger", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1057", + "density": "7.3", + "countyfips": "48457", + "countyname": "Tyler", + "countyweights": "{\"48457\": \"100\"}", + "countynamesall": "Tyler", + "countyfipsall": "48457", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77661": { + "latitude": "29.73465", + "longitude": "-94.41377", + "city": "Stowell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "671", + "density": "6.4", + "countyfips": "48071", + "countyname": "Chambers", + "countyweights": "{\"48071\": \"100\"}", + "countynamesall": "Chambers", + "countyfipsall": "48071", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77662": { + "latitude": "30.17843", + "longitude": "-94.01841", + "city": "Vidor", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26277", + "density": "72.9", + "countyfips": "48361", + "countyname": "Orange", + "countyweights": "{\"48361\": \"97.71\", \"48241\": \"2.29\"}", + "countynamesall": "Orange|Jasper", + "countyfipsall": "48361|48241", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77663": { + "latitude": "30.51239", + "longitude": "-94.39544", + "city": "Village Mills", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1014", + "density": "18.1", + "countyfips": "48199", + "countyname": "Hardin", + "countyweights": "{\"48199\": \"61.27\", \"48457\": \"38.73\"}", + "countynamesall": "Hardin|Tyler", + "countyfipsall": "48199|48457", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77664": { + "latitude": "30.59999", + "longitude": "-94.41637", + "city": "Warren", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2939", + "density": "7.0", + "countyfips": "48457", + "countyname": "Tyler", + "countyweights": "{\"48457\": \"100\"}", + "countynamesall": "Tyler", + "countyfipsall": "48457", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77665": { + "latitude": "29.81685", + "longitude": "-94.41658", + "city": "Winnie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6152", + "density": "17.6", + "countyfips": "48071", + "countyname": "Chambers", + "countyweights": "{\"48071\": \"82.78\", \"48245\": \"17.22\"}", + "countynamesall": "Chambers|Jefferson", + "countyfipsall": "48071|48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77701": { + "latitude": "30.07314", + "longitude": "-94.106", + "city": "Beaumont", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13480", + "density": "753.8", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77702": { + "latitude": "30.08626", + "longitude": "-94.12829", + "city": "Beaumont", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3225", + "density": "1005.3", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77703": { + "latitude": "30.12828", + "longitude": "-94.1174", + "city": "Beaumont", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13823", + "density": "401.0", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77705": { + "latitude": "29.9046", + "longitude": "-94.16146", + "city": "Beaumont", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39236", + "density": "63.9", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77706": { + "latitude": "30.09973", + "longitude": "-94.17074", + "city": "Beaumont", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29474", + "density": "1008.4", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77707": { + "latitude": "30.05295", + "longitude": "-94.17654", + "city": "Beaumont", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18335", + "density": "479.0", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77708": { + "latitude": "30.14475", + "longitude": "-94.16484", + "city": "Beaumont", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12536", + "density": "683.9", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77713": { + "latitude": "30.06086", + "longitude": "-94.25397", + "city": "Beaumont", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14238", + "density": "55.2", + "countyfips": "48245", + "countyname": "Jefferson", + "countyweights": "{\"48245\": \"100\"}", + "countynamesall": "Jefferson", + "countyfipsall": "48245", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77801": { + "latitude": "30.63888", + "longitude": "-96.36343", + "city": "Bryan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15068", + "density": "1810.6", + "countyfips": "48041", + "countyname": "Brazos", + "countyweights": "{\"48041\": \"100\"}", + "countynamesall": "Brazos", + "countyfipsall": "48041", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77802": { + "latitude": "30.66126", + "longitude": "-96.32265", + "city": "Bryan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25621", + "density": "842.3", + "countyfips": "48041", + "countyname": "Brazos", + "countyweights": "{\"48041\": \"100\"}", + "countynamesall": "Brazos", + "countyfipsall": "48041", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77803": { + "latitude": "30.68077", + "longitude": "-96.38545", + "city": "Bryan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "32946", + "density": "989.8", + "countyfips": "48041", + "countyname": "Brazos", + "countyweights": "{\"48041\": \"100\"}", + "countynamesall": "Brazos", + "countyfipsall": "48041", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77807": { + "latitude": "30.67879", + "longitude": "-96.48006", + "city": "Bryan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11564", + "density": "46.4", + "countyfips": "48041", + "countyname": "Brazos", + "countyweights": "{\"48041\": \"93.5\", \"48395\": \"6.5\"}", + "countynamesall": "Brazos|Robertson", + "countyfipsall": "48041|48395", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77808": { + "latitude": "30.78934", + "longitude": "-96.31434", + "city": "Bryan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12013", + "density": "18.5", + "countyfips": "48041", + "countyname": "Brazos", + "countyweights": "{\"48041\": \"94.48\", \"48395\": \"5.52\"}", + "countynamesall": "Brazos|Robertson", + "countyfipsall": "48041|48395", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77830": { + "latitude": "30.52414", + "longitude": "-96.01185", + "city": "Anderson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3101", + "density": "6.3", + "countyfips": "48185", + "countyname": "Grimes", + "countyweights": "{\"48185\": \"100\"}", + "countynamesall": "Grimes", + "countyfipsall": "48185", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77831": { + "latitude": "30.72848", + "longitude": "-95.90476", + "city": "Bedias", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3179", + "density": "5.6", + "countyfips": "48185", + "countyname": "Grimes", + "countyweights": "{\"48185\": \"87.62\", \"48471\": \"12.38\"}", + "countynamesall": "Grimes|Walker", + "countyfipsall": "48185|48471", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77833": { + "latitude": "30.21068", + "longitude": "-96.40705", + "city": "Brenham", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29345", + "density": "36.1", + "countyfips": "48477", + "countyname": "Washington", + "countyweights": "{\"48477\": \"98.75\", \"48015\": \"1.25\"}", + "countynamesall": "Washington|Austin", + "countyfipsall": "48477|48015", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77835": { + "latitude": "30.1917", + "longitude": "-96.595", + "city": "Burton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2330", + "density": "8.0", + "countyfips": "48477", + "countyname": "Washington", + "countyweights": "{\"48477\": \"96.85\", \"48015\": \"3.15\"}", + "countynamesall": "Washington|Austin", + "countyfipsall": "48477|48015", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77836": { + "latitude": "30.5375", + "longitude": "-96.68003", + "city": "Caldwell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12077", + "density": "10.6", + "countyfips": "48051", + "countyname": "Burleson", + "countyweights": "{\"48051\": \"99.53\", \"48331\": \"0.47\"}", + "countynamesall": "Burleson|Milam", + "countyfipsall": "48051|48331", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77837": { + "latitude": "31.00731", + "longitude": "-96.68717", + "city": "Calvert", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1922", + "density": "7.1", + "countyfips": "48395", + "countyname": "Robertson", + "countyweights": "{\"48395\": \"100\"}", + "countynamesall": "Robertson", + "countyfipsall": "48395", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77840": { + "latitude": "30.60908", + "longitude": "-96.32601", + "city": "College Station", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "59371", + "density": "2046.4", + "countyfips": "48041", + "countyname": "Brazos", + "countyweights": "{\"48041\": \"100\"}", + "countynamesall": "Brazos", + "countyfipsall": "48041", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77845": { + "latitude": "30.56253", + "longitude": "-96.27564", + "city": "College Station", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "66649", + "density": "173.6", + "countyfips": "48041", + "countyname": "Brazos", + "countyweights": "{\"48041\": \"100\"}", + "countynamesall": "Brazos", + "countyfipsall": "48041", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77853": { + "latitude": "30.36444", + "longitude": "-96.84281", + "city": "Dime Box", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1059", + "density": "8.1", + "countyfips": "48287", + "countyname": "Lee", + "countyweights": "{\"48287\": \"100\"}", + "countynamesall": "Lee", + "countyfipsall": "48287", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77855": { + "latitude": "31.1455", + "longitude": "-96.14068", + "city": "Flynn", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "224", + "density": "3.4", + "countyfips": "48289", + "countyname": "Leon", + "countyweights": "{\"48289\": \"100\"}", + "countynamesall": "Leon", + "countyfipsall": "48289", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77856": { + "latitude": "31.07333", + "longitude": "-96.42385", + "city": "Franklin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5246", + "density": "5.2", + "countyfips": "48395", + "countyname": "Robertson", + "countyweights": "{\"48395\": \"100\"}", + "countynamesall": "Robertson", + "countyfipsall": "48395", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77857": { + "latitude": "30.78439", + "longitude": "-96.70859", + "city": "Gause", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "792", + "density": "5.0", + "countyfips": "48331", + "countyname": "Milam", + "countyweights": "{\"48331\": \"100\"}", + "countynamesall": "Milam", + "countyfipsall": "48331", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77859": { + "latitude": "30.86932", + "longitude": "-96.51734", + "city": "Hearne", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6750", + "density": "15.4", + "countyfips": "48395", + "countyname": "Robertson", + "countyweights": "{\"48395\": \"93.54\", \"48041\": \"6.46\"}", + "countynamesall": "Robertson|Brazos", + "countyfipsall": "48395|48041", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77861": { + "latitude": "30.72741", + "longitude": "-96.09598", + "city": "Iola", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2203", + "density": "6.7", + "countyfips": "48185", + "countyname": "Grimes", + "countyweights": "{\"48185\": \"100\"}", + "countynamesall": "Grimes", + "countyfipsall": "48185", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77864": { + "latitude": "30.95416", + "longitude": "-95.90558", + "city": "Madisonville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7562", + "density": "14.6", + "countyfips": "48313", + "countyname": "Madison", + "countyweights": "{\"48313\": \"100\"}", + "countynamesall": "Madison", + "countyfipsall": "48313", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77865": { + "latitude": "31.23034", + "longitude": "-96.2281", + "city": "Marquez", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2440", + "density": "6.7", + "countyfips": "48289", + "countyname": "Leon", + "countyweights": "{\"48289\": \"100\"}", + "countynamesall": "Leon", + "countyfipsall": "48289", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77867": { + "latitude": "30.74124", + "longitude": "-96.5444", + "city": "Mumford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "106", + "density": "3.2", + "countyfips": "48395", + "countyname": "Robertson", + "countyweights": "{\"48395\": \"100\"}", + "countynamesall": "Robertson", + "countyfipsall": "48395", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77868": { + "latitude": "30.36859", + "longitude": "-96.0616", + "city": "Navasota", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17142", + "density": "24.4", + "countyfips": "48185", + "countyname": "Grimes", + "countyweights": "{\"48185\": \"91.98\", \"48041\": \"7.65\", \"48473\": \"0.2\", \"48477\": \"0.17\"}", + "countynamesall": "Grimes|Brazos|Waller|Washington", + "countyfipsall": "48185|48041|48473|48477", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77871": { + "latitude": "31.05102", + "longitude": "-96.11752", + "city": "Normangee", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2738", + "density": "5.3", + "countyfips": "48289", + "countyname": "Leon", + "countyweights": "{\"48289\": \"80.23\", \"48313\": \"19.77\"}", + "countynamesall": "Leon|Madison", + "countyfipsall": "48289|48313", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77872": { + "latitude": "30.88687", + "longitude": "-96.11025", + "city": "North Zulch", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1879", + "density": "9.6", + "countyfips": "48313", + "countyname": "Madison", + "countyweights": "{\"48313\": \"100\"}", + "countynamesall": "Madison", + "countyfipsall": "48313", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77873": { + "latitude": "30.57425", + "longitude": "-95.81288", + "city": "Richards", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1200", + "density": "5.7", + "countyfips": "48185", + "countyname": "Grimes", + "countyweights": "{\"48185\": \"54.33\", \"48339\": \"27.17\", \"48471\": \"18.5\"}", + "countynamesall": "Grimes|Montgomery|Walker", + "countyfipsall": "48185|48339|48471", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77876": { + "latitude": "30.59729", + "longitude": "-95.87444", + "city": "Shiro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "123", + "density": "4.6", + "countyfips": "48185", + "countyname": "Grimes", + "countyweights": "{\"48185\": \"100\"}", + "countynamesall": "Grimes", + "countyfipsall": "48185", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77878": { + "latitude": "30.47152", + "longitude": "-96.43601", + "city": "Snook", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "317", + "density": "4.9", + "countyfips": "48051", + "countyname": "Burleson", + "countyweights": "{\"48051\": \"100\"}", + "countynamesall": "Burleson", + "countyfipsall": "48051", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77879": { + "latitude": "30.39927", + "longitude": "-96.49695", + "city": "Somerville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5621", + "density": "11.6", + "countyfips": "48051", + "countyname": "Burleson", + "countyweights": "{\"48051\": \"100\"}", + "countynamesall": "Burleson", + "countyfipsall": "48051", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77880": { + "latitude": "30.28141", + "longitude": "-96.18401", + "city": "Washington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1438", + "density": "5.8", + "countyfips": "48477", + "countyname": "Washington", + "countyweights": "{\"48477\": \"100\"}", + "countynamesall": "Washington", + "countyfipsall": "48477", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77901": { + "latitude": "28.80495", + "longitude": "-96.98474", + "city": "Victoria", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43052", + "density": "840.0", + "countyfips": "48469", + "countyname": "Victoria", + "countyweights": "{\"48469\": \"100\"}", + "countynamesall": "Victoria", + "countyfipsall": "48469", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77904": { + "latitude": "28.92334", + "longitude": "-97.01818", + "city": "Victoria", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28202", + "density": "90.3", + "countyfips": "48469", + "countyname": "Victoria", + "countyweights": "{\"48469\": \"100\"}", + "countynamesall": "Victoria", + "countyfipsall": "48469", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77905": { + "latitude": "28.73132", + "longitude": "-97.04241", + "city": "Victoria", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14834", + "density": "13.6", + "countyfips": "48469", + "countyname": "Victoria", + "countyweights": "{\"48469\": \"93.23\", \"48175\": \"6.77\"}", + "countynamesall": "Victoria|Goliad", + "countyfipsall": "48469|48175", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77950": { + "latitude": "28.30141", + "longitude": "-96.87481", + "city": "Austwell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "170", + "density": "0.8", + "countyfips": "48391", + "countyname": "Refugio", + "countyweights": "{\"48391\": \"96.45\", \"48007\": \"3.55\"}", + "countynamesall": "Refugio|Aransas", + "countyfipsall": "48391|48007", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77951": { + "latitude": "28.63416", + "longitude": "-96.91088", + "city": "Bloomington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1809", + "density": "29.6", + "countyfips": "48469", + "countyname": "Victoria", + "countyweights": "{\"48469\": \"100\"}", + "countynamesall": "Victoria", + "countyfipsall": "48469", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77954": { + "latitude": "29.09675", + "longitude": "-97.28269", + "city": "Cuero", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11478", + "density": "12.0", + "countyfips": "48123", + "countyname": "DeWitt", + "countyweights": "{\"48123\": \"99.86\", \"48177\": \"0.14\"}", + "countynamesall": "DeWitt|Gonzales", + "countyfipsall": "48123|48177", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77957": { + "latitude": "29.03767", + "longitude": "-96.70041", + "city": "Edna", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8735", + "density": "8.9", + "countyfips": "48239", + "countyname": "Jackson", + "countyweights": "{\"48239\": \"100\"}", + "countynamesall": "Jackson", + "countyfipsall": "48239", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77960": { + "latitude": "28.6691", + "longitude": "-97.20818", + "city": "Fannin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "65", + "density": "1.5", + "countyfips": "48175", + "countyname": "Goliad", + "countyweights": "{\"48175\": \"100\"}", + "countynamesall": "Goliad", + "countyfipsall": "48175", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77961": { + "latitude": "28.85739", + "longitude": "-96.36151", + "city": "Francitas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "178", + "density": "1.7", + "countyfips": "48239", + "countyname": "Jackson", + "countyweights": "{\"48239\": \"100\"}", + "countynamesall": "Jackson", + "countyfipsall": "48239", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77962": { + "latitude": "29.02264", + "longitude": "-96.48946", + "city": "Ganado", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3654", + "density": "8.6", + "countyfips": "48239", + "countyname": "Jackson", + "countyweights": "{\"48239\": \"100\"}", + "countynamesall": "Jackson", + "countyfipsall": "48239", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77963": { + "latitude": "28.65701", + "longitude": "-97.41547", + "city": "Goliad", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5855", + "density": "3.5", + "countyfips": "48175", + "countyname": "Goliad", + "countyweights": "{\"48175\": \"100\"}", + "countynamesall": "Goliad", + "countyfipsall": "48175", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77964": { + "latitude": "29.37701", + "longitude": "-96.84377", + "city": "Hallettsville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8395", + "density": "5.6", + "countyfips": "48285", + "countyname": "Lavaca", + "countyweights": "{\"48285\": \"99.31\", \"48089\": \"0.69\"}", + "countynamesall": "Lavaca|Colorado", + "countyfipsall": "48285|48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77968": { + "latitude": "28.90923", + "longitude": "-96.84712", + "city": "Inez", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3214", + "density": "6.9", + "countyfips": "48469", + "countyname": "Victoria", + "countyweights": "{\"48469\": \"100\"}", + "countynamesall": "Victoria", + "countyfipsall": "48469", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77969": { + "latitude": "28.77244", + "longitude": "-96.65117", + "city": "La Salle", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "246", + "density": "3.3", + "countyfips": "48239", + "countyname": "Jackson", + "countyweights": "{\"48239\": \"100\"}", + "countynamesall": "Jackson", + "countyfipsall": "48239", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77970": { + "latitude": "28.8447", + "longitude": "-96.43443", + "city": "La Ward", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "429", + "density": "3.7", + "countyfips": "48239", + "countyname": "Jackson", + "countyweights": "{\"48239\": \"100\"}", + "countynamesall": "Jackson", + "countyfipsall": "48239", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77971": { + "latitude": "28.83222", + "longitude": "-96.52192", + "city": "Lolita", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "792", + "density": "5.0", + "countyfips": "48239", + "countyname": "Jackson", + "countyweights": "{\"48239\": \"100\"}", + "countynamesall": "Jackson", + "countyfipsall": "48239", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77973": { + "latitude": "28.54326", + "longitude": "-96.96374", + "city": "Mcfaddin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27", + "density": "0.2", + "countyfips": "48469", + "countyname": "Victoria", + "countyweights": "{\"48469\": \"100\"}", + "countynamesall": "Victoria", + "countyfipsall": "48469", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77974": { + "latitude": "28.89163", + "longitude": "-97.29484", + "city": "Meyersville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "314", + "density": "4.7", + "countyfips": "48469", + "countyname": "Victoria", + "countyweights": "{\"48469\": \"57.14\", \"48123\": \"42.86\"}", + "countynamesall": "Victoria|DeWitt", + "countyfipsall": "48469|48123", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77975": { + "latitude": "29.56787", + "longitude": "-97.08485", + "city": "Moulton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1609", + "density": "7.8", + "countyfips": "48285", + "countyname": "Lavaca", + "countyweights": "{\"48285\": \"100\"}", + "countynamesall": "Lavaca", + "countyfipsall": "48285", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77976": { + "latitude": "28.95449", + "longitude": "-97.12272", + "city": "Nursery", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "96", + "density": "1.7", + "countyfips": "48469", + "countyname": "Victoria", + "countyweights": "{\"48469\": \"100\"}", + "countynamesall": "Victoria", + "countyfipsall": "48469", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77977": { + "latitude": "28.69558", + "longitude": "-96.79413", + "city": "Placedo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "544", + "density": "24.4", + "countyfips": "48469", + "countyname": "Victoria", + "countyweights": "{\"48469\": \"100\"}", + "countynamesall": "Victoria", + "countyfipsall": "48469", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77978": { + "latitude": "28.66665", + "longitude": "-96.57237", + "city": "Point Comfort", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "696", + "density": "25.8", + "countyfips": "48057", + "countyname": "Calhoun", + "countyweights": "{\"48057\": \"100\"}", + "countynamesall": "Calhoun", + "countyfipsall": "48057", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77979": { + "latitude": "28.60229", + "longitude": "-96.60787", + "city": "Port Lavaca", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17916", + "density": "20.3", + "countyfips": "48057", + "countyname": "Calhoun", + "countyweights": "{\"48057\": \"99.13\", \"48239\": \"0.5\", \"48469\": \"0.37\"}", + "countynamesall": "Calhoun|Jackson|Victoria", + "countyfipsall": "48057|48239|48469", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77982": { + "latitude": "28.44603", + "longitude": "-96.46007", + "city": "Port O'Connor", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "884", + "density": "26.6", + "countyfips": "48057", + "countyname": "Calhoun", + "countyweights": "{\"48057\": \"100\"}", + "countynamesall": "Calhoun", + "countyfipsall": "48057", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77983": { + "latitude": "28.42886", + "longitude": "-96.57441", + "city": "Seadrift", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2045", + "density": "7.0", + "countyfips": "48057", + "countyname": "Calhoun", + "countyweights": "{\"48057\": \"100\"}", + "countynamesall": "Calhoun", + "countyfipsall": "48057", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77984": { + "latitude": "29.45351", + "longitude": "-97.18787", + "city": "Shiner", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3972", + "density": "9.8", + "countyfips": "48285", + "countyname": "Lavaca", + "countyweights": "{\"48285\": \"90.17\", \"48177\": \"9.83\"}", + "countynamesall": "Lavaca|Gonzales", + "countyfipsall": "48285|48177", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77987": { + "latitude": "29.34254", + "longitude": "-97.07564", + "city": "Sweet Home", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "206", + "density": "16.9", + "countyfips": "48285", + "countyname": "Lavaca", + "countyweights": "{\"48285\": \"100\"}", + "countynamesall": "Lavaca", + "countyfipsall": "48285", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77988": { + "latitude": "28.83903", + "longitude": "-96.88962", + "city": "Telferner", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "559", + "density": "150.7", + "countyfips": "48469", + "countyname": "Victoria", + "countyweights": "{\"48469\": \"100\"}", + "countynamesall": "Victoria", + "countyfipsall": "48469", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77990": { + "latitude": "28.46992", + "longitude": "-96.91719", + "city": "Tivoli", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "811", + "density": "2.9", + "countyfips": "48391", + "countyname": "Refugio", + "countyweights": "{\"48391\": \"87.84\", \"48057\": \"12.16\"}", + "countynamesall": "Refugio|Calhoun", + "countyfipsall": "48391|48057", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77991": { + "latitude": "28.79624", + "longitude": "-96.61312", + "city": "Vanderbilt", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "397", + "density": "7.1", + "countyfips": "48239", + "countyname": "Jackson", + "countyweights": "{\"48239\": \"100\"}", + "countynamesall": "Jackson", + "countyfipsall": "48239", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77993": { + "latitude": "28.85774", + "longitude": "-97.42858", + "city": "Weesatche", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "95", + "density": "2.5", + "countyfips": "48175", + "countyname": "Goliad", + "countyweights": "{\"48175\": \"100\"}", + "countynamesall": "Goliad", + "countyfipsall": "48175", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77994": { + "latitude": "29.17819", + "longitude": "-97.46017", + "city": "Westhoff", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "354", + "density": "2.6", + "countyfips": "48123", + "countyname": "DeWitt", + "countyweights": "{\"48123\": \"100\"}", + "countynamesall": "DeWitt", + "countyfipsall": "48123", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "77995": { + "latitude": "29.21179", + "longitude": "-97.08341", + "city": "Yoakum", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10724", + "density": "11.6", + "countyfips": "48285", + "countyname": "Lavaca", + "countyweights": "{\"48285\": \"56.86\", \"48123\": \"40.25\", \"48469\": \"2.88\"}", + "countynamesall": "Lavaca|DeWitt|Victoria", + "countyfipsall": "48285|48123|48469", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78001": { + "latitude": "28.29493", + "longitude": "-99.21954", + "city": "Artesia Wells", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48283", + "countyname": "La Salle", + "countyweights": "{\"48283\": \"100\"}", + "countynamesall": "La Salle", + "countyfipsall": "48283", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78002": { + "latitude": "29.28295", + "longitude": "-98.73826", + "city": "Atascosa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6833", + "density": "63.5", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78003": { + "latitude": "29.70959", + "longitude": "-99.09413", + "city": "Bandera", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9743", + "density": "16.7", + "countyfips": "48019", + "countyname": "Bandera", + "countyweights": "{\"48019\": \"97.54\", \"48325\": \"2.46\"}", + "countynamesall": "Bandera|Medina", + "countyfipsall": "48019|48325", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78004": { + "latitude": "29.90066", + "longitude": "-98.55579", + "city": "Bergheim", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1118", + "density": "16.4", + "countyfips": "48259", + "countyname": "Kendall", + "countyweights": "{\"48259\": \"100\"}", + "countynamesall": "Kendall", + "countyfipsall": "48259", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78005": { + "latitude": "28.94844", + "longitude": "-98.85243", + "city": "Bigfoot", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "870", + "density": "1.9", + "countyfips": "48163", + "countyname": "Frio", + "countyweights": "{\"48163\": \"70.5\", \"48013\": \"29.5\"}", + "countynamesall": "Frio|Atascosa", + "countyfipsall": "48163|48013", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78006": { + "latitude": "29.85533", + "longitude": "-98.72266", + "city": "Boerne", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36056", + "density": "44.6", + "countyfips": "48259", + "countyname": "Kendall", + "countyweights": "{\"48259\": \"86.81\", \"48029\": \"11.2\", \"48091\": \"1.99\"}", + "countynamesall": "Kendall|Bexar|Comal", + "countyfipsall": "48259|48029|48091", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78007": { + "latitude": "28.49506", + "longitude": "-98.37836", + "city": "Calliham", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "169", + "density": "2.6", + "countyfips": "48311", + "countyname": "McMullen", + "countyweights": "{\"48311\": \"100\"}", + "countynamesall": "McMullen", + "countyfipsall": "48311", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78008": { + "latitude": "28.72411", + "longitude": "-98.27925", + "city": "Campbellton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "461", + "density": "0.9", + "countyfips": "48013", + "countyname": "Atascosa", + "countyweights": "{\"48013\": \"93.62\", \"48297\": \"6.38\"}", + "countynamesall": "Atascosa|Live Oak", + "countyfipsall": "48013|48297", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78009": { + "latitude": "29.35732", + "longitude": "-98.88667", + "city": "Castroville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8466", + "density": "45.7", + "countyfips": "48325", + "countyname": "Medina", + "countyweights": "{\"48325\": \"100\"}", + "countynamesall": "Medina", + "countyfipsall": "48325", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78010": { + "latitude": "29.9123", + "longitude": "-99.04482", + "city": "Center Point", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3493", + "density": "18.4", + "countyfips": "48265", + "countyname": "Kerr", + "countyweights": "{\"48265\": \"100\"}", + "countynamesall": "Kerr", + "countyfipsall": "48265", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78011": { + "latitude": "28.79237", + "longitude": "-98.72129", + "city": "Charlotte", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1688", + "density": "3.4", + "countyfips": "48013", + "countyname": "Atascosa", + "countyweights": "{\"48013\": \"100\"}", + "countynamesall": "Atascosa", + "countyfipsall": "48013", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78012": { + "latitude": "28.75991", + "longitude": "-98.47914", + "city": "Christine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "267", + "density": "3.1", + "countyfips": "48013", + "countyname": "Atascosa", + "countyweights": "{\"48013\": \"100\"}", + "countynamesall": "Atascosa", + "countyfipsall": "48013", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78013": { + "latitude": "29.9706", + "longitude": "-98.90518", + "city": "Comfort", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7312", + "density": "12.3", + "countyfips": "48259", + "countyname": "Kendall", + "countyweights": "{\"48259\": \"72.48\", \"48265\": \"27.52\"}", + "countynamesall": "Kendall|Kerr", + "countyfipsall": "48259|48265", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78014": { + "latitude": "28.36134", + "longitude": "-99.14498", + "city": "Cotulla", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5999", + "density": "2.2", + "countyfips": "48283", + "countyname": "La Salle", + "countyweights": "{\"48283\": \"99.58\", \"48127\": \"0.42\"}", + "countynamesall": "La Salle|Dimmit", + "countyfipsall": "48283|48127", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78015": { + "latitude": "29.747", + "longitude": "-98.6555", + "city": "Boerne", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15811", + "density": "291.8", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"68.77\", \"48259\": \"31.23\"}", + "countynamesall": "Bexar|Kendall", + "countyfipsall": "48029|48259", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78016": { + "latitude": "29.18359", + "longitude": "-98.96602", + "city": "Devine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11632", + "density": "28.3", + "countyfips": "48325", + "countyname": "Medina", + "countyweights": "{\"48325\": \"100\"}", + "countynamesall": "Medina", + "countyfipsall": "48325", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78017": { + "latitude": "28.70688", + "longitude": "-99.1938", + "city": "Dilley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6074", + "density": "6.3", + "countyfips": "48163", + "countyname": "Frio", + "countyweights": "{\"48163\": \"99.1\", \"48283\": \"0.9\"}", + "countynamesall": "Frio|La Salle", + "countyfipsall": "48163|48283", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78019": { + "latitude": "28.04207", + "longitude": "-99.39643", + "city": "Encinal", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1253", + "density": "0.5", + "countyfips": "48283", + "countyname": "La Salle", + "countyweights": "{\"48283\": \"93.32\", \"48479\": \"6.68\"}", + "countynamesall": "La Salle|Webb", + "countyfipsall": "48283|48479", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78021": { + "latitude": "28.50102", + "longitude": "-98.82637", + "city": "Fowlerton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "273", + "density": "0.4", + "countyfips": "48283", + "countyname": "La Salle", + "countyweights": "{\"48283\": \"84.92\", \"48311\": \"15.08\"}", + "countynamesall": "La Salle|McMullen", + "countyfipsall": "48283|48311", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78022": { + "latitude": "28.25927", + "longitude": "-98.14445", + "city": "George West", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4033", + "density": "3.5", + "countyfips": "48297", + "countyname": "Live Oak", + "countyweights": "{\"48297\": \"100\"}", + "countynamesall": "Live Oak", + "countyfipsall": "48297", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78023": { + "latitude": "29.61087", + "longitude": "-98.74532", + "city": "Helotes", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31357", + "density": "162.4", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"97.08\", \"48325\": \"2.58\", \"48019\": \"0.34\"}", + "countynamesall": "Bexar|Medina|Bandera", + "countyfipsall": "48029|48325|48019", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78024": { + "latitude": "30.00114", + "longitude": "-99.48089", + "city": "Hunt", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1370", + "density": "2.0", + "countyfips": "48265", + "countyname": "Kerr", + "countyweights": "{\"48265\": \"99.65\", \"48385\": \"0.35\"}", + "countynamesall": "Kerr|Real", + "countyfipsall": "48265|48385", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78025": { + "latitude": "30.08367", + "longitude": "-99.28317", + "city": "Ingram", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4918", + "density": "43.2", + "countyfips": "48265", + "countyname": "Kerr", + "countyweights": "{\"48265\": \"100\"}", + "countynamesall": "Kerr", + "countyfipsall": "48265", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78026": { + "latitude": "28.83751", + "longitude": "-98.59733", + "city": "Jourdanton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6452", + "density": "11.5", + "countyfips": "48013", + "countyname": "Atascosa", + "countyweights": "{\"48013\": \"100\"}", + "countynamesall": "Atascosa", + "countyfipsall": "48013", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78027": { + "latitude": "29.97556", + "longitude": "-98.54274", + "city": "Kendalia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "381", + "density": "1.9", + "countyfips": "48259", + "countyname": "Kendall", + "countyweights": "{\"48259\": \"100\"}", + "countynamesall": "Kendall", + "countyfipsall": "48259", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78028": { + "latitude": "30.03421", + "longitude": "-99.1582", + "city": "Kerrville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39944", + "density": "61.5", + "countyfips": "48265", + "countyname": "Kerr", + "countyweights": "{\"48265\": \"98.04\", \"48171\": \"1.96\"}", + "countynamesall": "Kerr|Gillespie", + "countyfipsall": "48265|48171", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78029": { + "latitude": "30.1591", + "longitude": "-99.34498", + "city": "Kerrville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48265", + "countyname": "Kerr", + "countyweights": "{\"48265\": \"0\"}", + "countynamesall": "Kerr", + "countyfipsall": "48265", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78039": { + "latitude": "29.31371", + "longitude": "-98.82963", + "city": "La Coste", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1924", + "density": "40.5", + "countyfips": "48325", + "countyname": "Medina", + "countyweights": "{\"48325\": \"92.4\", \"48029\": \"7.6\"}", + "countynamesall": "Medina|Bexar", + "countyfipsall": "48325|48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78040": { + "latitude": "27.51345", + "longitude": "-99.50228", + "city": "Laredo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40939", + "density": "2508.8", + "countyfips": "48479", + "countyname": "Webb", + "countyweights": "{\"48479\": \"100\"}", + "countynamesall": "Webb", + "countyfipsall": "48479", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78041": { + "latitude": "27.55417", + "longitude": "-99.46337", + "city": "Laredo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "47753", + "density": "1006.4", + "countyfips": "48479", + "countyname": "Webb", + "countyweights": "{\"48479\": \"100\"}", + "countynamesall": "Webb", + "countyfipsall": "48479", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78043": { + "latitude": "27.54915", + "longitude": "-99.26173", + "city": "Laredo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "45532", + "density": "101.1", + "countyfips": "48479", + "countyname": "Webb", + "countyweights": "{\"48479\": \"100\"}", + "countynamesall": "Webb", + "countyfipsall": "48479", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78044": { + "latitude": "27.75007", + "longitude": "-99.13106", + "city": "Laredo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "519", + "density": "1.0", + "countyfips": "48479", + "countyname": "Webb", + "countyweights": "{\"48479\": \"100\"}", + "countynamesall": "Webb", + "countyfipsall": "48479", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78045": { + "latitude": "27.85007", + "longitude": "-99.66888", + "city": "Laredo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "66685", + "density": "35.6", + "countyfips": "48479", + "countyname": "Webb", + "countyweights": "{\"48479\": \"100\"}", + "countynamesall": "Webb", + "countyfipsall": "48479", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78046": { + "latitude": "27.37485", + "longitude": "-99.34941", + "city": "Laredo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "70989", + "density": "111.4", + "countyfips": "48479", + "countyname": "Webb", + "countyweights": "{\"48479\": \"100\"}", + "countynamesall": "Webb", + "countyfipsall": "48479", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78050": { + "latitude": "29.07059", + "longitude": "-98.48192", + "city": "Leming", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "584", + "density": "42.1", + "countyfips": "48013", + "countyname": "Atascosa", + "countyweights": "{\"48013\": \"100\"}", + "countynamesall": "Atascosa", + "countyfipsall": "48013", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78052": { + "latitude": "29.20449", + "longitude": "-98.77534", + "city": "Lytle", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6769", + "density": "68.9", + "countyfips": "48013", + "countyname": "Atascosa", + "countyweights": "{\"48013\": \"71.15\", \"48325\": \"26.06\", \"48029\": \"2.79\"}", + "countynamesall": "Atascosa|Medina|Bexar", + "countyfipsall": "48013|48325|48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78055": { + "latitude": "29.82094", + "longitude": "-99.31944", + "city": "Medina", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1867", + "density": "3.0", + "countyfips": "48019", + "countyname": "Bandera", + "countyweights": "{\"48019\": \"97.35\", \"48265\": \"2.65\"}", + "countynamesall": "Bandera|Kerr", + "countyfipsall": "48019|48265", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78056": { + "latitude": "29.53765", + "longitude": "-98.93486", + "city": "Mico", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2138", + "density": "8.2", + "countyfips": "48325", + "countyname": "Medina", + "countyweights": "{\"48325\": \"100\"}", + "countynamesall": "Medina", + "countyfipsall": "48325", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78057": { + "latitude": "29.03929", + "longitude": "-98.99952", + "city": "Moore", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "378", + "density": "1.5", + "countyfips": "48163", + "countyname": "Frio", + "countyweights": "{\"48163\": \"97.24\", \"48325\": \"2.76\"}", + "countynamesall": "Frio|Medina", + "countyfipsall": "48163|48325", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78058": { + "latitude": "30.0957", + "longitude": "-99.63952", + "city": "Mountain Home", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "976", + "density": "0.7", + "countyfips": "48265", + "countyname": "Kerr", + "countyweights": "{\"48265\": \"82.64\", \"48171\": \"9.55\", \"48385\": \"7.8\"}", + "countynamesall": "Kerr|Gillespie|Real", + "countyfipsall": "48265|48171|48385", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78059": { + "latitude": "29.19189", + "longitude": "-98.84177", + "city": "Natalia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5545", + "density": "52.3", + "countyfips": "48325", + "countyname": "Medina", + "countyweights": "{\"48325\": \"100\"}", + "countynamesall": "Medina", + "countyfipsall": "48325", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78060": { + "latitude": "28.44686", + "longitude": "-98.10699", + "city": "Oakville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48297", + "countyname": "Live Oak", + "countyweights": "{\"48297\": \"100\"}", + "countynamesall": "Live Oak", + "countyfipsall": "48297", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78061": { + "latitude": "28.90171", + "longitude": "-99.14689", + "city": "Pearsall", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12858", + "density": "9.0", + "countyfips": "48163", + "countyname": "Frio", + "countyweights": "{\"48163\": \"100\"}", + "countynamesall": "Frio", + "countyfipsall": "48163", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78063": { + "latitude": "29.68785", + "longitude": "-98.91422", + "city": "Pipe Creek", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9484", + "density": "30.1", + "countyfips": "48019", + "countyname": "Bandera", + "countyweights": "{\"48019\": \"100\"}", + "countynamesall": "Bandera", + "countyfipsall": "48019", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78064": { + "latitude": "28.93613", + "longitude": "-98.42571", + "city": "Pleasanton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16186", + "density": "26.6", + "countyfips": "48013", + "countyname": "Atascosa", + "countyweights": "{\"48013\": \"99.45\", \"48493\": \"0.55\"}", + "countynamesall": "Atascosa|Wilson", + "countyfipsall": "48013|48493", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78065": { + "latitude": "29.07762", + "longitude": "-98.63983", + "city": "Poteet", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11130", + "density": "25.8", + "countyfips": "48013", + "countyname": "Atascosa", + "countyweights": "{\"48013\": \"100\"}", + "countynamesall": "Atascosa", + "countyfipsall": "48013", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78066": { + "latitude": "29.4794", + "longitude": "-98.8956", + "city": "Rio Medina", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "521", + "density": "7.9", + "countyfips": "48325", + "countyname": "Medina", + "countyweights": "{\"48325\": \"100\"}", + "countynamesall": "Medina", + "countyfipsall": "48325", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78067": { + "latitude": "27.13267", + "longitude": "-99.33646", + "city": "San Ygnacio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "772", + "density": "2.1", + "countyfips": "48505", + "countyname": "Zapata", + "countyweights": "{\"48505\": \"100\"}", + "countynamesall": "Zapata", + "countyfipsall": "48505", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78069": { + "latitude": "29.18606", + "longitude": "-98.68109", + "city": "Somerset", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6115", + "density": "72.5", + "countyfips": "48013", + "countyname": "Atascosa", + "countyweights": "{\"48013\": \"59.37\", \"48029\": \"40.63\"}", + "countynamesall": "Atascosa|Bexar", + "countyfipsall": "48013|48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78070": { + "latitude": "29.89826", + "longitude": "-98.4063", + "city": "Spring Branch", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15457", + "density": "43.3", + "countyfips": "48091", + "countyname": "Comal", + "countyweights": "{\"48091\": \"95.72\", \"48031\": \"4.1\", \"48259\": \"0.18\"}", + "countynamesall": "Comal|Blanco|Kendall", + "countyfipsall": "48091|48031|48259", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78071": { + "latitude": "28.46948", + "longitude": "-98.22431", + "city": "Three Rivers", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4372", + "density": "4.7", + "countyfips": "48297", + "countyname": "Live Oak", + "countyweights": "{\"48297\": \"99.81\", \"48311\": \"0.19\"}", + "countynamesall": "Live Oak|McMullen", + "countyfipsall": "48297|48311", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78072": { + "latitude": "28.30174", + "longitude": "-98.58516", + "city": "Tilden", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "582", + "density": "0.3", + "countyfips": "48311", + "countyname": "McMullen", + "countyweights": "{\"48311\": \"100\"}", + "countynamesall": "McMullen", + "countyfipsall": "48311", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78073": { + "latitude": "29.24487", + "longitude": "-98.61955", + "city": "Von Ormy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8580", + "density": "63.8", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"86.22\", \"48013\": \"13.78\"}", + "countynamesall": "Bexar|Atascosa", + "countyfipsall": "48029|48013", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78075": { + "latitude": "28.60116", + "longitude": "-98.35311", + "city": "Whitsett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "248", + "density": "0.7", + "countyfips": "48297", + "countyname": "Live Oak", + "countyweights": "{\"48297\": \"80.49\", \"48311\": \"19.51\"}", + "countynamesall": "Live Oak|McMullen", + "countyfipsall": "48297|48311", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78076": { + "latitude": "26.93099", + "longitude": "-99.15506", + "city": "Zapata", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13029", + "density": "10.5", + "countyfips": "48505", + "countyname": "Zapata", + "countyweights": "{\"48505\": \"100\"}", + "countynamesall": "Zapata", + "countyfipsall": "48505", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78101": { + "latitude": "29.34402", + "longitude": "-98.23884", + "city": "Adkins", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6465", + "density": "48.7", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"51.91\", \"48493\": \"48.09\"}", + "countynamesall": "Bexar|Wilson", + "countyfipsall": "48029|48493", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78102": { + "latitude": "28.40248", + "longitude": "-97.71084", + "city": "Beeville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28323", + "density": "23.3", + "countyfips": "48025", + "countyname": "Bee", + "countyweights": "{\"48025\": \"99.85\", \"48297\": \"0.15\"}", + "countynamesall": "Bee|Live Oak", + "countyfipsall": "48025|48297", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78104": { + "latitude": "28.51876", + "longitude": "-97.76461", + "city": "Beeville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "136", + "density": "2.3", + "countyfips": "48025", + "countyname": "Bee", + "countyweights": "{\"48025\": \"100\"}", + "countynamesall": "Bee", + "countyfipsall": "48025", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78107": { + "latitude": "28.5493", + "longitude": "-97.57399", + "city": "Berclair", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "269", + "density": "0.9", + "countyfips": "48175", + "countyname": "Goliad", + "countyweights": "{\"48175\": \"100\"}", + "countynamesall": "Goliad", + "countyfipsall": "48175", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78108": { + "latitude": "29.57435", + "longitude": "-98.21878", + "city": "Cibolo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39999", + "density": "500.1", + "countyfips": "48187", + "countyname": "Guadalupe", + "countyweights": "{\"48187\": \"95.83\", \"48091\": \"2.28\", \"48029\": \"1.89\"}", + "countynamesall": "Guadalupe|Comal|Bexar", + "countyfipsall": "48187|48091|48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78109": { + "latitude": "29.48788", + "longitude": "-98.29148", + "city": "Converse", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39769", + "density": "732.6", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78112": { + "latitude": "29.21277", + "longitude": "-98.37165", + "city": "Elmendorf", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8617", + "density": "65.9", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"98.5\", \"48493\": \"1.5\"}", + "countynamesall": "Bexar|Wilson", + "countyfipsall": "48029|48493", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78113": { + "latitude": "28.95336", + "longitude": "-98.12689", + "city": "Falls City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3558", + "density": "4.9", + "countyfips": "48255", + "countyname": "Karnes", + "countyweights": "{\"48255\": \"49.08\", \"48493\": \"40.12\", \"48013\": \"10.8\"}", + "countynamesall": "Karnes|Wilson|Atascosa", + "countyfipsall": "48255|48493|48013", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78114": { + "latitude": "29.11822", + "longitude": "-98.20179", + "city": "Floresville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24009", + "density": "25.3", + "countyfips": "48493", + "countyname": "Wilson", + "countyweights": "{\"48493\": \"99.31\", \"48013\": \"0.69\"}", + "countynamesall": "Wilson|Atascosa", + "countyfipsall": "48493|48013", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78116": { + "latitude": "29.11262", + "longitude": "-97.75699", + "city": "Gillett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "313", + "density": "1.0", + "countyfips": "48255", + "countyname": "Karnes", + "countyweights": "{\"48255\": \"100\"}", + "countynamesall": "Karnes", + "countyfipsall": "48255", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78117": { + "latitude": "28.94398", + "longitude": "-97.95448", + "city": "Hobson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "401", + "density": "2.9", + "countyfips": "48255", + "countyname": "Karnes", + "countyweights": "{\"48255\": \"100\"}", + "countynamesall": "Karnes", + "countyfipsall": "48255", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78118": { + "latitude": "28.88645", + "longitude": "-97.95035", + "city": "Karnes City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4264", + "density": "9.1", + "countyfips": "48255", + "countyname": "Karnes", + "countyweights": "{\"48255\": \"99.77\", \"48297\": \"0.23\"}", + "countynamesall": "Karnes|Live Oak", + "countyfipsall": "48255|48297", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78119": { + "latitude": "28.73025", + "longitude": "-97.89597", + "city": "Kenedy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7160", + "density": "8.5", + "countyfips": "48255", + "countyname": "Karnes", + "countyweights": "{\"48255\": \"95.44\", \"48025\": \"4.13\", \"48297\": \"0.43\"}", + "countynamesall": "Karnes|Bee|Live Oak", + "countyfipsall": "48255|48025|48297", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78121": { + "latitude": "29.35147", + "longitude": "-98.10722", + "city": "La Vernia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13276", + "density": "49.8", + "countyfips": "48493", + "countyname": "Wilson", + "countyweights": "{\"48493\": \"90.84\", \"48187\": \"9.16\"}", + "countynamesall": "Wilson|Guadalupe", + "countyfipsall": "48493|48187", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78122": { + "latitude": "29.4366", + "longitude": "-97.73588", + "city": "Leesville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "274", + "density": "2.1", + "countyfips": "48177", + "countyname": "Gonzales", + "countyweights": "{\"48177\": \"100\"}", + "countynamesall": "Gonzales", + "countyfipsall": "48177", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78123": { + "latitude": "29.6024", + "longitude": "-98.04405", + "city": "McQueeney", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2177", + "density": "214.7", + "countyfips": "48187", + "countyname": "Guadalupe", + "countyweights": "{\"48187\": \"100\"}", + "countynamesall": "Guadalupe", + "countyfipsall": "48187", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78124": { + "latitude": "29.55515", + "longitude": "-98.14732", + "city": "Marion", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6913", + "density": "46.9", + "countyfips": "48187", + "countyname": "Guadalupe", + "countyweights": "{\"48187\": \"92.24\", \"48029\": \"7.76\"}", + "countynamesall": "Guadalupe|Bexar", + "countyfipsall": "48187|48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78125": { + "latitude": "28.53824", + "longitude": "-97.96328", + "city": "Mineral", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "45", + "density": "0.6", + "countyfips": "48025", + "countyname": "Bee", + "countyweights": "{\"48025\": \"100\"}", + "countynamesall": "Bee", + "countyfipsall": "48025", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78130": { + "latitude": "29.69772", + "longitude": "-98.07021", + "city": "New Braunfels", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "77400", + "density": "323.7", + "countyfips": "48091", + "countyname": "Comal", + "countyweights": "{\"48091\": \"71.41\", \"48187\": \"28.59\"}", + "countynamesall": "Comal|Guadalupe", + "countyfipsall": "48091|48187", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78132": { + "latitude": "29.76312", + "longitude": "-98.1911", + "city": "New Braunfels", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30987", + "density": "64.5", + "countyfips": "48091", + "countyname": "Comal", + "countyweights": "{\"48091\": \"100\"}", + "countynamesall": "Comal", + "countyfipsall": "48091", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78133": { + "latitude": "29.88674", + "longitude": "-98.24214", + "city": "Canyon Lake", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18483", + "density": "85.3", + "countyfips": "48091", + "countyname": "Comal", + "countyweights": "{\"48091\": \"100\"}", + "countynamesall": "Comal", + "countyfipsall": "48091", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78140": { + "latitude": "29.30696", + "longitude": "-97.76913", + "city": "Nixon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3486", + "density": "9.3", + "countyfips": "48177", + "countyname": "Gonzales", + "countyweights": "{\"48177\": \"90.18\", \"48493\": \"7.04\", \"48187\": \"2.78\"}", + "countynamesall": "Gonzales|Wilson|Guadalupe", + "countyfipsall": "48177|48493|48187", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78141": { + "latitude": "28.91743", + "longitude": "-97.627", + "city": "Nordheim", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "524", + "density": "3.4", + "countyfips": "48123", + "countyname": "DeWitt", + "countyweights": "{\"48123\": \"99.16\", \"48255\": \"0.84\"}", + "countynamesall": "DeWitt|Karnes", + "countyfipsall": "48123|48255", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78142": { + "latitude": "28.53664", + "longitude": "-97.81055", + "city": "Normanna", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "166", + "density": "11.4", + "countyfips": "48025", + "countyname": "Bee", + "countyweights": "{\"48025\": \"100\"}", + "countynamesall": "Bee", + "countyfipsall": "48025", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78143": { + "latitude": "29.26244", + "longitude": "-97.86053", + "city": "Pandora", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "226", + "density": "49.9", + "countyfips": "48493", + "countyname": "Wilson", + "countyweights": "{\"48493\": \"100\"}", + "countynamesall": "Wilson", + "countyfipsall": "48493", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78144": { + "latitude": "28.95506", + "longitude": "-97.88795", + "city": "Panna Maria", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29", + "density": "5.0", + "countyfips": "48255", + "countyname": "Karnes", + "countyweights": "{\"48255\": \"100\"}", + "countynamesall": "Karnes", + "countyfipsall": "48255", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78145": { + "latitude": "28.64519", + "longitude": "-97.9941", + "city": "Pawnee", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "116", + "density": "12.2", + "countyfips": "48025", + "countyname": "Bee", + "countyweights": "{\"48025\": \"100\"}", + "countynamesall": "Bee", + "countyfipsall": "48025", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78146": { + "latitude": "28.60318", + "longitude": "-97.83849", + "city": "Pettus", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "637", + "density": "6.4", + "countyfips": "48025", + "countyname": "Bee", + "countyweights": "{\"48025\": \"100\"}", + "countynamesall": "Bee", + "countyfipsall": "48025", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78147": { + "latitude": "29.07384", + "longitude": "-98.0802", + "city": "Poth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2035", + "density": "226.9", + "countyfips": "48493", + "countyname": "Wilson", + "countyweights": "{\"48493\": \"100\"}", + "countynamesall": "Wilson", + "countyfipsall": "48493", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78148": { + "latitude": "29.54349", + "longitude": "-98.29565", + "city": "Universal City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22364", + "density": "916.3", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78150": { + "latitude": "29.53078", + "longitude": "-98.279", + "city": "Jbsa Randolph", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37", + "density": "90.2", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78151": { + "latitude": "28.86506", + "longitude": "-97.70391", + "city": "Runge", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1662", + "density": "6.1", + "countyfips": "48255", + "countyname": "Karnes", + "countyweights": "{\"48255\": \"100\"}", + "countynamesall": "Karnes", + "countyfipsall": "48255", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78152": { + "latitude": "29.43411", + "longitude": "-98.20648", + "city": "Saint Hedwig", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2171", + "density": "22.9", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78154": { + "latitude": "29.54622", + "longitude": "-98.26627", + "city": "Schertz", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "41272", + "density": "484.6", + "countyfips": "48187", + "countyname": "Guadalupe", + "countyweights": "{\"48187\": \"80.89\", \"48029\": \"18.74\", \"48091\": \"0.37\"}", + "countynamesall": "Guadalupe|Bexar|Comal", + "countyfipsall": "48187|48029|48091", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78155": { + "latitude": "29.53341", + "longitude": "-97.93886", + "city": "Seguin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48909", + "density": "53.3", + "countyfips": "48187", + "countyname": "Guadalupe", + "countyweights": "{\"48187\": \"100\"}", + "countynamesall": "Guadalupe", + "countyfipsall": "48187", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78159": { + "latitude": "29.23632", + "longitude": "-97.58721", + "city": "Smiley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1196", + "density": "3.0", + "countyfips": "48177", + "countyname": "Gonzales", + "countyweights": "{\"48177\": \"100\"}", + "countynamesall": "Gonzales", + "countyfipsall": "48177", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78160": { + "latitude": "29.24306", + "longitude": "-97.92958", + "city": "Stockdale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4918", + "density": "10.4", + "countyfips": "48493", + "countyname": "Wilson", + "countyweights": "{\"48493\": \"100\"}", + "countynamesall": "Wilson", + "countyfipsall": "48493", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78161": { + "latitude": "29.28697", + "longitude": "-98.05743", + "city": "Sutherland Springs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "651", + "density": "19.6", + "countyfips": "48493", + "countyname": "Wilson", + "countyweights": "{\"48493\": \"100\"}", + "countynamesall": "Wilson", + "countyfipsall": "48493", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78162": { + "latitude": "28.58997", + "longitude": "-97.77347", + "city": "Tuleta", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "301", + "density": "3.7", + "countyfips": "48025", + "countyname": "Bee", + "countyweights": "{\"48025\": \"100\"}", + "countynamesall": "Bee", + "countyfipsall": "48025", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78163": { + "latitude": "29.76677", + "longitude": "-98.45476", + "city": "Bulverde", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12874", + "density": "64.4", + "countyfips": "48091", + "countyname": "Comal", + "countyweights": "{\"48091\": \"100\"}", + "countynamesall": "Comal", + "countyfipsall": "48091", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78164": { + "latitude": "28.98216", + "longitude": "-97.52254", + "city": "Yorktown", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3706", + "density": "5.1", + "countyfips": "48123", + "countyname": "DeWitt", + "countyweights": "{\"48123\": \"95.39\", \"48175\": \"4.61\"}", + "countynamesall": "DeWitt|Goliad", + "countyfipsall": "48123|48175", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78201": { + "latitude": "29.46879", + "longitude": "-98.52828", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48334", + "density": "2623.7", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78202": { + "latitude": "29.42814", + "longitude": "-98.46082", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11453", + "density": "1902.3", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78203": { + "latitude": "29.41507", + "longitude": "-98.45918", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6180", + "density": "1855.8", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78204": { + "latitude": "29.4032", + "longitude": "-98.50372", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12231", + "density": "1789.4", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78205": { + "latitude": "29.42347", + "longitude": "-98.48593", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1441", + "density": "466.9", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78207": { + "latitude": "29.42214", + "longitude": "-98.52545", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "55484", + "density": "2923.7", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78208": { + "latitude": "29.43982", + "longitude": "-98.45855", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4913", + "density": "1924.7", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78209": { + "latitude": "29.48907", + "longitude": "-98.4567", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "42653", + "density": "1616.7", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78210": { + "latitude": "29.39601", + "longitude": "-98.46437", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37683", + "density": "1956.3", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78211": { + "latitude": "29.34641", + "longitude": "-98.56315", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "32769", + "density": "1231.0", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78212": { + "latitude": "29.46463", + "longitude": "-98.49266", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28865", + "density": "1648.5", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78213": { + "latitude": "29.51693", + "longitude": "-98.52359", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "44813", + "density": "2162.0", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78214": { + "latitude": "29.32654", + "longitude": "-98.46939", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27558", + "density": "793.5", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78215": { + "latitude": "29.44117", + "longitude": "-98.48056", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2915", + "density": "1002.6", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78216": { + "latitude": "29.53648", + "longitude": "-98.48922", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43554", + "density": "1176.2", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78217": { + "latitude": "29.54045", + "longitude": "-98.42007", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34159", + "density": "1253.4", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78218": { + "latitude": "29.49152", + "longitude": "-98.40114", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37281", + "density": "1217.4", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78219": { + "latitude": "29.44208", + "longitude": "-98.38754", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17239", + "density": "483.6", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78220": { + "latitude": "29.41674", + "longitude": "-98.39321", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16700", + "density": "694.7", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78221": { + "latitude": "29.28016", + "longitude": "-98.47826", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "41185", + "density": "522.6", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78222": { + "latitude": "29.36614", + "longitude": "-98.37783", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25227", + "density": "444.6", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78223": { + "latitude": "29.3122", + "longitude": "-98.39091", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "56055", + "density": "522.7", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"99.48\", \"48493\": \"0.52\"}", + "countynamesall": "Bexar|Wilson", + "countyfipsall": "48029|48493", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78224": { + "latitude": "29.29429", + "longitude": "-98.53944", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22851", + "density": "398.5", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78225": { + "latitude": "29.38799", + "longitude": "-98.52602", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14472", + "density": "2849.4", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78226": { + "latitude": "29.38373", + "longitude": "-98.56909", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7906", + "density": "427.4", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78227": { + "latitude": "29.40625", + "longitude": "-98.62942", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "51394", + "density": "1436.6", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78228": { + "latitude": "29.46095", + "longitude": "-98.57202", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "62359", + "density": "2197.8", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78229": { + "latitude": "29.50555", + "longitude": "-98.57221", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34125", + "density": "2298.9", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78230": { + "latitude": "29.54613", + "longitude": "-98.55552", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "45021", + "density": "1668.1", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78231": { + "latitude": "29.57806", + "longitude": "-98.5427", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9001", + "density": "899.4", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78232": { + "latitude": "29.58813", + "longitude": "-98.47482", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39072", + "density": "1253.2", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78233": { + "latitude": "29.55554", + "longitude": "-98.36173", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "50103", + "density": "1472.0", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78234": { + "latitude": "29.46038", + "longitude": "-98.43926", + "city": "Jbsa Ft Sam Houston", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4965", + "density": "421.5", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78235": { + "latitude": "29.34611", + "longitude": "-98.44374", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1476", + "density": "543.6", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78236": { + "latitude": "29.3781", + "longitude": "-98.64431", + "city": "Jbsa Lackland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6896", + "density": "281.0", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78237": { + "latitude": "29.42111", + "longitude": "-98.56936", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39105", + "density": "2047.4", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78238": { + "latitude": "29.47143", + "longitude": "-98.61824", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25660", + "density": "1031.1", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78239": { + "latitude": "29.51681", + "longitude": "-98.36304", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27431", + "density": "1594.9", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78240": { + "latitude": "29.52464", + "longitude": "-98.60748", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "60927", + "density": "2076.1", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78242": { + "latitude": "29.35066", + "longitude": "-98.60748", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34893", + "density": "1713.2", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78243": { + "latitude": "29.37177", + "longitude": "-98.59514", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "408", + "density": "338.1", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78244": { + "latitude": "29.47379", + "longitude": "-98.35006", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30981", + "density": "1288.1", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78245": { + "latitude": "29.40397", + "longitude": "-98.73081", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "76518", + "density": "889.2", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78247": { + "latitude": "29.58549", + "longitude": "-98.40705", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "53892", + "density": "1267.2", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78248": { + "latitude": "29.59047", + "longitude": "-98.52525", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14345", + "density": "1412.9", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78249": { + "latitude": "29.56794", + "longitude": "-98.61346", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "61639", + "density": "1599.3", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78250": { + "latitude": "29.50316", + "longitude": "-98.66626", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "61669", + "density": "2479.5", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78251": { + "latitude": "29.46216", + "longitude": "-98.67599", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "62186", + "density": "1582.9", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78252": { + "latitude": "29.34097", + "longitude": "-98.70532", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12009", + "density": "134.1", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78253": { + "latitude": "29.46744", + "longitude": "-98.7906", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43770", + "density": "311.1", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"94.23\", \"48325\": \"5.77\"}", + "countynamesall": "Bexar|Medina", + "countyfipsall": "48029|48325", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78254": { + "latitude": "29.5369", + "longitude": "-98.73775", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "59107", + "density": "843.5", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78255": { + "latitude": "29.65429", + "longitude": "-98.66554", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14825", + "density": "313.5", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78256": { + "latitude": "29.62304", + "longitude": "-98.62635", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11238", + "density": "499.2", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78257": { + "latitude": "29.66124", + "longitude": "-98.58356", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7538", + "density": "74.8", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78258": { + "latitude": "29.63372", + "longitude": "-98.49603", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "44747", + "density": "1088.2", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78259": { + "latitude": "29.6263", + "longitude": "-98.42781", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26338", + "density": "737.3", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78260": { + "latitude": "29.69664", + "longitude": "-98.48743", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26301", + "density": "458.2", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78261": { + "latitude": "29.69179", + "longitude": "-98.40192", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16749", + "density": "216.5", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78263": { + "latitude": "29.35946", + "longitude": "-98.30931", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4440", + "density": "46.8", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"100\"}", + "countynamesall": "Bexar", + "countyfipsall": "48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78264": { + "latitude": "29.18831", + "longitude": "-98.50117", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10623", + "density": "62.2", + "countyfips": "48029", + "countyname": "Bexar", + "countyweights": "{\"48029\": \"90.09\", \"48013\": \"9.91\"}", + "countynamesall": "Bexar|Atascosa", + "countyfipsall": "48029|48013", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78266": { + "latitude": "29.65385", + "longitude": "-98.33055", + "city": "San Antonio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6913", + "density": "71.0", + "countyfips": "48091", + "countyname": "Comal", + "countyweights": "{\"48091\": \"80.22\", \"48029\": \"19.78\"}", + "countynamesall": "Comal|Bexar", + "countyfipsall": "48091|48029", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78330": { + "latitude": "27.74268", + "longitude": "-97.91564", + "city": "Agua Dulce", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "934", + "density": "20.7", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78332": { + "latitude": "27.71843", + "longitude": "-98.14285", + "city": "Alice", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28941", + "density": "22.4", + "countyfips": "48249", + "countyname": "Jim Wells", + "countyweights": "{\"48249\": \"99.29\", \"48131\": \"0.71\"}", + "countynamesall": "Jim Wells|Duval", + "countyfipsall": "48249|48131", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78335": { + "latitude": "27.87319", + "longitude": "-97.09231", + "city": "Aransas Pass", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78336": { + "latitude": "27.94281", + "longitude": "-97.18347", + "city": "Aransas Pass", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11214", + "density": "88.4", + "countyfips": "48409", + "countyname": "San Patricio", + "countyweights": "{\"48409\": \"74.6\", \"48007\": \"25.32\", \"48355\": \"0.08\"}", + "countynamesall": "San Patricio|Aransas|Nueces", + "countyfipsall": "48409|48007|48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78338": { + "latitude": "26.89255", + "longitude": "-97.76255", + "city": "Armstrong", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18", + "density": "0.3", + "countyfips": "48261", + "countyname": "Kenedy", + "countyweights": "{\"48261\": \"100\"}", + "countynamesall": "Kenedy", + "countyfipsall": "48261", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78339": { + "latitude": "27.80511", + "longitude": "-97.79226", + "city": "Banquete", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "317", + "density": "123.1", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78340": { + "latitude": "28.12487", + "longitude": "-97.21093", + "city": "Bayside", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "356", + "density": "6.3", + "countyfips": "48391", + "countyname": "Refugio", + "countyweights": "{\"48391\": \"100\"}", + "countynamesall": "Refugio", + "countyfipsall": "48391", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78341": { + "latitude": "27.62992", + "longitude": "-98.48907", + "city": "Benavides", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1844", + "density": "2.9", + "countyfips": "48131", + "countyname": "Duval", + "countyweights": "{\"48131\": \"100\"}", + "countynamesall": "Duval", + "countyfipsall": "48131", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78342": { + "latitude": "27.65989", + "longitude": "-98.07573", + "city": "Ben Bolt", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "330", + "density": "71.2", + "countyfips": "48249", + "countyname": "Jim Wells", + "countyweights": "{\"48249\": \"100\"}", + "countynamesall": "Jim Wells", + "countyfipsall": "48249", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78343": { + "latitude": "27.6194", + "longitude": "-97.74459", + "city": "Bishop", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4526", + "density": "10.6", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78344": { + "latitude": "27.48001", + "longitude": "-98.86472", + "city": "Bruni", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "436", + "density": "1.4", + "countyfips": "48479", + "countyname": "Webb", + "countyweights": "{\"48479\": \"100\"}", + "countynamesall": "Webb", + "countyfipsall": "48479", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78349": { + "latitude": "27.37535", + "longitude": "-98.29991", + "city": "Concepcion", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "617", + "density": "1.9", + "countyfips": "48131", + "countyname": "Duval", + "countyweights": "{\"48131\": \"100\"}", + "countynamesall": "Duval", + "countyfipsall": "48131", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78351": { + "latitude": "27.67313", + "longitude": "-97.75971", + "city": "Driscoll", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "421", + "density": "75.8", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78352": { + "latitude": "27.96291", + "longitude": "-97.67901", + "city": "Edroy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "485", + "density": "119.1", + "countyfips": "48409", + "countyname": "San Patricio", + "countyweights": "{\"48409\": \"100\"}", + "countynamesall": "San Patricio", + "countyfipsall": "48409", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78353": { + "latitude": "26.88252", + "longitude": "-98.22368", + "city": "Encino", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "241", + "density": "0.5", + "countyfips": "48047", + "countyname": "Brooks", + "countyweights": "{\"48047\": \"100\"}", + "countynamesall": "Brooks", + "countyfipsall": "48047", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78355": { + "latitude": "27.19012", + "longitude": "-98.20251", + "city": "Falfurrias", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7168", + "density": "8.1", + "countyfips": "48047", + "countyname": "Brooks", + "countyweights": "{\"48047\": \"95.74\", \"48249\": \"4.17\", \"48273\": \"0.1\"}", + "countynamesall": "Brooks|Jim Wells|Kleberg", + "countyfipsall": "48047|48249|48273", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78357": { + "latitude": "27.84382", + "longitude": "-98.6217", + "city": "Freer", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2886", + "density": "3.7", + "countyfips": "48131", + "countyname": "Duval", + "countyweights": "{\"48131\": \"100\"}", + "countynamesall": "Duval", + "countyfipsall": "48131", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78358": { + "latitude": "28.06824", + "longitude": "-97.04427", + "city": "Fulton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "653", + "density": "480.6", + "countyfips": "48007", + "countyname": "Aransas", + "countyweights": "{\"48007\": \"100\"}", + "countynamesall": "Aransas", + "countyfipsall": "48007", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78359": { + "latitude": "27.92357", + "longitude": "-97.28712", + "city": "Gregory", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1977", + "density": "283.7", + "countyfips": "48409", + "countyname": "San Patricio", + "countyweights": "{\"48409\": \"100\"}", + "countynamesall": "San Patricio", + "countyfipsall": "48409", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78361": { + "latitude": "27.10434", + "longitude": "-98.78675", + "city": "Hebbronville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5320", + "density": "1.8", + "countyfips": "48247", + "countyname": "Jim Hogg", + "countyweights": "{\"48247\": \"99.07\", \"48131\": \"0.52\", \"48505\": \"0.41\"}", + "countynamesall": "Jim Hogg|Duval|Zapata", + "countyfipsall": "48247|48131|48505", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78362": { + "latitude": "27.86644", + "longitude": "-97.20199", + "city": "Ingleside", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10218", + "density": "207.7", + "countyfips": "48409", + "countyname": "San Patricio", + "countyweights": "{\"48409\": \"100\"}", + "countynamesall": "San Patricio", + "countyfipsall": "48409", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78363": { + "latitude": "27.44953", + "longitude": "-97.86267", + "city": "Kingsville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29544", + "density": "74.6", + "countyfips": "48273", + "countyname": "Kleberg", + "countyweights": "{\"48273\": \"100\"}", + "countynamesall": "Kleberg", + "countyfipsall": "48273", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78368": { + "latitude": "28.10546", + "longitude": "-97.8103", + "city": "Mathis", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9460", + "density": "16.9", + "countyfips": "48409", + "countyname": "San Patricio", + "countyweights": "{\"48409\": \"88.58\", \"48297\": \"11.42\"}", + "countynamesall": "San Patricio|Live Oak", + "countyfipsall": "48409|48297", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78369": { + "latitude": "27.36791", + "longitude": "-98.99745", + "city": "Mirando City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "416", + "density": "1.5", + "countyfips": "48479", + "countyname": "Webb", + "countyweights": "{\"48479\": \"100\"}", + "countynamesall": "Webb", + "countyfipsall": "48479", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78370": { + "latitude": "27.94872", + "longitude": "-97.60099", + "city": "Odem", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4952", + "density": "20.6", + "countyfips": "48409", + "countyname": "San Patricio", + "countyweights": "{\"48409\": \"100\"}", + "countynamesall": "San Patricio", + "countyfipsall": "48409", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78371": { + "latitude": "27.62829", + "longitude": "-98.95939", + "city": "Oilton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "153", + "density": "0.3", + "countyfips": "48479", + "countyname": "Webb", + "countyweights": "{\"48479\": \"100\"}", + "countynamesall": "Webb", + "countyfipsall": "48479", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78372": { + "latitude": "27.98728", + "longitude": "-98.0559", + "city": "Orange Grove", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5971", + "density": "10.8", + "countyfips": "48249", + "countyname": "Jim Wells", + "countyweights": "{\"48249\": \"99.23\", \"48297\": \"0.77\"}", + "countynamesall": "Jim Wells|Live Oak", + "countyfipsall": "48249|48297", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78373": { + "latitude": "27.77081", + "longitude": "-97.12146", + "city": "Port Aransas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4393", + "density": "101.8", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78374": { + "latitude": "27.89799", + "longitude": "-97.37808", + "city": "Portland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18369", + "density": "149.2", + "countyfips": "48409", + "countyname": "San Patricio", + "countyweights": "{\"48409\": \"100\"}", + "countynamesall": "San Patricio", + "countyfipsall": "48409", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78375": { + "latitude": "27.39448", + "longitude": "-98.14463", + "city": "Premont", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2951", + "density": "11.1", + "countyfips": "48249", + "countyname": "Jim Wells", + "countyweights": "{\"48249\": \"100\"}", + "countynamesall": "Jim Wells", + "countyfipsall": "48249", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78376": { + "latitude": "27.41844", + "longitude": "-98.51401", + "city": "Realitos", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "544", + "density": "0.9", + "countyfips": "48131", + "countyname": "Duval", + "countyweights": "{\"48131\": \"100\"}", + "countynamesall": "Duval", + "countyfipsall": "48131", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78377": { + "latitude": "28.35557", + "longitude": "-97.15776", + "city": "Refugio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3745", + "density": "3.2", + "countyfips": "48391", + "countyname": "Refugio", + "countyweights": "{\"48391\": \"100\"}", + "countynamesall": "Refugio", + "countyfipsall": "48391", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78379": { + "latitude": "27.30223", + "longitude": "-97.79593", + "city": "Riviera", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1413", + "density": "6.7", + "countyfips": "48273", + "countyname": "Kleberg", + "countyweights": "{\"48273\": \"100\"}", + "countynamesall": "Kleberg", + "countyfipsall": "48273", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78380": { + "latitude": "27.78905", + "longitude": "-97.74623", + "city": "Robstown", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24300", + "density": "27.9", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"99.71\", \"48249\": \"0.29\"}", + "countynamesall": "Nueces|Jim Wells", + "countyfipsall": "48355|48249", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78382": { + "latitude": "28.14388", + "longitude": "-97.05082", + "city": "Rockport", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21123", + "density": "81.0", + "countyfips": "48007", + "countyname": "Aransas", + "countyweights": "{\"48007\": \"100\"}", + "countynamesall": "Aransas", + "countyfipsall": "48007", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78383": { + "latitude": "28.09164", + "longitude": "-97.96378", + "city": "Sandia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4296", + "density": "10.8", + "countyfips": "48249", + "countyname": "Jim Wells", + "countyweights": "{\"48249\": \"49.48\", \"48297\": \"37.5\", \"48355\": \"13.03\"}", + "countynamesall": "Jim Wells|Live Oak|Nueces", + "countyfipsall": "48249|48297|48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78384": { + "latitude": "27.85315", + "longitude": "-98.37031", + "city": "San Diego", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5739", + "density": "4.9", + "countyfips": "48131", + "countyname": "Duval", + "countyweights": "{\"48131\": \"83.86\", \"48249\": \"16.14\"}", + "countynamesall": "Duval|Jim Wells", + "countyfipsall": "48131|48249", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78385": { + "latitude": "27.17648", + "longitude": "-97.82556", + "city": "Sarita", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "525", + "density": "1.0", + "countyfips": "48261", + "countyname": "Kenedy", + "countyweights": "{\"48261\": \"100\"}", + "countynamesall": "Kenedy", + "countyfipsall": "48261", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78387": { + "latitude": "28.0917", + "longitude": "-97.54469", + "city": "Sinton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9660", + "density": "17.4", + "countyfips": "48409", + "countyname": "San Patricio", + "countyweights": "{\"48409\": \"94.91\", \"48025\": \"5.09\"}", + "countynamesall": "San Patricio|Bee", + "countyfipsall": "48409|48025", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78389": { + "latitude": "28.24898", + "longitude": "-97.66068", + "city": "Skidmore", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1874", + "density": "5.7", + "countyfips": "48025", + "countyname": "Bee", + "countyweights": "{\"48025\": \"100\"}", + "countynamesall": "Bee", + "countyfipsall": "48025", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78390": { + "latitude": "27.9989", + "longitude": "-97.32981", + "city": "Taft", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5059", + "density": "11.4", + "countyfips": "48409", + "countyname": "San Patricio", + "countyweights": "{\"48409\": \"99.06\", \"48007\": \"0.94\"}", + "countynamesall": "San Patricio|Aransas", + "countyfipsall": "48409|48007", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78391": { + "latitude": "28.18201", + "longitude": "-97.73277", + "city": "Tynan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "283", + "density": "6.3", + "countyfips": "48025", + "countyname": "Bee", + "countyweights": "{\"48025\": \"100\"}", + "countynamesall": "Bee", + "countyfipsall": "48025", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78393": { + "latitude": "28.19994", + "longitude": "-97.36805", + "city": "Woodsboro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2161", + "density": "5.0", + "countyfips": "48391", + "countyname": "Refugio", + "countyweights": "{\"48391\": \"100\"}", + "countynamesall": "Refugio", + "countyfipsall": "48391", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78401": { + "latitude": "27.79816", + "longitude": "-97.40097", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5265", + "density": "943.5", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78402": { + "latitude": "27.82253", + "longitude": "-97.3967", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "236", + "density": "84.2", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78404": { + "latitude": "27.76805", + "longitude": "-97.39901", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17761", + "density": "2207.2", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78405": { + "latitude": "27.77425", + "longitude": "-97.43876", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15059", + "density": "1145.0", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78406": { + "latitude": "27.77125", + "longitude": "-97.51879", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2027", + "density": "60.8", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78407": { + "latitude": "27.81081", + "longitude": "-97.43899", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2704", + "density": "258.1", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78408": { + "latitude": "27.795", + "longitude": "-97.44693", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11583", + "density": "1006.7", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78409": { + "latitude": "27.80942", + "longitude": "-97.52284", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2725", + "density": "88.8", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78410": { + "latitude": "27.83848", + "longitude": "-97.59655", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28396", + "density": "479.8", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78411": { + "latitude": "27.72946", + "longitude": "-97.38567", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25987", + "density": "1673.7", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78412": { + "latitude": "27.70386", + "longitude": "-97.34302", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "41977", + "density": "1842.2", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78413": { + "latitude": "27.68352", + "longitude": "-97.40538", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40644", + "density": "1955.3", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78414": { + "latitude": "27.6603", + "longitude": "-97.36893", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40657", + "density": "1094.2", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78415": { + "latitude": "27.6566", + "longitude": "-97.48182", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40377", + "density": "150.4", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78416": { + "latitude": "27.75202", + "longitude": "-97.43651", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15973", + "density": "2103.3", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78417": { + "latitude": "27.73965", + "longitude": "-97.46681", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4095", + "density": "173.5", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78418": { + "latitude": "27.6155", + "longitude": "-97.26563", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30312", + "density": "269.4", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"99.98\", \"48273\": \"0.02\"}", + "countynamesall": "Nueces|Kleberg", + "countyfipsall": "48355|48273", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78419": { + "latitude": "27.69491", + "longitude": "-97.26889", + "city": "Corpus Christi", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "778", + "density": "233.9", + "countyfips": "48355", + "countyname": "Nueces", + "countyweights": "{\"48355\": \"100\"}", + "countynamesall": "Nueces", + "countyfipsall": "48355", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78501": { + "latitude": "26.21583", + "longitude": "-98.23917", + "city": "Mcallen", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "63066", + "density": "1587.5", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78503": { + "latitude": "26.16531", + "longitude": "-98.24764", + "city": "Mcallen", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21644", + "density": "492.7", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78504": { + "latitude": "26.27199", + "longitude": "-98.23657", + "city": "Mcallen", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "57410", + "density": "1253.7", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78516": { + "latitude": "26.14583", + "longitude": "-98.11938", + "city": "Alamo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34990", + "density": "355.2", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78520": { + "latitude": "25.96396", + "longitude": "-97.5501", + "city": "Brownsville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "62490", + "density": "653.4", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78521": { + "latitude": "25.95038", + "longitude": "-97.32168", + "city": "Brownsville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "90687", + "density": "375.8", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78526": { + "latitude": "25.99101", + "longitude": "-97.43946", + "city": "Brownsville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48995", + "density": "428.8", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78535": { + "latitude": "26.25421", + "longitude": "-97.74282", + "city": "Combes", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "601", + "density": "190.0", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78536": { + "latitude": "26.64926", + "longitude": "-98.4511", + "city": "Delmita", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "363", + "density": "2.4", + "countyfips": "48427", + "countyname": "Starr", + "countyweights": "{\"48427\": \"100\"}", + "countynamesall": "Starr", + "countyfipsall": "48427", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78537": { + "latitude": "26.16192", + "longitude": "-98.05669", + "city": "Donna", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48072", + "density": "297.1", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78538": { + "latitude": "26.37275", + "longitude": "-97.97821", + "city": "Edcouch", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11137", + "density": "60.6", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78539": { + "latitude": "26.27915", + "longitude": "-98.18321", + "city": "Edinburg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37380", + "density": "1098.3", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78541": { + "latitude": "26.44809", + "longitude": "-98.2842", + "city": "Edinburg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "44860", + "density": "59.9", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78542": { + "latitude": "26.452", + "longitude": "-98.08433", + "city": "Edinburg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "77336", + "density": "175.7", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78543": { + "latitude": "26.29737", + "longitude": "-97.99997", + "city": "Elsa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8689", + "density": "563.8", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78545": { + "latitude": "26.59041", + "longitude": "-99.11813", + "city": "Falcon Heights", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "402", + "density": "11.7", + "countyfips": "48427", + "countyname": "Starr", + "countyweights": "{\"48427\": \"64.32\", \"48505\": \"35.68\"}", + "countynamesall": "Starr|Zapata", + "countyfipsall": "48427|48505", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78548": { + "latitude": "26.2708", + "longitude": "-98.65456", + "city": "Grulla", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "627", + "density": "61.9", + "countyfips": "48427", + "countyname": "Starr", + "countyweights": "{\"48427\": \"100\"}", + "countynamesall": "Starr", + "countyfipsall": "48427", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78549": { + "latitude": "26.46089", + "longitude": "-98.03372", + "city": "Hargill", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1010", + "density": "14.1", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78550": { + "latitude": "26.25668", + "longitude": "-97.66671", + "city": "Harlingen", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "52644", + "density": "212.6", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78552": { + "latitude": "26.19515", + "longitude": "-97.75025", + "city": "Harlingen", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37948", + "density": "297.9", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78557": { + "latitude": "26.10688", + "longitude": "-98.24342", + "city": "Hidalgo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13970", + "density": "459.8", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78558": { + "latitude": "26.29962", + "longitude": "-98.03525", + "city": "La Blanca", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1021", + "density": "290.5", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78559": { + "latitude": "26.14827", + "longitude": "-97.83136", + "city": "La Feria", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13255", + "density": "145.1", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78560": { + "latitude": "26.24615", + "longitude": "-98.49434", + "city": "La Joya", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4847", + "density": "138.5", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78561": { + "latitude": "26.47803", + "longitude": "-97.91813", + "city": "Lasara", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "669", + "density": "141.5", + "countyfips": "48489", + "countyname": "Willacy", + "countyweights": "{\"48489\": \"100\"}", + "countynamesall": "Willacy", + "countyfipsall": "48489", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78562": { + "latitude": "26.29361", + "longitude": "-97.89885", + "city": "La Villa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4341", + "density": "66.4", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78563": { + "latitude": "26.65735", + "longitude": "-98.25679", + "city": "Linn", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "269", + "density": "0.4", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78564": { + "latitude": "26.67347", + "longitude": "-99.10303", + "city": "Lopeno", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "202", + "density": "1.3", + "countyfips": "48505", + "countyname": "Zapata", + "countyweights": "{\"48505\": \"100\"}", + "countynamesall": "Zapata", + "countyfipsall": "48505", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78565": { + "latitude": "26.24351", + "longitude": "-98.55199", + "city": "Los Ebanos", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "84", + "density": "6.1", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78566": { + "latitude": "26.14669", + "longitude": "-97.40332", + "city": "Los Fresnos", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17398", + "density": "58.4", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78567": { + "latitude": "26.05192", + "longitude": "-97.73932", + "city": "Los Indios", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "443", + "density": "92.7", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78569": { + "latitude": "26.37181", + "longitude": "-97.74315", + "city": "Lyford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4101", + "density": "11.9", + "countyfips": "48489", + "countyname": "Willacy", + "countyweights": "{\"48489\": \"96.43\", \"48215\": \"2.13\", \"48061\": \"1.44\"}", + "countynamesall": "Willacy|Hidalgo|Cameron", + "countyfipsall": "48489|48215|48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78570": { + "latitude": "26.17478", + "longitude": "-97.91093", + "city": "Mercedes", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "33949", + "density": "175.8", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78572": { + "latitude": "26.2281", + "longitude": "-98.37666", + "city": "Mission", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "80601", + "density": "401.4", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78573": { + "latitude": "26.29368", + "longitude": "-98.30077", + "city": "Mission", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38826", + "density": "439.2", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78574": { + "latitude": "26.31893", + "longitude": "-98.37005", + "city": "Mission", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "62616", + "density": "411.0", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78575": { + "latitude": "26.02476", + "longitude": "-97.52767", + "city": "Olmito", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12215", + "density": "382.3", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78576": { + "latitude": "26.30716", + "longitude": "-98.47604", + "city": "Penitas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10600", + "density": "106.5", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78577": { + "latitude": "26.15047", + "longitude": "-98.19104", + "city": "Pharr", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "78103", + "density": "949.5", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78578": { + "latitude": "26.05308", + "longitude": "-97.31838", + "city": "Port Isabel", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11772", + "density": "75.9", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78579": { + "latitude": "26.08664", + "longitude": "-97.95966", + "city": "Progreso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5836", + "density": "269.0", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78580": { + "latitude": "26.48667", + "longitude": "-97.73791", + "city": "Raymondville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14839", + "density": "23.7", + "countyfips": "48489", + "countyname": "Willacy", + "countyweights": "{\"48489\": \"99.68\", \"48261\": \"0.32\"}", + "countynamesall": "Willacy|Kenedy", + "countyfipsall": "48489|48261", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78582": { + "latitude": "26.55556", + "longitude": "-98.73564", + "city": "Rio Grande City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43074", + "density": "25.5", + "countyfips": "48427", + "countyname": "Starr", + "countyweights": "{\"48427\": \"100\"}", + "countynamesall": "Starr", + "countyfipsall": "48427", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78583": { + "latitude": "26.26419", + "longitude": "-97.48614", + "city": "Rio Hondo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7137", + "density": "31.2", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78584": { + "latitude": "26.57855", + "longitude": "-98.98754", + "city": "Roma", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19175", + "density": "31.1", + "countyfips": "48427", + "countyname": "Starr", + "countyweights": "{\"48427\": \"100\"}", + "countynamesall": "Starr", + "countyfipsall": "48427", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78585": { + "latitude": "26.52603", + "longitude": "-99.12133", + "city": "Salineno", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "356", + "density": "13.6", + "countyfips": "48427", + "countyname": "Starr", + "countyweights": "{\"48427\": \"100\"}", + "countynamesall": "Starr", + "countyfipsall": "48427", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78586": { + "latitude": "26.10508", + "longitude": "-97.63108", + "city": "San Benito", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "56692", + "density": "124.1", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78588": { + "latitude": "26.73785", + "longitude": "-98.39723", + "city": "San Isidro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "133", + "density": "1.3", + "countyfips": "48427", + "countyname": "Starr", + "countyweights": "{\"48427\": \"100\"}", + "countynamesall": "Starr", + "countyfipsall": "48427", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78589": { + "latitude": "26.16789", + "longitude": "-98.15483", + "city": "San Juan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "41291", + "density": "767.0", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78590": { + "latitude": "26.50603", + "longitude": "-97.6523", + "city": "San Perlita", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "354", + "density": "49.6", + "countyfips": "48489", + "countyname": "Willacy", + "countyweights": "{\"48489\": \"100\"}", + "countynamesall": "Willacy", + "countyfipsall": "48489", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78591": { + "latitude": "26.58074", + "longitude": "-98.51372", + "city": "Santa Elena", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "249", + "density": "0.8", + "countyfips": "48427", + "countyname": "Starr", + "countyweights": "{\"48427\": \"100\"}", + "countynamesall": "Starr", + "countyfipsall": "48427", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78592": { + "latitude": "26.06523", + "longitude": "-97.84603", + "city": "Santa Maria", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "676", + "density": "74.7", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78593": { + "latitude": "26.27385", + "longitude": "-97.82225", + "city": "Santa Rosa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5895", + "density": "58.4", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78594": { + "latitude": "26.34519", + "longitude": "-97.79489", + "city": "Sebastian", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1555", + "density": "324.6", + "countyfips": "48489", + "countyname": "Willacy", + "countyweights": "{\"48489\": \"100\"}", + "countynamesall": "Willacy", + "countyfipsall": "48489", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78595": { + "latitude": "26.29144", + "longitude": "-98.54548", + "city": "Sullivan City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5959", + "density": "153.6", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78596": { + "latitude": "26.15806", + "longitude": "-97.98925", + "city": "Weslaco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "67269", + "density": "437.5", + "countyfips": "48215", + "countyname": "Hidalgo", + "countyweights": "{\"48215\": \"100\"}", + "countynamesall": "Hidalgo", + "countyfipsall": "48215", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78597": { + "latitude": "26.2491", + "longitude": "-97.19744", + "city": "South Padre Island", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2818", + "density": "120.8", + "countyfips": "48061", + "countyname": "Cameron", + "countyweights": "{\"48061\": \"100\"}", + "countynamesall": "Cameron", + "countyfipsall": "48061", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78598": { + "latitude": "26.55778", + "longitude": "-97.4368", + "city": "Port Mansfield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "87", + "density": "5.9", + "countyfips": "48489", + "countyname": "Willacy", + "countyweights": "{\"48489\": \"100\"}", + "countynamesall": "Willacy", + "countyfipsall": "48489", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78602": { + "latitude": "30.12383", + "longitude": "-97.32841", + "city": "Bastrop", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29795", + "density": "59.4", + "countyfips": "48021", + "countyname": "Bastrop", + "countyweights": "{\"48021\": \"100\"}", + "countynamesall": "Bastrop", + "countyfipsall": "48021", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78605": { + "latitude": "30.7822", + "longitude": "-98.04563", + "city": "Bertram", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6275", + "density": "14.8", + "countyfips": "48053", + "countyname": "Burnet", + "countyweights": "{\"48053\": \"100\"}", + "countynamesall": "Burnet", + "countyfipsall": "48053", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78606": { + "latitude": "30.0926", + "longitude": "-98.46682", + "city": "Blanco", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5547", + "density": "8.8", + "countyfips": "48031", + "countyname": "Blanco", + "countyweights": "{\"48031\": \"95.81\", \"48091\": \"2.71\", \"48259\": \"1.48\"}", + "countynamesall": "Blanco|Comal|Kendall", + "countyfipsall": "48031|48091|48259", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78607": { + "latitude": "30.82439", + "longitude": "-98.47564", + "city": "Bluffton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "170", + "density": "5.4", + "countyfips": "48299", + "countyname": "Llano", + "countyweights": "{\"48299\": \"100\"}", + "countynamesall": "Llano", + "countyfipsall": "48299", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78608": { + "latitude": "30.93527", + "longitude": "-97.93381", + "city": "Briggs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "470", + "density": "4.7", + "countyfips": "48053", + "countyname": "Burnet", + "countyweights": "{\"48053\": \"100\"}", + "countynamesall": "Burnet", + "countyfipsall": "48053", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78609": { + "latitude": "30.76314", + "longitude": "-98.44875", + "city": "Buchanan Dam", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1991", + "density": "32.8", + "countyfips": "48299", + "countyname": "Llano", + "countyweights": "{\"48299\": \"100\"}", + "countynamesall": "Llano", + "countyfipsall": "48299", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78610": { + "latitude": "30.07722", + "longitude": "-97.83741", + "city": "Buda", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38525", + "density": "161.0", + "countyfips": "48209", + "countyname": "Hays", + "countyweights": "{\"48209\": \"90.61\", \"48453\": \"8.81\", \"48055\": \"0.58\"}", + "countynamesall": "Hays|Travis|Caldwell", + "countyfipsall": "48209|48453|48055", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78611": { + "latitude": "30.79177", + "longitude": "-98.26018", + "city": "Burnet", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12921", + "density": "18.0", + "countyfips": "48053", + "countyname": "Burnet", + "countyweights": "{\"48053\": \"100\"}", + "countynamesall": "Burnet", + "countyfipsall": "48053", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78612": { + "latitude": "30.0942", + "longitude": "-97.48686", + "city": "Cedar Creek", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13802", + "density": "56.8", + "countyfips": "48021", + "countyname": "Bastrop", + "countyweights": "{\"48021\": \"94.8\", \"48453\": \"5.2\"}", + "countynamesall": "Bastrop|Travis", + "countyfipsall": "48021|48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78613": { + "latitude": "30.50395", + "longitude": "-97.82462", + "city": "Cedar Park", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "81943", + "density": "1123.8", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"87.1\", \"48453\": \"12.9\"}", + "countynamesall": "Williamson|Travis", + "countyfipsall": "48491|48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78614": { + "latitude": "29.41742", + "longitude": "-97.59347", + "city": "Cost", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "599", + "density": "4.6", + "countyfips": "48177", + "countyname": "Gonzales", + "countyweights": "{\"48177\": \"100\"}", + "countynamesall": "Gonzales", + "countyfipsall": "48177", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78615": { + "latitude": "30.46862", + "longitude": "-97.38362", + "city": "Coupland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "971", + "density": "7.1", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"60.23\", \"48453\": \"39.77\"}", + "countynamesall": "Williamson|Travis", + "countyfipsall": "48491|48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78616": { + "latitude": "29.94016", + "longitude": "-97.56199", + "city": "Dale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8918", + "density": "31.3", + "countyfips": "48055", + "countyname": "Caldwell", + "countyweights": "{\"48055\": \"64.41\", \"48021\": \"35.59\"}", + "countynamesall": "Caldwell|Bastrop", + "countyfipsall": "48055|48021", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78617": { + "latitude": "30.14719", + "longitude": "-97.59614", + "city": "Del Valle", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28930", + "density": "160.8", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"79.65\", \"48021\": \"20.35\"}", + "countynamesall": "Travis|Bastrop", + "countyfipsall": "48453|48021", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78618": { + "latitude": "30.47773", + "longitude": "-99.16514", + "city": "Doss", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "338", + "density": "0.8", + "countyfips": "48171", + "countyname": "Gillespie", + "countyweights": "{\"48171\": \"81.79\", \"48319\": \"18.21\"}", + "countynamesall": "Gillespie|Mason", + "countyfipsall": "48171|48319", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78619": { + "latitude": "30.11222", + "longitude": "-98.03327", + "city": "Driftwood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4505", + "density": "45.1", + "countyfips": "48209", + "countyname": "Hays", + "countyweights": "{\"48209\": \"100\"}", + "countynamesall": "Hays", + "countyfipsall": "48209", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78620": { + "latitude": "30.21895", + "longitude": "-98.12894", + "city": "Dripping Springs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17590", + "density": "39.4", + "countyfips": "48209", + "countyname": "Hays", + "countyweights": "{\"48209\": \"91.15\", \"48453\": \"8.44\", \"48031\": \"0.41\"}", + "countynamesall": "Hays|Travis|Blanco", + "countyfipsall": "48209|48453|48031", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78621": { + "latitude": "30.3385", + "longitude": "-97.36145", + "city": "Elgin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23936", + "density": "49.5", + "countyfips": "48021", + "countyname": "Bastrop", + "countyweights": "{\"48021\": \"71.45\", \"48453\": \"23.69\", \"48287\": \"2.65\", \"48491\": \"2.21\"}", + "countynamesall": "Bastrop|Travis|Lee|Williamson", + "countyfipsall": "48021|48453|48287|48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78622": { + "latitude": "29.75402", + "longitude": "-97.77606", + "city": "Fentress", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "237", + "density": "110.8", + "countyfips": "48055", + "countyname": "Caldwell", + "countyweights": "{\"48055\": \"100\"}", + "countynamesall": "Caldwell", + "countyfipsall": "48055", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78623": { + "latitude": "29.97297", + "longitude": "-98.23303", + "city": "Fischer", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1113", + "density": "20.9", + "countyfips": "48091", + "countyname": "Comal", + "countyweights": "{\"48091\": \"95.82\", \"48209\": \"4.18\"}", + "countynamesall": "Comal|Hays", + "countyfipsall": "48091|48209", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78624": { + "latitude": "30.28151", + "longitude": "-98.87712", + "city": "Fredericksburg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22444", + "density": "12.2", + "countyfips": "48171", + "countyname": "Gillespie", + "countyweights": "{\"48171\": \"97.94\", \"48259\": \"2.06\"}", + "countynamesall": "Gillespie|Kendall", + "countyfipsall": "48171|48259", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78626": { + "latitude": "30.66539", + "longitude": "-97.59735", + "city": "Georgetown", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36556", + "density": "151.6", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"100\"}", + "countynamesall": "Williamson", + "countyfipsall": "48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78628": { + "latitude": "30.64104", + "longitude": "-97.75111", + "city": "Georgetown", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35601", + "density": "187.4", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"100\"}", + "countynamesall": "Williamson", + "countyfipsall": "48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78629": { + "latitude": "29.47723", + "longitude": "-97.4517", + "city": "Gonzales", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12393", + "density": "11.2", + "countyfips": "48177", + "countyname": "Gonzales", + "countyweights": "{\"48177\": \"99.76\", \"48123\": \"0.24\"}", + "countynamesall": "Gonzales|DeWitt", + "countyfipsall": "48177|48123", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78631": { + "latitude": "30.33775", + "longitude": "-99.3053", + "city": "Harper", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2964", + "density": "3.5", + "countyfips": "48171", + "countyname": "Gillespie", + "countyweights": "{\"48171\": \"76.08\", \"48267\": \"13.4\", \"48265\": \"10.52\"}", + "countynamesall": "Gillespie|Kimble|Kerr", + "countyfipsall": "48171|48267|48265", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78632": { + "latitude": "29.69632", + "longitude": "-97.47048", + "city": "Harwood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1003", + "density": "4.0", + "countyfips": "48177", + "countyname": "Gonzales", + "countyweights": "{\"48177\": \"62.31\", \"48055\": \"37.69\"}", + "countynamesall": "Gonzales|Caldwell", + "countyfipsall": "48177|48055", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78633": { + "latitude": "30.74198", + "longitude": "-97.75432", + "city": "Georgetown", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25853", + "density": "121.3", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"100\"}", + "countynamesall": "Williamson", + "countyfipsall": "48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78634": { + "latitude": "30.55906", + "longitude": "-97.54471", + "city": "Hutto", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34447", + "density": "208.9", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"98.32\", \"48453\": \"1.68\"}", + "countynamesall": "Williamson|Travis", + "countyfipsall": "48491|48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78635": { + "latitude": "30.21089", + "longitude": "-98.55961", + "city": "Hye", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "564", + "density": "13.7", + "countyfips": "48031", + "countyname": "Blanco", + "countyweights": "{\"48031\": \"100\"}", + "countynamesall": "Blanco", + "countyfipsall": "48031", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78636": { + "latitude": "30.30503", + "longitude": "-98.41888", + "city": "Johnson City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3555", + "density": "3.9", + "countyfips": "48031", + "countyname": "Blanco", + "countyweights": "{\"48031\": \"100\"}", + "countynamesall": "Blanco", + "countyfipsall": "48031", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78638": { + "latitude": "29.65691", + "longitude": "-97.79496", + "city": "Kingsbury", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2133", + "density": "7.2", + "countyfips": "48187", + "countyname": "Guadalupe", + "countyweights": "{\"48187\": \"100\"}", + "countynamesall": "Guadalupe", + "countyfipsall": "48187", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78639": { + "latitude": "30.66283", + "longitude": "-98.44051", + "city": "Kingsland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8792", + "density": "77.2", + "countyfips": "48299", + "countyname": "Llano", + "countyweights": "{\"48299\": \"87.35\", \"48053\": \"12.65\"}", + "countynamesall": "Llano|Burnet", + "countyfipsall": "48299|48053", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78640": { + "latitude": "29.99495", + "longitude": "-97.82813", + "city": "Kyle", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "58790", + "density": "247.6", + "countyfips": "48209", + "countyname": "Hays", + "countyweights": "{\"48209\": \"97.32\", \"48055\": \"2.68\"}", + "countynamesall": "Hays|Caldwell", + "countyfipsall": "48209|48055", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78641": { + "latitude": "30.56175", + "longitude": "-97.91516", + "city": "Leander", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "72078", + "density": "220.2", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"83.79\", \"48453\": \"16.21\"}", + "countynamesall": "Williamson|Travis", + "countyfipsall": "48491|48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78642": { + "latitude": "30.69726", + "longitude": "-97.94692", + "city": "Liberty Hill", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12363", + "density": "47.7", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"97.69\", \"48053\": \"2.31\"}", + "countynamesall": "Williamson|Burnet", + "countyfipsall": "48491|48053", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78643": { + "latitude": "30.69024", + "longitude": "-98.69483", + "city": "Llano", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6298", + "density": "3.5", + "countyfips": "48299", + "countyname": "Llano", + "countyweights": "{\"48299\": \"99.72\", \"48031\": \"0.28\"}", + "countynamesall": "Llano|Blanco", + "countyfipsall": "48299|48031", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78644": { + "latitude": "29.87049", + "longitude": "-97.67527", + "city": "Lockhart", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18390", + "density": "38.0", + "countyfips": "48055", + "countyname": "Caldwell", + "countyweights": "{\"48055\": \"100\"}", + "countynamesall": "Caldwell", + "countyfipsall": "48055", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78645": { + "latitude": "30.44902", + "longitude": "-97.96999", + "city": "Leander", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11579", + "density": "140.7", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78648": { + "latitude": "29.69106", + "longitude": "-97.6345", + "city": "Luling", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8148", + "density": "21.6", + "countyfips": "48055", + "countyname": "Caldwell", + "countyweights": "{\"48055\": \"93.58\", \"48187\": \"4.36\", \"48177\": \"2.06\"}", + "countynamesall": "Caldwell|Guadalupe|Gonzales", + "countyfipsall": "48055|48187|48177", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78650": { + "latitude": "30.29937", + "longitude": "-97.2184", + "city": "McDade", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1632", + "density": "9.4", + "countyfips": "48021", + "countyname": "Bastrop", + "countyweights": "{\"48021\": \"90.06\", \"48287\": \"9.94\"}", + "countynamesall": "Bastrop|Lee", + "countyfipsall": "48021|48287", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78652": { + "latitude": "30.13281", + "longitude": "-97.87467", + "city": "Manchaca", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5374", + "density": "119.9", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"77.7\", \"48209\": \"22.3\"}", + "countynamesall": "Travis|Hays", + "countyfipsall": "48453|48209", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78653": { + "latitude": "30.33941", + "longitude": "-97.52363", + "city": "Manor", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24313", + "density": "89.5", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78654": { + "latitude": "30.57233", + "longitude": "-98.20735", + "city": "Marble Falls", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18250", + "density": "35.1", + "countyfips": "48053", + "countyname": "Burnet", + "countyweights": "{\"48053\": \"96.73\", \"48453\": \"3.27\"}", + "countynamesall": "Burnet|Travis", + "countyfipsall": "48053|48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78655": { + "latitude": "29.81446", + "longitude": "-97.84018", + "city": "Martindale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2845", + "density": "30.8", + "countyfips": "48055", + "countyname": "Caldwell", + "countyweights": "{\"48055\": \"75.1\", \"48187\": \"24.9\"}", + "countynamesall": "Caldwell|Guadalupe", + "countyfipsall": "48055|48187", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78656": { + "latitude": "29.90047", + "longitude": "-97.80868", + "city": "Maxwell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2416", + "density": "43.6", + "countyfips": "48055", + "countyname": "Caldwell", + "countyweights": "{\"48055\": \"98.28\", \"48209\": \"1.72\"}", + "countynamesall": "Caldwell|Hays", + "countyfipsall": "48055|48209", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78657": { + "latitude": "30.53098", + "longitude": "-98.37775", + "city": "Horseshoe Bay", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6277", + "density": "61.5", + "countyfips": "48299", + "countyname": "Llano", + "countyweights": "{\"48299\": \"62.57\", \"48053\": \"37.43\"}", + "countynamesall": "Llano|Burnet", + "countyfipsall": "48299|48053", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78659": { + "latitude": "30.20888", + "longitude": "-97.12359", + "city": "Paige", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2616", + "density": "8.9", + "countyfips": "48021", + "countyname": "Bastrop", + "countyweights": "{\"48021\": \"89.18\", \"48287\": \"10.82\"}", + "countynamesall": "Bastrop|Lee", + "countyfipsall": "48021|48287", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78660": { + "latitude": "30.44304", + "longitude": "-97.59548", + "city": "Pflugerville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "91300", + "density": "776.0", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78661": { + "latitude": "29.72559", + "longitude": "-97.75364", + "city": "Prairie Lea", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "329", + "density": "50.3", + "countyfips": "48055", + "countyname": "Caldwell", + "countyweights": "{\"48055\": \"100\"}", + "countynamesall": "Caldwell", + "countyfipsall": "48055", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78662": { + "latitude": "29.93523", + "longitude": "-97.43421", + "city": "Red Rock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2201", + "density": "10.6", + "countyfips": "48021", + "countyname": "Bastrop", + "countyweights": "{\"48021\": \"85.36\", \"48055\": \"14.64\"}", + "countynamesall": "Bastrop|Caldwell", + "countyfipsall": "48021|48055", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78663": { + "latitude": "30.42067", + "longitude": "-98.33532", + "city": "Round Mountain", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "873", + "density": "2.7", + "countyfips": "48031", + "countyname": "Blanco", + "countyweights": "{\"48031\": \"91.55\", \"48453\": \"4.83\", \"48209\": \"3.62\"}", + "countynamesall": "Blanco|Travis|Hays", + "countyfipsall": "48031|48453|48209", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78664": { + "latitude": "30.50479", + "longitude": "-97.64577", + "city": "Round Rock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "64686", + "density": "1506.6", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"88.5\", \"48453\": \"11.5\"}", + "countynamesall": "Williamson|Travis", + "countyfipsall": "48491|48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78665": { + "latitude": "30.54488", + "longitude": "-97.64378", + "city": "Round Rock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "49074", + "density": "1010.1", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"100\"}", + "countynamesall": "Williamson", + "countyfipsall": "48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78666": { + "latitude": "29.87958", + "longitude": "-97.96642", + "city": "San Marcos", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "82923", + "density": "181.3", + "countyfips": "48209", + "countyname": "Hays", + "countyweights": "{\"48209\": \"87.17\", \"48187\": \"9.58\", \"48055\": \"3.24\", \"48091\": \"0.02\"}", + "countynamesall": "Hays|Guadalupe|Caldwell|Comal", + "countyfipsall": "48209|48187|48055|48091", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78669": { + "latitude": "30.42264", + "longitude": "-98.12244", + "city": "Spicewood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12901", + "density": "35.5", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"68.61\", \"48053\": \"29.03\", \"48031\": \"2.36\"}", + "countynamesall": "Travis|Burnet|Blanco", + "countyfipsall": "48453|48053|48031", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78670": { + "latitude": "29.77133", + "longitude": "-97.82003", + "city": "Staples", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "112", + "density": "15.2", + "countyfips": "48187", + "countyname": "Guadalupe", + "countyweights": "{\"48187\": \"100\"}", + "countynamesall": "Guadalupe", + "countyfipsall": "48187", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78671": { + "latitude": "30.21635", + "longitude": "-98.62376", + "city": "Stonewall", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "706", + "density": "5.9", + "countyfips": "48171", + "countyname": "Gillespie", + "countyweights": "{\"48171\": \"97.25\", \"48031\": \"2.75\"}", + "countynamesall": "Gillespie|Blanco", + "countyfipsall": "48171|48031", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78672": { + "latitude": "30.85966", + "longitude": "-98.4711", + "city": "Tow", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1283", + "density": "37.4", + "countyfips": "48299", + "countyname": "Llano", + "countyweights": "{\"48299\": \"100\"}", + "countynamesall": "Llano", + "countyfipsall": "48299", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78675": { + "latitude": "30.44589", + "longitude": "-98.68497", + "city": "Willow City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "314", + "density": "1.6", + "countyfips": "48171", + "countyname": "Gillespie", + "countyweights": "{\"48171\": \"100\"}", + "countynamesall": "Gillespie", + "countyfipsall": "48171", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78676": { + "latitude": "30.03286", + "longitude": "-98.14588", + "city": "Wimberley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13124", + "density": "30.2", + "countyfips": "48209", + "countyname": "Hays", + "countyweights": "{\"48209\": \"99.76\", \"48031\": \"0.24\"}", + "countynamesall": "Hays|Blanco", + "countyfipsall": "48209|48031", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78677": { + "latitude": "29.34997", + "longitude": "-97.58021", + "city": "Wrightsboro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39", + "density": "0.6", + "countyfips": "48177", + "countyname": "Gonzales", + "countyweights": "{\"48177\": \"100\"}", + "countynamesall": "Gonzales", + "countyfipsall": "48177", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78681": { + "latitude": "30.53328", + "longitude": "-97.7247", + "city": "Round Rock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "58155", + "density": "1030.7", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"100\"}", + "countynamesall": "Williamson", + "countyfipsall": "48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78701": { + "latitude": "30.27049", + "longitude": "-97.74235", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10848", + "density": "2571.8", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78702": { + "latitude": "30.26327", + "longitude": "-97.71432", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23671", + "density": "1828.6", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78703": { + "latitude": "30.29409", + "longitude": "-97.76571", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "20407", + "density": "1413.5", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78704": { + "latitude": "30.24316", + "longitude": "-97.76536", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48746", + "density": "2165.0", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78705": { + "latitude": "30.29437", + "longitude": "-97.73855", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34549", + "density": "6075.5", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78712": { + "latitude": "30.28502", + "longitude": "-97.73477", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "880", + "density": "1067.2", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78717": { + "latitude": "30.4899", + "longitude": "-97.75398", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30657", + "density": "921.6", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"100\"}", + "countynamesall": "Williamson", + "countyfipsall": "48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78719": { + "latitude": "30.14483", + "longitude": "-97.67083", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1709", + "density": "35.5", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78721": { + "latitude": "30.27005", + "longitude": "-97.68365", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12110", + "density": "1263.0", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78722": { + "latitude": "30.28997", + "longitude": "-97.71465", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7180", + "density": "1831.9", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78723": { + "latitude": "30.30427", + "longitude": "-97.6857", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35725", + "density": "1987.0", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78724": { + "latitude": "30.2944", + "longitude": "-97.61415", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25723", + "density": "401.9", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78725": { + "latitude": "30.23581", + "longitude": "-97.60837", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8469", + "density": "185.3", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78726": { + "latitude": "30.42949", + "longitude": "-97.84206", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14040", + "density": "497.8", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\", \"48491\": \"0\"}", + "countynamesall": "Travis|Williamson", + "countyfipsall": "48453|48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78727": { + "latitude": "30.4295", + "longitude": "-97.71743", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30561", + "density": "1377.2", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"99.93\", \"48491\": \"0.07\"}", + "countynamesall": "Travis|Williamson", + "countyfipsall": "48453|48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78728": { + "latitude": "30.45654", + "longitude": "-97.68986", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21125", + "density": "1005.7", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"91.38\", \"48491\": \"8.62\"}", + "countynamesall": "Travis|Williamson", + "countyfipsall": "48453|48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78729": { + "latitude": "30.45842", + "longitude": "-97.75595", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28644", + "density": "1204.2", + "countyfips": "48491", + "countyname": "Williamson", + "countyweights": "{\"48491\": \"91.62\", \"48453\": \"8.38\"}", + "countynamesall": "Williamson|Travis", + "countyfipsall": "48491|48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78730": { + "latitude": "30.36489", + "longitude": "-97.83731", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9803", + "density": "259.7", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78731": { + "latitude": "30.34736", + "longitude": "-97.76847", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27298", + "density": "1216.6", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78732": { + "latitude": "30.37913", + "longitude": "-97.89309", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17780", + "density": "514.8", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78733": { + "latitude": "30.32323", + "longitude": "-97.87609", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8927", + "density": "301.0", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78734": { + "latitude": "30.37853", + "longitude": "-97.94961", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19452", + "density": "373.2", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78735": { + "latitude": "30.26591", + "longitude": "-97.86659", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18122", + "density": "340.5", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78736": { + "latitude": "30.26109", + "longitude": "-97.95944", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10163", + "density": "135.4", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78737": { + "latitude": "30.1878", + "longitude": "-97.95965", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17173", + "density": "174.7", + "countyfips": "48209", + "countyname": "Hays", + "countyweights": "{\"48209\": \"70.98\", \"48453\": \"29.02\"}", + "countynamesall": "Hays|Travis", + "countyfipsall": "48209|48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78738": { + "latitude": "30.31942", + "longitude": "-97.95838", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15986", + "density": "363.2", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78739": { + "latitude": "30.17844", + "longitude": "-97.88868", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21040", + "density": "711.3", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78741": { + "latitude": "30.23049", + "longitude": "-97.71401", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "52114", + "density": "2651.4", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78742": { + "latitude": "30.24413", + "longitude": "-97.6583", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "887", + "density": "59.4", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78744": { + "latitude": "30.18276", + "longitude": "-97.7292", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "50123", + "density": "903.1", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78745": { + "latitude": "30.20686", + "longitude": "-97.79738", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "61907", + "density": "1789.3", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78746": { + "latitude": "30.29729", + "longitude": "-97.81054", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28608", + "density": "489.9", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78747": { + "latitude": "30.12652", + "longitude": "-97.74017", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21021", + "density": "341.5", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78748": { + "latitude": "30.16538", + "longitude": "-97.82343", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "51653", + "density": "1573.1", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78749": { + "latitude": "30.21378", + "longitude": "-97.85819", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38041", + "density": "1458.6", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78750": { + "latitude": "30.41827", + "longitude": "-97.80246", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "31734", + "density": "913.6", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"54.01\", \"48491\": \"45.99\"}", + "countynamesall": "Travis|Williamson", + "countyfipsall": "48453|48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78751": { + "latitude": "30.31082", + "longitude": "-97.72275", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16197", + "density": "2607.4", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78752": { + "latitude": "30.33181", + "longitude": "-97.70425", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "20881", + "density": "2410.9", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78753": { + "latitude": "30.38205", + "longitude": "-97.67361", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "60426", + "density": "2146.9", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78754": { + "latitude": "30.35574", + "longitude": "-97.64483", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26433", + "density": "770.1", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78756": { + "latitude": "30.32227", + "longitude": "-97.74017", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8694", + "density": "2008.2", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78757": { + "latitude": "30.35158", + "longitude": "-97.73252", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25706", + "density": "2018.9", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78758": { + "latitude": "30.388", + "longitude": "-97.70682", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48993", + "density": "2036.9", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"100\"}", + "countynamesall": "Travis", + "countyfipsall": "48453", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78759": { + "latitude": "30.40266", + "longitude": "-97.76104", + "city": "Austin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43298", + "density": "1201.3", + "countyfips": "48453", + "countyname": "Travis", + "countyweights": "{\"48453\": \"99.22\", \"48491\": \"0.78\"}", + "countynamesall": "Travis|Williamson", + "countyfipsall": "48453|48491", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78801": { + "latitude": "29.35664", + "longitude": "-99.87148", + "city": "Uvalde", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22518", + "density": "10.7", + "countyfips": "48463", + "countyname": "Uvalde", + "countyweights": "{\"48463\": \"100\"}", + "countynamesall": "Uvalde", + "countyfipsall": "48463", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78802": { + "latitude": "29.15506", + "longitude": "-99.88181", + "city": "Uvalde", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21", + "density": "0.7", + "countyfips": "48463", + "countyname": "Uvalde", + "countyweights": "{\"48463\": \"100\"}", + "countynamesall": "Uvalde", + "countyfipsall": "48463", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78827": { + "latitude": "28.42466", + "longitude": "-99.73537", + "city": "Asherton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1173", + "density": "4.4", + "countyfips": "48127", + "countyname": "Dimmit", + "countyweights": "{\"48127\": \"100\"}", + "countynamesall": "Dimmit", + "countyfipsall": "48127", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78828": { + "latitude": "29.86442", + "longitude": "-100.01737", + "city": "Barksdale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "117", + "density": "0.3", + "countyfips": "48137", + "countyname": "Edwards", + "countyweights": "{\"48137\": \"74.42\", \"48385\": \"25.58\"}", + "countynamesall": "Edwards|Real", + "countyfipsall": "48137|48385", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78829": { + "latitude": "28.88992", + "longitude": "-99.5591", + "city": "Batesville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1448", + "density": "1.1", + "countyfips": "48507", + "countyname": "Zavala", + "countyweights": "{\"48507\": \"100\"}", + "countynamesall": "Zavala", + "countyfipsall": "48507", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78830": { + "latitude": "28.52537", + "longitude": "-99.50854", + "city": "Big Wells", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "966", + "density": "1.8", + "countyfips": "48127", + "countyname": "Dimmit", + "countyweights": "{\"48127\": \"100\"}", + "countynamesall": "Dimmit", + "countyfipsall": "48127", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78832": { + "latitude": "29.39072", + "longitude": "-100.41624", + "city": "Brackettville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3659", + "density": "1.3", + "countyfips": "48271", + "countyname": "Kinney", + "countyweights": "{\"48271\": \"100\"}", + "countynamesall": "Kinney", + "countyfipsall": "48271", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78833": { + "latitude": "29.69362", + "longitude": "-100.05887", + "city": "Camp Wood", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1463", + "density": "2.3", + "countyfips": "48385", + "countyname": "Real", + "countyweights": "{\"48385\": \"84.6\", \"48137\": \"9.16\", \"48463\": \"6.24\"}", + "countynamesall": "Real|Edwards|Uvalde", + "countyfipsall": "48385|48137|48463", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78834": { + "latitude": "28.4643", + "longitude": "-99.92141", + "city": "Carrizo Springs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8059", + "density": "5.6", + "countyfips": "48127", + "countyname": "Dimmit", + "countyweights": "{\"48127\": \"100\"}", + "countynamesall": "Dimmit", + "countyfipsall": "48127", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78836": { + "latitude": "28.29633", + "longitude": "-99.70453", + "city": "Catarina", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "228", + "density": "0.4", + "countyfips": "48127", + "countyname": "Dimmit", + "countyweights": "{\"48127\": \"100\"}", + "countynamesall": "Dimmit", + "countyfipsall": "48127", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78837": { + "latitude": "29.83396", + "longitude": "-101.21496", + "city": "Comstock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "230", + "density": "0.1", + "countyfips": "48465", + "countyname": "Val Verde", + "countyweights": "{\"48465\": \"100\"}", + "countynamesall": "Val Verde", + "countyfipsall": "48465", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78838": { + "latitude": "29.5291", + "longitude": "-99.74382", + "city": "Concan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "202", + "density": "1.7", + "countyfips": "48463", + "countyname": "Uvalde", + "countyweights": "{\"48463\": \"100\"}", + "countynamesall": "Uvalde", + "countyfipsall": "48463", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78839": { + "latitude": "28.71396", + "longitude": "-99.8165", + "city": "Crystal City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8995", + "density": "9.7", + "countyfips": "48507", + "countyname": "Zavala", + "countyweights": "{\"48507\": \"99.85\", \"48127\": \"0.15\"}", + "countynamesall": "Zavala|Dimmit", + "countyfipsall": "48507|48127", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78840": { + "latitude": "29.74209", + "longitude": "-100.88273", + "city": "Del Rio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "47937", + "density": "19.5", + "countyfips": "48465", + "countyname": "Val Verde", + "countyweights": "{\"48465\": \"100\"}", + "countynamesall": "Val Verde", + "countyfipsall": "48465", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78843": { + "latitude": "29.35687", + "longitude": "-100.77863", + "city": "Laughlin Afb", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "689", + "density": "55.4", + "countyfips": "48465", + "countyname": "Val Verde", + "countyweights": "{\"48465\": \"100\"}", + "countynamesall": "Val Verde", + "countyfipsall": "48465", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78850": { + "latitude": "29.28023", + "longitude": "-99.32761", + "city": "D Hanis", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1109", + "density": "1.6", + "countyfips": "48325", + "countyname": "Medina", + "countyweights": "{\"48325\": \"100\"}", + "countynamesall": "Medina", + "countyfipsall": "48325", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78851": { + "latitude": "30.00451", + "longitude": "-101.93072", + "city": "Dryden", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "37", + "density": "0.0", + "countyfips": "48443", + "countyname": "Terrell", + "countyweights": "{\"48443\": \"100\"}", + "countynamesall": "Terrell", + "countyfipsall": "48443", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78852": { + "latitude": "28.75206", + "longitude": "-100.31076", + "city": "Eagle Pass", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "57159", + "density": "38.5", + "countyfips": "48323", + "countyname": "Maverick", + "countyweights": "{\"48323\": \"100\"}", + "countynamesall": "Maverick", + "countyfipsall": "48323", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78860": { + "latitude": "28.48238", + "longitude": "-100.29501", + "city": "El Indio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21", + "density": "0.2", + "countyfips": "48323", + "countyname": "Maverick", + "countyweights": "{\"48323\": \"100\"}", + "countynamesall": "Maverick", + "countyfipsall": "48323", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78861": { + "latitude": "29.42672", + "longitude": "-99.15448", + "city": "Hondo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13663", + "density": "11.5", + "countyfips": "48325", + "countyname": "Medina", + "countyweights": "{\"48325\": \"100\"}", + "countynamesall": "Medina", + "countyfipsall": "48325", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78870": { + "latitude": "29.29912", + "longitude": "-99.62906", + "city": "Knippa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1099", + "density": "3.6", + "countyfips": "48463", + "countyname": "Uvalde", + "countyweights": "{\"48463\": \"100\"}", + "countynamesall": "Uvalde", + "countyfipsall": "48463", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78871": { + "latitude": "29.99927", + "longitude": "-101.64943", + "city": "Langtry", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13", + "density": "0.0", + "countyfips": "48465", + "countyname": "Val Verde", + "countyweights": "{\"48465\": \"100\"}", + "countynamesall": "Val Verde", + "countyfipsall": "48465", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78872": { + "latitude": "28.92588", + "longitude": "-99.88007", + "city": "La Pryor", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1608", + "density": "3.4", + "countyfips": "48507", + "countyname": "Zavala", + "countyweights": "{\"48507\": \"100\"}", + "countynamesall": "Zavala", + "countyfipsall": "48507", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78873": { + "latitude": "29.76655", + "longitude": "-99.73616", + "city": "Leakey", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2053", + "density": "3.5", + "countyfips": "48385", + "countyname": "Real", + "countyweights": "{\"48385\": \"100\"}", + "countynamesall": "Real", + "countyfipsall": "48385", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78877": { + "latitude": "28.94734", + "longitude": "-100.59231", + "city": "Quemado", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "724", + "density": "4.7", + "countyfips": "48323", + "countyname": "Maverick", + "countyweights": "{\"48323\": \"100\"}", + "countynamesall": "Maverick", + "countyfipsall": "48323", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78879": { + "latitude": "29.64778", + "longitude": "-99.67588", + "city": "Rio Frio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "89", + "density": "0.8", + "countyfips": "48385", + "countyname": "Real", + "countyweights": "{\"48385\": \"79.17\", \"48463\": \"20.83\"}", + "countynamesall": "Real|Uvalde", + "countyfipsall": "48385|48463", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78880": { + "latitude": "29.97978", + "longitude": "-100.28849", + "city": "Rocksprings", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1626", + "density": "0.4", + "countyfips": "48137", + "countyname": "Edwards", + "countyweights": "{\"48137\": \"97.92\", \"48385\": \"2.08\"}", + "countynamesall": "Edwards|Real", + "countyfipsall": "48137|48385", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78881": { + "latitude": "29.38695", + "longitude": "-99.52964", + "city": "Sabinal", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2184", + "density": "3.4", + "countyfips": "48463", + "countyname": "Uvalde", + "countyweights": "{\"48463\": \"100\"}", + "countynamesall": "Uvalde", + "countyfipsall": "48463", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78883": { + "latitude": "29.68094", + "longitude": "-99.31614", + "city": "Tarpley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "395", + "density": "2.0", + "countyfips": "48019", + "countyname": "Bandera", + "countyweights": "{\"48019\": \"100\"}", + "countynamesall": "Bandera", + "countyfipsall": "48019", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78884": { + "latitude": "29.61298", + "longitude": "-99.49587", + "city": "Utopia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1134", + "density": "1.8", + "countyfips": "48463", + "countyname": "Uvalde", + "countyweights": "{\"48463\": \"54.49\", \"48019\": \"43.96\", \"48325\": \"1.55\"}", + "countynamesall": "Uvalde|Bandera|Medina", + "countyfipsall": "48463|48019|48325", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78885": { + "latitude": "29.82233", + "longitude": "-99.54779", + "city": "Vanderpool", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "115", + "density": "0.6", + "countyfips": "48019", + "countyname": "Bandera", + "countyweights": "{\"48019\": \"92.5\", \"48385\": \"7.5\"}", + "countynamesall": "Bandera|Real", + "countyfipsall": "48019|48385", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78886": { + "latitude": "29.13466", + "longitude": "-99.16073", + "city": "Yancey", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "469", + "density": "1.8", + "countyfips": "48325", + "countyname": "Medina", + "countyweights": "{\"48325\": \"97.06\", \"48163\": \"2.94\"}", + "countynamesall": "Medina|Frio", + "countyfipsall": "48325|48163", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78931": { + "latitude": "30.02924", + "longitude": "-96.44481", + "city": "Bleiblerville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "368", + "density": "8.3", + "countyfips": "48015", + "countyname": "Austin", + "countyweights": "{\"48015\": \"100\"}", + "countynamesall": "Austin", + "countyfipsall": "48015", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78932": { + "latitude": "30.16569", + "longitude": "-96.70634", + "city": "Carmine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "565", + "density": "4.0", + "countyfips": "48149", + "countyname": "Fayette", + "countyweights": "{\"48149\": \"67.77\", \"48477\": \"32.23\"}", + "countynamesall": "Fayette|Washington", + "countyfipsall": "48149|48477", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78933": { + "latitude": "29.7954", + "longitude": "-96.35761", + "city": "Cat Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1308", + "density": "4.7", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"50.66\", \"48015\": \"49.34\"}", + "countynamesall": "Colorado|Austin", + "countyfipsall": "48089|48015", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78934": { + "latitude": "29.69373", + "longitude": "-96.56014", + "city": "Columbus", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6816", + "density": "13.7", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"100\"}", + "countynamesall": "Colorado", + "countyfipsall": "48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78935": { + "latitude": "29.69036", + "longitude": "-96.43035", + "city": "Alleyton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1234", + "density": "7.0", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"100\"}", + "countynamesall": "Colorado", + "countyfipsall": "48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78938": { + "latitude": "29.80211", + "longitude": "-96.69061", + "city": "Ellinger", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "303", + "density": "5.3", + "countyfips": "48149", + "countyname": "Fayette", + "countyweights": "{\"48149\": \"80.68\", \"48089\": \"19.32\"}", + "countynamesall": "Fayette|Colorado", + "countyfipsall": "48149|48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78940": { + "latitude": "29.93147", + "longitude": "-96.66018", + "city": "Fayetteville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2521", + "density": "7.2", + "countyfips": "48149", + "countyname": "Fayette", + "countyweights": "{\"48149\": \"78.93\", \"48089\": \"12.68\", \"48015\": \"8.39\"}", + "countynamesall": "Fayette|Colorado|Austin", + "countyfipsall": "48149|48089|48015", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78941": { + "latitude": "29.74274", + "longitude": "-97.15231", + "city": "Flatonia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2709", + "density": "6.7", + "countyfips": "48149", + "countyname": "Fayette", + "countyweights": "{\"48149\": \"94.26\", \"48021\": \"2.9\", \"48177\": \"2.84\"}", + "countynamesall": "Fayette|Bastrop|Gonzales", + "countyfipsall": "48149|48021|48177", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78942": { + "latitude": "30.16901", + "longitude": "-96.92221", + "city": "Giddings", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9033", + "density": "17.0", + "countyfips": "48287", + "countyname": "Lee", + "countyweights": "{\"48287\": \"97.99\", \"48149\": \"1.65\", \"48021\": \"0.37\"}", + "countynamesall": "Lee|Fayette|Bastrop", + "countyfipsall": "48287|48149|48021", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78943": { + "latitude": "29.71058", + "longitude": "-96.61182", + "city": "Glidden", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "311", + "density": "20.7", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"100\"}", + "countynamesall": "Colorado", + "countyfipsall": "48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78944": { + "latitude": "30.00044", + "longitude": "-96.498", + "city": "Industry", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "524", + "density": "12.7", + "countyfips": "48015", + "countyname": "Austin", + "countyweights": "{\"48015\": \"100\"}", + "countynamesall": "Austin", + "countyfipsall": "48015", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78945": { + "latitude": "29.91566", + "longitude": "-96.88949", + "city": "La Grange", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10767", + "density": "16.5", + "countyfips": "48149", + "countyname": "Fayette", + "countyweights": "{\"48149\": \"99.76\", \"48021\": \"0.24\"}", + "countynamesall": "Fayette|Bastrop", + "countyfipsall": "48149|48021", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78946": { + "latitude": "30.19124", + "longitude": "-96.7709", + "city": "Ledbetter", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1270", + "density": "5.1", + "countyfips": "48287", + "countyname": "Lee", + "countyweights": "{\"48287\": \"49.9\", \"48149\": \"31.15\", \"48477\": \"18.96\"}", + "countynamesall": "Lee|Fayette|Washington", + "countyfipsall": "48287|48149|48477", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78947": { + "latitude": "30.42088", + "longitude": "-97.03765", + "city": "Lexington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4634", + "density": "8.4", + "countyfips": "48287", + "countyname": "Lee", + "countyweights": "{\"48287\": \"100\"}", + "countynamesall": "Lee", + "countyfipsall": "48287", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78948": { + "latitude": "30.303", + "longitude": "-96.962", + "city": "Lincoln", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "636", + "density": "3.8", + "countyfips": "48287", + "countyname": "Lee", + "countyweights": "{\"48287\": \"100\"}", + "countynamesall": "Lee", + "countyfipsall": "48287", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78949": { + "latitude": "29.84134", + "longitude": "-97.08594", + "city": "Muldoon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "590", + "density": "2.9", + "countyfips": "48149", + "countyname": "Fayette", + "countyweights": "{\"48149\": \"100\"}", + "countynamesall": "Fayette", + "countyfipsall": "48149", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78950": { + "latitude": "29.90255", + "longitude": "-96.48194", + "city": "New Ulm", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1810", + "density": "6.3", + "countyfips": "48015", + "countyname": "Austin", + "countyweights": "{\"48015\": \"66.98\", \"48089\": \"33.02\"}", + "countynamesall": "Austin|Colorado", + "countyfipsall": "48015|48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78951": { + "latitude": "29.58727", + "longitude": "-96.82436", + "city": "Oakland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"100\"}", + "countynamesall": "Colorado", + "countyfipsall": "48089", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78953": { + "latitude": "29.8522", + "longitude": "-97.3483", + "city": "Rosanky", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "701", + "density": "3.0", + "countyfips": "48021", + "countyname": "Bastrop", + "countyweights": "{\"48021\": \"75.05\", \"48055\": \"24.95\"}", + "countynamesall": "Bastrop|Caldwell", + "countyfipsall": "48021|48055", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78954": { + "latitude": "30.04587", + "longitude": "-96.69959", + "city": "Round Top", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1110", + "density": "5.7", + "countyfips": "48149", + "countyname": "Fayette", + "countyweights": "{\"48149\": \"95.99\", \"48015\": \"4.01\"}", + "countynamesall": "Fayette|Austin", + "countyfipsall": "48149|48015", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78956": { + "latitude": "29.68793", + "longitude": "-96.93416", + "city": "Schulenburg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5685", + "density": "13.0", + "countyfips": "48149", + "countyname": "Fayette", + "countyweights": "{\"48149\": \"92.34\", \"48285\": \"7.66\"}", + "countynamesall": "Fayette|Lavaca", + "countyfipsall": "48149|48285", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78957": { + "latitude": "30.01287", + "longitude": "-97.17578", + "city": "Smithville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9699", + "density": "20.0", + "countyfips": "48021", + "countyname": "Bastrop", + "countyweights": "{\"48021\": \"97.3\", \"48149\": \"2.7\"}", + "countynamesall": "Bastrop|Fayette", + "countyfipsall": "48021|48149", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78959": { + "latitude": "29.69777", + "longitude": "-97.30285", + "city": "Waelder", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2097", + "density": "5.2", + "countyfips": "48177", + "countyname": "Gonzales", + "countyweights": "{\"48177\": \"90.58\", \"48149\": \"6.97\", \"48055\": \"2.45\"}", + "countynamesall": "Gonzales|Fayette|Caldwell", + "countyfipsall": "48177|48149|48055", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78962": { + "latitude": "29.65419", + "longitude": "-96.73556", + "city": "Weimar", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5138", + "density": "10.2", + "countyfips": "48089", + "countyname": "Colorado", + "countyweights": "{\"48089\": \"89.41\", \"48149\": \"10.59\"}", + "countynamesall": "Colorado|Fayette", + "countyfipsall": "48089|48149", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "78963": { + "latitude": "29.92619", + "longitude": "-97.02796", + "city": "West Point", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1202", + "density": "11.2", + "countyfips": "48149", + "countyname": "Fayette", + "countyweights": "{\"48149\": \"100\"}", + "countynamesall": "Fayette", + "countyfipsall": "48149", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79001": { + "latitude": "35.32995", + "longitude": "-102.78511", + "city": "Adrian", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "178", + "density": "0.2", + "countyfips": "48359", + "countyname": "Oldham", + "countyweights": "{\"48359\": \"89.56\", \"48117\": \"10.44\"}", + "countynamesall": "Oldham|Deaf Smith", + "countyfipsall": "48359|48117", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79003": { + "latitude": "35.58007", + "longitude": "-100.09466", + "city": "Allison", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "185", + "density": "1.8", + "countyfips": "48483", + "countyname": "Wheeler", + "countyweights": "{\"48483\": \"100\"}", + "countynamesall": "Wheeler", + "countyfipsall": "48483", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79005": { + "latitude": "36.38545", + "longitude": "-100.50397", + "city": "Booker", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1714", + "density": "3.3", + "countyfips": "48295", + "countyname": "Lipscomb", + "countyweights": "{\"48295\": \"95.56\", \"48357\": \"4.44\"}", + "countynamesall": "Lipscomb|Ochiltree", + "countyfipsall": "48295|48357", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79007": { + "latitude": "35.69978", + "longitude": "-101.39791", + "city": "Borger", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14290", + "density": "123.9", + "countyfips": "48233", + "countyname": "Hutchinson", + "countyweights": "{\"48233\": \"100\"}", + "countynamesall": "Hutchinson", + "countyfipsall": "48233", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79009": { + "latitude": "34.53322", + "longitude": "-102.88568", + "city": "Bovina", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1754", + "density": "5.8", + "countyfips": "48369", + "countyname": "Parmer", + "countyweights": "{\"48369\": \"100\"}", + "countynamesall": "Parmer", + "countyfipsall": "48369", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79010": { + "latitude": "35.44484", + "longitude": "-102.12361", + "city": "Boys Ranch", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "910", + "density": "2.0", + "countyfips": "48359", + "countyname": "Oldham", + "countyweights": "{\"48359\": \"63.72\", \"48375\": \"36.28\"}", + "countynamesall": "Oldham|Potter", + "countyfipsall": "48359|48375", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79011": { + "latitude": "35.63469", + "longitude": "-100.22942", + "city": "Briscoe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "206", + "density": "0.7", + "countyfips": "48483", + "countyname": "Wheeler", + "countyweights": "{\"48483\": \"63.56\", \"48211\": \"36.44\"}", + "countynamesall": "Wheeler|Hemphill", + "countyfipsall": "48483|48211", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79012": { + "latitude": "35.26652", + "longitude": "-102.10915", + "city": "Bushland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1427", + "density": "8.3", + "countyfips": "48375", + "countyname": "Potter", + "countyweights": "{\"48375\": \"92.42\", \"48381\": \"7.58\"}", + "countynamesall": "Potter|Randall", + "countyfipsall": "48375|48381", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79013": { + "latitude": "36.03841", + "longitude": "-102.00344", + "city": "Cactus", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3618", + "density": "298.0", + "countyfips": "48341", + "countyname": "Moore", + "countyweights": "{\"48341\": \"100\"}", + "countynamesall": "Moore", + "countyfipsall": "48341", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79014": { + "latitude": "35.91222", + "longitude": "-100.29813", + "city": "Canadian", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3964", + "density": "1.6", + "countyfips": "48211", + "countyname": "Hemphill", + "countyweights": "{\"48211\": \"98.67\", \"48295\": \"1.33\"}", + "countynamesall": "Hemphill|Lipscomb", + "countyfipsall": "48211|48295", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79015": { + "latitude": "34.94032", + "longitude": "-101.91647", + "city": "Canyon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21925", + "density": "22.1", + "countyfips": "48381", + "countyname": "Randall", + "countyweights": "{\"48381\": \"100\"}", + "countynamesall": "Randall", + "countyfipsall": "48381", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79016": { + "latitude": "34.98342", + "longitude": "-101.91867", + "city": "Canyon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "147", + "density": "4310.1", + "countyfips": "48381", + "countyname": "Randall", + "countyweights": "{\"48381\": \"100\"}", + "countynamesall": "Randall", + "countyfipsall": "48381", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79018": { + "latitude": "35.69549", + "longitude": "-102.38629", + "city": "Channing", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "307", + "density": "0.3", + "countyfips": "48205", + "countyname": "Hartley", + "countyweights": "{\"48205\": \"87.23\", \"48341\": \"8.21\", \"48359\": \"4.56\"}", + "countynamesall": "Hartley|Moore|Oldham", + "countyfipsall": "48205|48341|48359", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79019": { + "latitude": "35.00736", + "longitude": "-101.39696", + "city": "Claude", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1871", + "density": "1.3", + "countyfips": "48011", + "countyname": "Armstrong", + "countyweights": "{\"48011\": \"100\"}", + "countynamesall": "Armstrong", + "countyfipsall": "48011", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79021": { + "latitude": "33.98484", + "longitude": "-102.02773", + "city": "Cotton Center", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "183", + "density": "4.1", + "countyfips": "48189", + "countyname": "Hale", + "countyweights": "{\"48189\": \"100\"}", + "countynamesall": "Hale", + "countyfipsall": "48189", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79022": { + "latitude": "36.10661", + "longitude": "-102.61107", + "city": "Dalhart", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11400", + "density": "2.3", + "countyfips": "48111", + "countyname": "Dallam", + "countyweights": "{\"48111\": \"55.14\", \"48205\": \"44.86\"}", + "countynamesall": "Dallam|Hartley", + "countyfipsall": "48111|48205", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79024": { + "latitude": "36.43867", + "longitude": "-100.34722", + "city": "Darrouzett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "380", + "density": "2.5", + "countyfips": "48295", + "countyname": "Lipscomb", + "countyweights": "{\"48295\": \"100\"}", + "countynamesall": "Lipscomb", + "countyfipsall": "48295", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79025": { + "latitude": "34.94098", + "longitude": "-102.2059", + "city": "Dawn", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "20", + "density": "0.6", + "countyfips": "48117", + "countyname": "Deaf Smith", + "countyweights": "{\"48117\": \"100\"}", + "countynamesall": "Deaf Smith", + "countyfipsall": "48117", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79027": { + "latitude": "34.48691", + "longitude": "-102.33088", + "city": "Dimmitt", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4794", + "density": "6.1", + "countyfips": "48069", + "countyname": "Castro", + "countyweights": "{\"48069\": \"100\"}", + "countynamesall": "Castro", + "countyfipsall": "48069", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79029": { + "latitude": "35.89512", + "longitude": "-102.02431", + "city": "Dumas", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15584", + "density": "20.0", + "countyfips": "48341", + "countyname": "Moore", + "countyweights": "{\"48341\": \"100\"}", + "countynamesall": "Moore", + "countyfipsall": "48341", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79031": { + "latitude": "34.26917", + "longitude": "-102.45283", + "city": "Earth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1377", + "density": "4.6", + "countyfips": "48279", + "countyname": "Lamb", + "countyweights": "{\"48279\": \"96.77\", \"48069\": \"3.23\"}", + "countynamesall": "Lamb|Castro", + "countyfipsall": "48279|48069", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79032": { + "latitude": "34.28289", + "longitude": "-101.94141", + "city": "Edmonson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "98", + "density": "2.0", + "countyfips": "48189", + "countyname": "Hale", + "countyweights": "{\"48189\": \"100\"}", + "countynamesall": "Hale", + "countyfipsall": "48189", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79033": { + "latitude": "36.33008", + "longitude": "-100.98394", + "city": "Farnsworth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "47", + "density": "1.5", + "countyfips": "48357", + "countyname": "Ochiltree", + "countyweights": "{\"48357\": \"100\"}", + "countynamesall": "Ochiltree", + "countyfipsall": "48357", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79034": { + "latitude": "36.37348", + "longitude": "-100.16502", + "city": "Follett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "535", + "density": "0.7", + "countyfips": "48295", + "countyname": "Lipscomb", + "countyweights": "{\"48295\": \"100\"}", + "countynamesall": "Lipscomb", + "countyfipsall": "48295", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79035": { + "latitude": "34.68446", + "longitude": "-102.78723", + "city": "Friona", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5307", + "density": "3.1", + "countyfips": "48369", + "countyname": "Parmer", + "countyweights": "{\"48369\": \"98.74\", \"48117\": \"1.26\"}", + "countynamesall": "Parmer|Deaf Smith", + "countyfipsall": "48369|48117", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79036": { + "latitude": "35.61317", + "longitude": "-101.54855", + "city": "Fritch", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5184", + "density": "31.2", + "countyfips": "48233", + "countyname": "Hutchinson", + "countyweights": "{\"48233\": \"85.8\", \"48065\": \"11.41\", \"48341\": \"2.69\", \"48375\": \"0.1\"}", + "countynamesall": "Hutchinson|Carson|Moore|Potter", + "countyfipsall": "48233|48065|48341|48375", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79039": { + "latitude": "35.26038", + "longitude": "-101.09519", + "city": "Groom", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "965", + "density": "1.7", + "countyfips": "48065", + "countyname": "Carson", + "countyweights": "{\"48065\": \"88.45\", \"48179\": \"10.91\", \"48129\": \"0.64\"}", + "countynamesall": "Carson|Gray|Donley", + "countyfipsall": "48065|48179|48129", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79040": { + "latitude": "36.29869", + "longitude": "-101.5571", + "city": "Gruver", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1962", + "density": "1.4", + "countyfips": "48195", + "countyname": "Hansford", + "countyweights": "{\"48195\": \"89.56\", \"48421\": \"10.44\"}", + "countynamesall": "Hansford|Sherman", + "countyfipsall": "48195|48421", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79041": { + "latitude": "34.0477", + "longitude": "-101.9313", + "city": "Hale Center", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2754", + "density": "4.0", + "countyfips": "48189", + "countyname": "Hale", + "countyweights": "{\"48189\": \"99.41\", \"48279\": \"0.59\"}", + "countynamesall": "Hale|Lamb", + "countyfipsall": "48189|48279", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79042": { + "latitude": "34.74685", + "longitude": "-101.90313", + "city": "Happy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1200", + "density": "1.1", + "countyfips": "48437", + "countyname": "Swisher", + "countyweights": "{\"48437\": \"62.96\", \"48381\": \"30.97\", \"48069\": \"3.76\", \"48011\": \"2.31\"}", + "countynamesall": "Swisher|Randall|Castro|Armstrong", + "countyfipsall": "48437|48381|48069|48011", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79043": { + "latitude": "34.37049", + "longitude": "-102.13485", + "city": "Hart", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1514", + "density": "4.0", + "countyfips": "48069", + "countyname": "Castro", + "countyweights": "{\"48069\": \"98.45\", \"48279\": \"1.55\"}", + "countynamesall": "Castro|Lamb", + "countyfipsall": "48069|48279", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79044": { + "latitude": "35.87299", + "longitude": "-102.36703", + "city": "Hartley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "646", + "density": "1.3", + "countyfips": "48205", + "countyname": "Hartley", + "countyweights": "{\"48205\": \"100\"}", + "countynamesall": "Hartley", + "countyfipsall": "48205", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79045": { + "latitude": "34.91238", + "longitude": "-102.55902", + "city": "Hereford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18847", + "density": "6.0", + "countyfips": "48117", + "countyname": "Deaf Smith", + "countyweights": "{\"48117\": \"97.51\", \"48069\": \"2.49\"}", + "countynamesall": "Deaf Smith|Castro", + "countyfipsall": "48117|48069", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79046": { + "latitude": "36.16345", + "longitude": "-100.1216", + "city": "Higgins", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "712", + "density": "1.7", + "countyfips": "48295", + "countyname": "Lipscomb", + "countyweights": "{\"48295\": \"100\"}", + "countynamesall": "Lipscomb", + "countyfipsall": "48295", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79051": { + "latitude": "36.47743", + "longitude": "-102.26", + "city": "Kerrick", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48111", + "countyname": "Dallam", + "countyweights": "{\"48111\": \"100\"}", + "countynamesall": "Dallam", + "countyfipsall": "48111", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79052": { + "latitude": "34.36101", + "longitude": "-101.74252", + "city": "Kress", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1318", + "density": "2.8", + "countyfips": "48437", + "countyname": "Swisher", + "countyweights": "{\"48437\": \"97.14\", \"48189\": \"2.46\", \"48069\": \"0.4\"}", + "countynamesall": "Swisher|Hale|Castro", + "countyfipsall": "48437|48189|48069", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79053": { + "latitude": "34.40739", + "longitude": "-102.58601", + "city": "Lazbuddie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "97", + "density": "1.9", + "countyfips": "48369", + "countyname": "Parmer", + "countyweights": "{\"48369\": \"100\"}", + "countynamesall": "Parmer", + "countyfipsall": "48369", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79054": { + "latitude": "35.42585", + "longitude": "-100.7875", + "city": "Lefors", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "676", + "density": "6.5", + "countyfips": "48179", + "countyname": "Gray", + "countyweights": "{\"48179\": \"100\"}", + "countynamesall": "Gray", + "countyfipsall": "48179", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79056": { + "latitude": "36.21717", + "longitude": "-100.22121", + "city": "Lipscomb", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "56", + "density": "0.5", + "countyfips": "48295", + "countyname": "Lipscomb", + "countyweights": "{\"48295\": \"100\"}", + "countynamesall": "Lipscomb", + "countyfipsall": "48295", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79057": { + "latitude": "35.24303", + "longitude": "-100.6426", + "city": "Mclean", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1254", + "density": "1.3", + "countyfips": "48179", + "countyname": "Gray", + "countyweights": "{\"48179\": \"91.79\", \"48483\": \"4.56\", \"48129\": \"3.65\"}", + "countynamesall": "Gray|Wheeler|Donley", + "countyfipsall": "48179|48483|48129", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79058": { + "latitude": "35.6164", + "longitude": "-101.9076", + "city": "Masterson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48375", + "countyname": "Potter", + "countyweights": "{\"48375\": \"100\", \"48341\": \"0\"}", + "countynamesall": "Potter|Moore", + "countyfipsall": "48375|48341", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79059": { + "latitude": "35.83018", + "longitude": "-100.76789", + "city": "Miami", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "671", + "density": "0.5", + "countyfips": "48393", + "countyname": "Roberts", + "countyweights": "{\"48393\": \"96.65\", \"48179\": \"3.35\"}", + "countynamesall": "Roberts|Gray", + "countyfipsall": "48393|48179", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79061": { + "latitude": "35.52039", + "longitude": "-100.44182", + "city": "Mobeetie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "375", + "density": "0.9", + "countyfips": "48483", + "countyname": "Wheeler", + "countyweights": "{\"48483\": \"100\"}", + "countynamesall": "Wheeler", + "countyfipsall": "48483", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79062": { + "latitude": "36.03137", + "longitude": "-101.52535", + "city": "Morse", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "180", + "density": "0.8", + "countyfips": "48195", + "countyname": "Hansford", + "countyweights": "{\"48195\": \"69.72\", \"48233\": \"30.28\"}", + "countynamesall": "Hansford|Hutchinson", + "countyfipsall": "48195|48233", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79063": { + "latitude": "34.52584", + "longitude": "-102.10042", + "city": "Nazareth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "768", + "density": "3.1", + "countyfips": "48069", + "countyname": "Castro", + "countyweights": "{\"48069\": \"100\"}", + "countynamesall": "Castro", + "countyfipsall": "48069", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79064": { + "latitude": "34.19816", + "longitude": "-102.12113", + "city": "Olton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2495", + "density": "6.6", + "countyfips": "48279", + "countyname": "Lamb", + "countyweights": "{\"48279\": \"96.6\", \"48189\": \"3.4\"}", + "countynamesall": "Lamb|Hale", + "countyfipsall": "48279|48189", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79065": { + "latitude": "35.54207", + "longitude": "-100.8998", + "city": "Pampa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "20606", + "density": "16.2", + "countyfips": "48179", + "countyname": "Gray", + "countyweights": "{\"48179\": \"99.43\", \"48393\": \"0.57\"}", + "countynamesall": "Gray|Roberts", + "countyfipsall": "48179|48393", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79068": { + "latitude": "35.34375", + "longitude": "-101.43649", + "city": "Panhandle", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3489", + "density": "3.4", + "countyfips": "48065", + "countyname": "Carson", + "countyweights": "{\"48065\": \"100\"}", + "countynamesall": "Carson", + "countyfipsall": "48065", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79070": { + "latitude": "36.27683", + "longitude": "-100.79875", + "city": "Perryton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9851", + "density": "5.0", + "countyfips": "48357", + "countyname": "Ochiltree", + "countyweights": "{\"48357\": \"100\"}", + "countynamesall": "Ochiltree", + "countyfipsall": "48357", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79072": { + "latitude": "34.17158", + "longitude": "-101.73863", + "city": "Plainview", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26629", + "density": "26.9", + "countyfips": "48189", + "countyname": "Hale", + "countyweights": "{\"48189\": \"99.99\", \"48437\": \"0.01\"}", + "countynamesall": "Hale|Swisher", + "countyfipsall": "48189|48437", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79078": { + "latitude": "35.70051", + "longitude": "-101.55828", + "city": "Sanford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "217", + "density": "3.7", + "countyfips": "48233", + "countyname": "Hutchinson", + "countyweights": "{\"48233\": \"100\"}", + "countynamesall": "Hutchinson", + "countyfipsall": "48233", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79079": { + "latitude": "35.20904", + "longitude": "-100.24313", + "city": "Shamrock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2617", + "density": "1.9", + "countyfips": "48483", + "countyname": "Wheeler", + "countyweights": "{\"48483\": \"94.41\", \"48087\": \"5.59\"}", + "countynamesall": "Wheeler|Collingsworth", + "countyfipsall": "48483|48087", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79080": { + "latitude": "35.7348", + "longitude": "-101.21075", + "city": "Skellytown", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "461", + "density": "1.0", + "countyfips": "48065", + "countyname": "Carson", + "countyweights": "{\"48065\": \"79.34\", \"48233\": \"20.66\"}", + "countynamesall": "Carson|Hutchinson", + "countyfipsall": "48065|48233", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79081": { + "latitude": "36.2301", + "longitude": "-101.21809", + "city": "Spearman", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3918", + "density": "2.3", + "countyfips": "48195", + "countyname": "Hansford", + "countyweights": "{\"48195\": \"97.49\", \"48233\": \"1.25\", \"48357\": \"1.25\"}", + "countynamesall": "Hansford|Hutchinson|Ochiltree", + "countyfipsall": "48195|48233|48357", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79082": { + "latitude": "34.22431", + "longitude": "-102.28774", + "city": "Springlake", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "218", + "density": "1.0", + "countyfips": "48279", + "countyname": "Lamb", + "countyweights": "{\"48279\": \"100\"}", + "countynamesall": "Lamb", + "countyfipsall": "48279", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79083": { + "latitude": "35.88431", + "longitude": "-101.52804", + "city": "Stinnett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1923", + "density": "2.3", + "countyfips": "48233", + "countyname": "Hutchinson", + "countyweights": "{\"48233\": \"97.37\", \"48341\": \"2.63\"}", + "countynamesall": "Hutchinson|Moore", + "countyfipsall": "48233|48341", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79084": { + "latitude": "36.2801", + "longitude": "-102.00052", + "city": "Stratford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2123", + "density": "1.5", + "countyfips": "48421", + "countyname": "Sherman", + "countyweights": "{\"48421\": \"100\"}", + "countynamesall": "Sherman", + "countyfipsall": "48421", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79085": { + "latitude": "34.74073", + "longitude": "-102.51441", + "city": "Summerfield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18", + "density": "6.0", + "countyfips": "48069", + "countyname": "Castro", + "countyweights": "{\"48069\": \"100\"}", + "countynamesall": "Castro", + "countyfipsall": "48069", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79086": { + "latitude": "36.03844", + "longitude": "-101.7741", + "city": "Sunray", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2228", + "density": "4.2", + "countyfips": "48341", + "countyname": "Moore", + "countyweights": "{\"48341\": \"96.86\", \"48421\": \"3.14\"}", + "countynamesall": "Moore|Sherman", + "countyfipsall": "48341|48421", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79087": { + "latitude": "36.30895", + "longitude": "-102.93592", + "city": "Texline", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "629", + "density": "1.0", + "countyfips": "48111", + "countyname": "Dallam", + "countyweights": "{\"48111\": \"100\"}", + "countynamesall": "Dallam", + "countyfipsall": "48111", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79088": { + "latitude": "34.57853", + "longitude": "-101.69537", + "city": "Tulia", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5394", + "density": "3.6", + "countyfips": "48437", + "countyname": "Swisher", + "countyweights": "{\"48437\": \"99.09\", \"48045\": \"0.61\", \"48069\": \"0.3\"}", + "countynamesall": "Swisher|Briscoe|Castro", + "countyfipsall": "48437|48045|48069", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79091": { + "latitude": "34.90633", + "longitude": "-102.11251", + "city": "Umbarger", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "77", + "density": "1.5", + "countyfips": "48381", + "countyname": "Randall", + "countyweights": "{\"48381\": \"100\"}", + "countynamesall": "Randall", + "countyfipsall": "48381", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79092": { + "latitude": "35.2815", + "longitude": "-102.46868", + "city": "Vega", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1148", + "density": "1.5", + "countyfips": "48359", + "countyname": "Oldham", + "countyweights": "{\"48359\": \"94.21\", \"48117\": \"5.79\"}", + "countynamesall": "Oldham|Deaf Smith", + "countyfipsall": "48359|48117", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79093": { + "latitude": "36.28992", + "longitude": "-101.03396", + "city": "Waka", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "102", + "density": "1.3", + "countyfips": "48357", + "countyname": "Ochiltree", + "countyweights": "{\"48357\": \"100\"}", + "countynamesall": "Ochiltree", + "countyfipsall": "48357", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79094": { + "latitude": "34.85075", + "longitude": "-101.52674", + "city": "Wayside", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14", + "density": "0.1", + "countyfips": "48011", + "countyname": "Armstrong", + "countyweights": "{\"48011\": \"100\"}", + "countynamesall": "Armstrong", + "countyfipsall": "48011", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79095": { + "latitude": "34.89616", + "longitude": "-100.2061", + "city": "Wellington", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2657", + "density": "2.8", + "countyfips": "48087", + "countyname": "Collingsworth", + "countyweights": "{\"48087\": \"100\"}", + "countynamesall": "Collingsworth", + "countyfipsall": "48087", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79096": { + "latitude": "35.4381", + "longitude": "-100.19611", + "city": "Wheeler", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2071", + "density": "3.3", + "countyfips": "48483", + "countyname": "Wheeler", + "countyweights": "{\"48483\": \"100\"}", + "countynamesall": "Wheeler", + "countyfipsall": "48483", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79097": { + "latitude": "35.43582", + "longitude": "-101.17852", + "city": "White Deer", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "863", + "density": "2.8", + "countyfips": "48065", + "countyname": "Carson", + "countyweights": "{\"48065\": \"100\"}", + "countynamesall": "Carson", + "countyfipsall": "48065", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79098": { + "latitude": "35.15532", + "longitude": "-102.22841", + "city": "Wildorado", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "484", + "density": "0.9", + "countyfips": "48359", + "countyname": "Oldham", + "countyweights": "{\"48359\": \"45.65\", \"48117\": \"30.56\", \"48375\": \"12.57\", \"48381\": \"11.22\"}", + "countynamesall": "Oldham|Deaf Smith|Potter|Randall", + "countyfipsall": "48359|48117|48375|48381", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79101": { + "latitude": "35.20599", + "longitude": "-101.8395", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1851", + "density": "448.3", + "countyfips": "48375", + "countyname": "Potter", + "countyweights": "{\"48375\": \"100\"}", + "countynamesall": "Potter", + "countyfipsall": "48375", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79102": { + "latitude": "35.19953", + "longitude": "-101.84676", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9878", + "density": "1431.0", + "countyfips": "48375", + "countyname": "Potter", + "countyweights": "{\"48375\": \"100\"}", + "countynamesall": "Potter", + "countyfipsall": "48375", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79103": { + "latitude": "35.17735", + "longitude": "-101.79438", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10869", + "density": "816.3", + "countyfips": "48375", + "countyname": "Potter", + "countyweights": "{\"48375\": \"60.58\", \"48381\": \"39.42\"}", + "countynamesall": "Potter|Randall", + "countyfipsall": "48375|48381", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79104": { + "latitude": "35.20276", + "longitude": "-101.78859", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7019", + "density": "707.0", + "countyfips": "48375", + "countyname": "Potter", + "countyweights": "{\"48375\": \"100\"}", + "countynamesall": "Potter", + "countyfipsall": "48375", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79105": { + "latitude": "35.6883", + "longitude": "-101.81163", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48341", + "countyname": "Moore", + "countyweights": "{\"48341\": \"100\"}", + "countynamesall": "Moore", + "countyfipsall": "48341", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79106": { + "latitude": "35.20317", + "longitude": "-101.89517", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27268", + "density": "1123.6", + "countyfips": "48375", + "countyname": "Potter", + "countyweights": "{\"48375\": \"87.85\", \"48381\": \"12.15\"}", + "countynamesall": "Potter|Randall", + "countyfipsall": "48375|48381", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79107": { + "latitude": "35.22939", + "longitude": "-101.80227", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34935", + "density": "804.7", + "countyfips": "48375", + "countyname": "Potter", + "countyweights": "{\"48375\": \"100\"}", + "countynamesall": "Potter", + "countyfipsall": "48375", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79108": { + "latitude": "35.35066", + "longitude": "-101.80584", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16112", + "density": "37.6", + "countyfips": "48375", + "countyname": "Potter", + "countyweights": "{\"48375\": \"99.57\", \"48065\": \"0.43\"}", + "countynamesall": "Potter|Carson", + "countyfipsall": "48375|48065", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79109": { + "latitude": "35.16631", + "longitude": "-101.88646", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "44600", + "density": "1647.9", + "countyfips": "48381", + "countyname": "Randall", + "countyweights": "{\"48381\": \"84.29\", \"48375\": \"15.71\"}", + "countynamesall": "Randall|Potter", + "countyfipsall": "48381|48375", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79110": { + "latitude": "35.14901", + "longitude": "-101.87111", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "19158", + "density": "1321.9", + "countyfips": "48381", + "countyname": "Randall", + "countyweights": "{\"48381\": \"100\"}", + "countynamesall": "Randall", + "countyfipsall": "48381", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79111": { + "latitude": "35.21967", + "longitude": "-101.6893", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2108", + "density": "74.4", + "countyfips": "48375", + "countyname": "Potter", + "countyweights": "{\"48375\": \"100\"}", + "countynamesall": "Potter", + "countyfipsall": "48375", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79118": { + "latitude": "35.09861", + "longitude": "-101.73879", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23381", + "density": "53.1", + "countyfips": "48381", + "countyname": "Randall", + "countyweights": "{\"48381\": \"99.48\", \"48375\": \"0.52\"}", + "countynamesall": "Randall|Potter", + "countyfipsall": "48381|48375", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79119": { + "latitude": "35.11029", + "longitude": "-102.01663", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17524", + "density": "66.6", + "countyfips": "48381", + "countyname": "Randall", + "countyweights": "{\"48381\": \"100\"}", + "countynamesall": "Randall", + "countyfipsall": "48381", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79121": { + "latitude": "35.17471", + "longitude": "-101.92969", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6002", + "density": "1260.4", + "countyfips": "48381", + "countyname": "Randall", + "countyweights": "{\"48381\": \"97.34\", \"48375\": \"2.66\"}", + "countynamesall": "Randall|Potter", + "countyfipsall": "48381|48375", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79124": { + "latitude": "35.26275", + "longitude": "-101.9691", + "city": "Amarillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8800", + "density": "37.7", + "countyfips": "48375", + "countyname": "Potter", + "countyweights": "{\"48375\": \"98.86\", \"48381\": \"1.14\"}", + "countynamesall": "Potter|Randall", + "countyfipsall": "48375|48381", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79201": { + "latitude": "34.43715", + "longitude": "-100.28085", + "city": "Childress", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7288", + "density": "3.3", + "countyfips": "48075", + "countyname": "Childress", + "countyweights": "{\"48075\": \"99.18\", \"48345\": \"0.47\", \"48101\": \"0.36\"}", + "countynamesall": "Childress|Motley|Cottle", + "countyfipsall": "48075|48345|48101", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79220": { + "latitude": "33.75776", + "longitude": "-100.78642", + "city": "Afton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "208", + "density": "0.4", + "countyfips": "48125", + "countyname": "Dickens", + "countyweights": "{\"48125\": \"100\"}", + "countynamesall": "Dickens", + "countyfipsall": "48125", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79225": { + "latitude": "34.2563", + "longitude": "-99.51496", + "city": "Chillicothe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1069", + "density": "2.8", + "countyfips": "48197", + "countyname": "Hardeman", + "countyweights": "{\"48197\": \"97.13\", \"48487\": \"2.87\"}", + "countynamesall": "Hardeman|Wilbarger", + "countyfipsall": "48197|48487", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79226": { + "latitude": "34.90323", + "longitude": "-100.99525", + "city": "Clarendon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2861", + "density": "1.3", + "countyfips": "48129", + "countyname": "Donley", + "countyweights": "{\"48129\": \"96.19\", \"48011\": \"2.92\", \"48045\": \"0.51\", \"48191\": \"0.38\"}", + "countynamesall": "Donley|Armstrong|Briscoe|Hall", + "countyfipsall": "48129|48011|48045|48191", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79227": { + "latitude": "33.89957", + "longitude": "-99.77068", + "city": "Crowell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1302", + "density": "0.6", + "countyfips": "48155", + "countyname": "Foard", + "countyweights": "{\"48155\": \"93.67\", \"48275\": \"6.33\"}", + "countynamesall": "Foard|Knox", + "countyfipsall": "48155|48275", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79229": { + "latitude": "33.66676", + "longitude": "-100.67825", + "city": "Dickens", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "411", + "density": "0.7", + "countyfips": "48125", + "countyname": "Dickens", + "countyweights": "{\"48125\": \"100\"}", + "countynamesall": "Dickens", + "countyfipsall": "48125", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79230": { + "latitude": "34.72708", + "longitude": "-100.05157", + "city": "Dodson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "179", + "density": "1.1", + "countyfips": "48087", + "countyname": "Collingsworth", + "countyweights": "{\"48087\": \"82.91\", \"48075\": \"17.09\"}", + "countynamesall": "Collingsworth|Childress", + "countyfipsall": "48087|48075", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79231": { + "latitude": "33.90634", + "longitude": "-101.07003", + "city": "Dougherty", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "117", + "density": "3.4", + "countyfips": "48153", + "countyname": "Floyd", + "countyweights": "{\"48153\": \"100\"}", + "countynamesall": "Floyd", + "countyfipsall": "48153", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79233": { + "latitude": "34.52345", + "longitude": "-100.52865", + "city": "Estelline", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "145", + "density": "0.7", + "countyfips": "48191", + "countyname": "Hall", + "countyweights": "{\"48191\": \"100\"}", + "countynamesall": "Hall", + "countyfipsall": "48191", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79234": { + "latitude": "34.22681", + "longitude": "-100.92952", + "city": "Flomot", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26", + "density": "0.1", + "countyfips": "48345", + "countyname": "Motley", + "countyweights": "{\"48345\": \"100\"}", + "countynamesall": "Motley", + "countyfipsall": "48345", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79235": { + "latitude": "33.96355", + "longitude": "-101.25214", + "city": "Floydada", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3298", + "density": "2.2", + "countyfips": "48153", + "countyname": "Floyd", + "countyweights": "{\"48153\": \"98.57\", \"48107\": \"1.23\", \"48345\": \"0.21\"}", + "countynamesall": "Floyd|Crosby|Motley", + "countyfipsall": "48153|48107|48345", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79236": { + "latitude": "33.64183", + "longitude": "-100.22815", + "city": "Guthrie", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "218", + "density": "0.2", + "countyfips": "48269", + "countyname": "King", + "countyweights": "{\"48269\": \"100\"}", + "countynamesall": "King", + "countyfipsall": "48269", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79237": { + "latitude": "34.91339", + "longitude": "-100.63784", + "city": "Hedley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "417", + "density": "0.8", + "countyfips": "48129", + "countyname": "Donley", + "countyweights": "{\"48129\": \"100\"}", + "countynamesall": "Donley", + "countyfipsall": "48129", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79239": { + "latitude": "34.65106", + "longitude": "-100.75781", + "city": "Lakeview", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "181", + "density": "0.4", + "countyfips": "48191", + "countyname": "Hall", + "countyweights": "{\"48191\": \"100\"}", + "countynamesall": "Hall", + "countyfipsall": "48191", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79240": { + "latitude": "34.88123", + "longitude": "-100.77111", + "city": "Lelia Lake", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "81", + "density": "4.3", + "countyfips": "48129", + "countyname": "Donley", + "countyweights": "{\"48129\": \"100\"}", + "countynamesall": "Donley", + "countyfipsall": "48129", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79241": { + "latitude": "34.1848", + "longitude": "-101.38676", + "city": "Lockney", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2270", + "density": "2.6", + "countyfips": "48153", + "countyname": "Floyd", + "countyweights": "{\"48153\": \"100\"}", + "countynamesall": "Floyd", + "countyfipsall": "48153", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79243": { + "latitude": "33.7595", + "longitude": "-100.99107", + "city": "Mcadoo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "53", + "density": "0.4", + "countyfips": "48125", + "countyname": "Dickens", + "countyweights": "{\"48125\": \"100\"}", + "countynamesall": "Dickens", + "countyfipsall": "48125", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79244": { + "latitude": "34.03174", + "longitude": "-100.84615", + "city": "Matador", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "870", + "density": "1.7", + "countyfips": "48345", + "countyname": "Motley", + "countyweights": "{\"48345\": \"100\"}", + "countynamesall": "Motley", + "countyfipsall": "48345", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79245": { + "latitude": "34.84545", + "longitude": "-100.50845", + "city": "Memphis", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2346", + "density": "3.5", + "countyfips": "48191", + "countyname": "Hall", + "countyweights": "{\"48191\": \"97.21\", \"48087\": \"1.9\", \"48129\": \"0.89\"}", + "countynamesall": "Hall|Collingsworth|Donley", + "countyfipsall": "48191|48087|48129", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79247": { + "latitude": "34.32983", + "longitude": "-99.40904", + "city": "Odell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "64", + "density": "3.2", + "countyfips": "48487", + "countyname": "Wilbarger", + "countyweights": "{\"48487\": \"100\"}", + "countynamesall": "Wilbarger", + "countyfipsall": "48487", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79248": { + "latitude": "34.00045", + "longitude": "-100.29274", + "city": "Paducah", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1621", + "density": "1.0", + "countyfips": "48101", + "countyname": "Cottle", + "countyweights": "{\"48101\": \"98.39\", \"48269\": \"1.61\"}", + "countynamesall": "Cottle|King", + "countyfipsall": "48101|48269", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79250": { + "latitude": "33.87872", + "longitude": "-101.59391", + "city": "Petersburg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1401", + "density": "3.0", + "countyfips": "48189", + "countyname": "Hale", + "countyweights": "{\"48189\": \"91.38\", \"48303\": \"3.18\", \"48153\": \"2.85\", \"48107\": \"2.59\"}", + "countynamesall": "Hale|Lubbock|Floyd|Crosby", + "countyfipsall": "48189|48303|48153|48107", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79251": { + "latitude": "34.92884", + "longitude": "-100.4389", + "city": "Quail", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13", + "density": "0.1", + "countyfips": "48087", + "countyname": "Collingsworth", + "countyweights": "{\"48087\": \"100\"}", + "countynamesall": "Collingsworth", + "countyfipsall": "48087", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79252": { + "latitude": "34.30503", + "longitude": "-99.81699", + "city": "Quanah", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2954", + "density": "2.1", + "countyfips": "48197", + "countyname": "Hardeman", + "countyweights": "{\"48197\": \"99.66\", \"48101\": \"0.34\"}", + "countynamesall": "Hardeman|Cottle", + "countyfipsall": "48197|48101", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79255": { + "latitude": "34.34612", + "longitude": "-101.05839", + "city": "Quitaque", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "664", + "density": "1.3", + "countyfips": "48045", + "countyname": "Briscoe", + "countyweights": "{\"48045\": \"90.72\", \"48153\": \"5.78\", \"48345\": \"3.5\"}", + "countynamesall": "Briscoe|Floyd|Motley", + "countyfipsall": "48045|48153|48345", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79256": { + "latitude": "33.89496", + "longitude": "-100.7464", + "city": "Roaring Springs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "290", + "density": "0.6", + "countyfips": "48345", + "countyname": "Motley", + "countyweights": "{\"48345\": \"100\"}", + "countynamesall": "Motley", + "countyfipsall": "48345", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79257": { + "latitude": "34.46105", + "longitude": "-101.28703", + "city": "Silverton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "822", + "density": "0.8", + "countyfips": "48045", + "countyname": "Briscoe", + "countyweights": "{\"48045\": \"100\"}", + "countynamesall": "Briscoe", + "countyfipsall": "48045", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79258": { + "latitude": "34.22723", + "longitude": "-101.28847", + "city": "South Plains", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "49", + "density": "0.6", + "countyfips": "48153", + "countyname": "Floyd", + "countyweights": "{\"48153\": \"100\"}", + "countynamesall": "Floyd", + "countyfipsall": "48153", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79259": { + "latitude": "34.40293", + "longitude": "-100.46298", + "city": "Tell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35", + "density": "0.2", + "countyfips": "48075", + "countyname": "Childress", + "countyweights": "{\"48075\": \"66.67\", \"48191\": \"33.33\"}", + "countynamesall": "Childress|Hall", + "countyfipsall": "48075|48191", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79261": { + "latitude": "34.45015", + "longitude": "-100.81109", + "city": "Turkey", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "370", + "density": "0.6", + "countyfips": "48191", + "countyname": "Hall", + "countyweights": "{\"48191\": \"100\"}", + "countynamesall": "Hall", + "countyfipsall": "48191", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79311": { + "latitude": "33.86075", + "longitude": "-101.883", + "city": "Abernathy", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3415", + "density": "7.6", + "countyfips": "48189", + "countyname": "Hale", + "countyweights": "{\"48189\": \"71.18\", \"48303\": \"28.82\"}", + "countynamesall": "Hale|Lubbock", + "countyfipsall": "48189|48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79312": { + "latitude": "34.05163", + "longitude": "-102.36315", + "city": "Amherst", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "978", + "density": "4.3", + "countyfips": "48279", + "countyname": "Lamb", + "countyweights": "{\"48279\": \"100\"}", + "countynamesall": "Lamb", + "countyfipsall": "48279", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79313": { + "latitude": "33.8049", + "longitude": "-102.16223", + "city": "Anton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1528", + "density": "4.5", + "countyfips": "48219", + "countyname": "Hockley", + "countyweights": "{\"48219\": \"94.65\", \"48279\": \"5.35\"}", + "countynamesall": "Hockley|Lamb", + "countyfipsall": "48219|48279", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79314": { + "latitude": "33.58498", + "longitude": "-103.01455", + "city": "Bledsoe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40", + "density": "1.0", + "countyfips": "48079", + "countyname": "Cochran", + "countyweights": "{\"48079\": \"100\"}", + "countynamesall": "Cochran", + "countyfipsall": "48079", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79316": { + "latitude": "33.14437", + "longitude": "-102.31614", + "city": "Brownfield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11310", + "density": "9.3", + "countyfips": "48445", + "countyname": "Terry", + "countyweights": "{\"48445\": \"100\"}", + "countynamesall": "Terry", + "countyfipsall": "48445", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79322": { + "latitude": "33.65766", + "longitude": "-101.18732", + "city": "Crosbyton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2022", + "density": "2.6", + "countyfips": "48107", + "countyname": "Crosby", + "countyweights": "{\"48107\": \"100\"}", + "countynamesall": "Crosby", + "countyfipsall": "48107", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79323": { + "latitude": "32.94698", + "longitude": "-102.87231", + "city": "Denver City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7252", + "density": "12.2", + "countyfips": "48501", + "countyname": "Yoakum", + "countyweights": "{\"48501\": \"87.99\", \"48165\": \"12.01\"}", + "countynamesall": "Yoakum|Gaines", + "countyfipsall": "48501|48165", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79324": { + "latitude": "33.89794", + "longitude": "-102.68244", + "city": "Enochs", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "42", + "density": "0.2", + "countyfips": "48017", + "countyname": "Bailey", + "countyweights": "{\"48017\": \"100\"}", + "countynamesall": "Bailey", + "countyfipsall": "48017", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79325": { + "latitude": "34.41493", + "longitude": "-102.93999", + "city": "Farwell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2184", + "density": "4.7", + "countyfips": "48369", + "countyname": "Parmer", + "countyweights": "{\"48369\": \"99.01\", \"48017\": \"0.99\"}", + "countynamesall": "Parmer|Bailey", + "countyfipsall": "48369|48017", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79326": { + "latitude": "34.07796", + "longitude": "-102.21612", + "city": "Fieldton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "59", + "density": "0.6", + "countyfips": "48279", + "countyname": "Lamb", + "countyweights": "{\"48279\": \"100\"}", + "countynamesall": "Lamb", + "countyfipsall": "48279", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79329": { + "latitude": "33.7248", + "longitude": "-101.68202", + "city": "Idalou", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3112", + "density": "12.8", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79330": { + "latitude": "33.03669", + "longitude": "-101.20991", + "city": "Justiceburg", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "139", + "density": "0.3", + "countyfips": "48169", + "countyname": "Garza", + "countyweights": "{\"48169\": \"100\"}", + "countynamesall": "Garza", + "countyfipsall": "48169", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79331": { + "latitude": "32.69327", + "longitude": "-102.01054", + "city": "Lamesa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12426", + "density": "6.4", + "countyfips": "48115", + "countyname": "Dawson", + "countyweights": "{\"48115\": \"98.97\", \"48317\": \"0.59\", \"48165\": \"0.44\"}", + "countynamesall": "Dawson|Martin|Gaines", + "countyfipsall": "48115|48317|48165", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79336": { + "latitude": "33.60537", + "longitude": "-102.40277", + "city": "Levelland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17270", + "density": "15.4", + "countyfips": "48219", + "countyname": "Hockley", + "countyweights": "{\"48219\": \"100\"}", + "countynamesall": "Hockley", + "countyfipsall": "48219", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79339": { + "latitude": "33.88987", + "longitude": "-102.33543", + "city": "Littlefield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6617", + "density": "9.2", + "countyfips": "48279", + "countyname": "Lamb", + "countyweights": "{\"48279\": \"98.22\", \"48219\": \"1.78\"}", + "countynamesall": "Lamb|Hockley", + "countyfipsall": "48279|48219", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79342": { + "latitude": "32.9082", + "longitude": "-102.33661", + "city": "Loop", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "516", + "density": "2.1", + "countyfips": "48165", + "countyname": "Gaines", + "countyweights": "{\"48165\": \"100\"}", + "countynamesall": "Gaines", + "countyfipsall": "48165", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79343": { + "latitude": "33.65565", + "longitude": "-101.53011", + "city": "Lorenzo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1700", + "density": "4.8", + "countyfips": "48107", + "countyname": "Crosby", + "countyweights": "{\"48107\": \"91.22\", \"48303\": \"8.78\"}", + "countynamesall": "Crosby|Lubbock", + "countyfipsall": "48107|48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79344": { + "latitude": "33.84496", + "longitude": "-102.93043", + "city": "Maple", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "161", + "density": "4.1", + "countyfips": "48017", + "countyname": "Bailey", + "countyweights": "{\"48017\": \"100\"}", + "countynamesall": "Bailey", + "countyfipsall": "48017", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79345": { + "latitude": "33.3342", + "longitude": "-102.32962", + "city": "Meadow", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "990", + "density": "2.0", + "countyfips": "48445", + "countyname": "Terry", + "countyweights": "{\"48445\": \"96.74\", \"48305\": \"3.26\"}", + "countynamesall": "Terry|Lynn", + "countyfipsall": "48445|48305", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79346": { + "latitude": "33.64815", + "longitude": "-102.82498", + "city": "Morton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2225", + "density": "2.2", + "countyfips": "48079", + "countyname": "Cochran", + "countyweights": "{\"48079\": \"99.09\", \"48017\": \"0.91\"}", + "countynamesall": "Cochran|Bailey", + "countyfipsall": "48079|48017", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79347": { + "latitude": "34.17747", + "longitude": "-102.78205", + "city": "Muleshoe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7202", + "density": "3.9", + "countyfips": "48017", + "countyname": "Bailey", + "countyweights": "{\"48017\": \"92.62\", \"48369\": \"5.74\", \"48279\": \"1.14\", \"48069\": \"0.51\"}", + "countynamesall": "Bailey|Parmer|Lamb|Castro", + "countyfipsall": "48017|48369|48279|48069", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79350": { + "latitude": "33.73175", + "longitude": "-101.83121", + "city": "New Deal", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "401", + "density": "108.0", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79351": { + "latitude": "32.92343", + "longitude": "-101.76915", + "city": "Odonnell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1414", + "density": "1.7", + "countyfips": "48305", + "countyname": "Lynn", + "countyweights": "{\"48305\": \"76.77\", \"48115\": \"15.16\", \"48033\": \"8.07\"}", + "countynamesall": "Lynn|Dawson|Borden", + "countyfipsall": "48305|48115|48033", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79353": { + "latitude": "33.78403", + "longitude": "-102.58383", + "city": "Pep", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10", + "density": "0.3", + "countyfips": "48219", + "countyname": "Hockley", + "countyweights": "{\"48219\": \"100\"}", + "countynamesall": "Hockley", + "countyfipsall": "48219", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79355": { + "latitude": "33.18172", + "longitude": "-102.87664", + "city": "Plains", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1877", + "density": "1.7", + "countyfips": "48501", + "countyname": "Yoakum", + "countyweights": "{\"48501\": \"100\"}", + "countynamesall": "Yoakum", + "countyfipsall": "48501", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79356": { + "latitude": "33.25907", + "longitude": "-101.33041", + "city": "Post", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5893", + "density": "3.1", + "countyfips": "48169", + "countyname": "Garza", + "countyweights": "{\"48169\": \"98.13\", \"48305\": \"1.37\", \"48107\": \"0.5\"}", + "countynamesall": "Garza|Lynn|Crosby", + "countyfipsall": "48169|48305|48107", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79357": { + "latitude": "33.61648", + "longitude": "-101.40248", + "city": "Ralls", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2123", + "density": "3.8", + "countyfips": "48107", + "countyname": "Crosby", + "countyweights": "{\"48107\": \"100\"}", + "countynamesall": "Crosby", + "countyfipsall": "48107", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79358": { + "latitude": "33.43884", + "longitude": "-102.19135", + "city": "Ropesville", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1109", + "density": "3.9", + "countyfips": "48219", + "countyname": "Hockley", + "countyweights": "{\"48219\": \"95.07\", \"48303\": \"4.93\"}", + "countynamesall": "Hockley|Lubbock", + "countyfipsall": "48219|48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79359": { + "latitude": "32.96704", + "longitude": "-102.58926", + "city": "Seagraves", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3025", + "density": "5.5", + "countyfips": "48165", + "countyname": "Gaines", + "countyweights": "{\"48165\": \"95\", \"48445\": \"2.55\", \"48501\": \"2.45\"}", + "countynamesall": "Gaines|Terry|Yoakum", + "countyfipsall": "48165|48445|48501", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79360": { + "latitude": "32.68905", + "longitude": "-102.74145", + "city": "Seminole", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16666", + "density": "7.6", + "countyfips": "48165", + "countyname": "Gaines", + "countyweights": "{\"48165\": \"100\"}", + "countynamesall": "Gaines", + "countyfipsall": "48165", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79363": { + "latitude": "33.70901", + "longitude": "-102.04105", + "city": "Shallowater", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5678", + "density": "18.9", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"99.11\", \"48219\": \"0.89\"}", + "countynamesall": "Lubbock|Hockley", + "countyfipsall": "48303|48219", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79364": { + "latitude": "33.45204", + "longitude": "-101.64304", + "city": "Slaton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7630", + "density": "14.9", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"97.38\", \"48305\": \"1.36\", \"48169\": \"1.26\"}", + "countynamesall": "Lubbock|Lynn|Garza", + "countyfipsall": "48303|48305|48169", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79366": { + "latitude": "33.53015", + "longitude": "-101.68366", + "city": "Ransom Canyon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1056", + "density": "504.4", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79367": { + "latitude": "33.62146", + "longitude": "-102.19081", + "city": "Smyer", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "777", + "density": "9.5", + "countyfips": "48219", + "countyname": "Hockley", + "countyweights": "{\"48219\": \"100\"}", + "countynamesall": "Hockley", + "countyfipsall": "48219", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79369": { + "latitude": "33.95575", + "longitude": "-102.14515", + "city": "Spade", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "93", + "density": "2.8", + "countyfips": "48279", + "countyname": "Lamb", + "countyweights": "{\"48279\": \"100\"}", + "countynamesall": "Lamb", + "countyfipsall": "48279", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79370": { + "latitude": "33.50304", + "longitude": "-100.90344", + "city": "Spur", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1594", + "density": "1.5", + "countyfips": "48125", + "countyname": "Dickens", + "countyweights": "{\"48125\": \"91.74\", \"48107\": \"8.26\"}", + "countynamesall": "Dickens|Crosby", + "countyfipsall": "48125|48107", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79371": { + "latitude": "33.97457", + "longitude": "-102.75404", + "city": "Sudan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1399", + "density": "1.9", + "countyfips": "48279", + "countyname": "Lamb", + "countyweights": "{\"48279\": \"93.01\", \"48017\": \"6.99\"}", + "countynamesall": "Lamb|Bailey", + "countyfipsall": "48279|48017", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79372": { + "latitude": "33.43423", + "longitude": "-102.4884", + "city": "Sundown", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1229", + "density": "35.9", + "countyfips": "48219", + "countyname": "Hockley", + "countyweights": "{\"48219\": \"100\"}", + "countynamesall": "Hockley", + "countyfipsall": "48219", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79373": { + "latitude": "33.1708", + "longitude": "-101.8355", + "city": "Tahoka", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2924", + "density": "2.6", + "countyfips": "48305", + "countyname": "Lynn", + "countyweights": "{\"48305\": \"100\"}", + "countynamesall": "Lynn", + "countyfipsall": "48305", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79376": { + "latitude": "33.2339", + "longitude": "-102.67314", + "city": "Tokio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14", + "density": "0.0", + "countyfips": "48501", + "countyname": "Yoakum", + "countyweights": "{\"48501\": \"100\"}", + "countynamesall": "Yoakum", + "countyfipsall": "48501", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79377": { + "latitude": "32.9321", + "longitude": "-102.13166", + "city": "Welch", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "269", + "density": "3.9", + "countyfips": "48115", + "countyname": "Dawson", + "countyweights": "{\"48115\": \"100\"}", + "countynamesall": "Dawson", + "countyfipsall": "48115", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79378": { + "latitude": "33.05323", + "longitude": "-102.48596", + "city": "Wellman", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "196", + "density": "3.7", + "countyfips": "48445", + "countyname": "Terry", + "countyweights": "{\"48445\": \"100\"}", + "countynamesall": "Terry", + "countyfipsall": "48445", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79379": { + "latitude": "33.51066", + "longitude": "-102.64637", + "city": "Whiteface", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "622", + "density": "3.3", + "countyfips": "48079", + "countyname": "Cochran", + "countyweights": "{\"48079\": \"100\"}", + "countynamesall": "Cochran", + "countyfipsall": "48079", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79380": { + "latitude": "33.74713", + "longitude": "-102.35928", + "city": "Whitharral", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "80", + "density": "3.0", + "countyfips": "48219", + "countyname": "Hockley", + "countyweights": "{\"48219\": \"100\"}", + "countynamesall": "Hockley", + "countyfipsall": "48219", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79381": { + "latitude": "33.32286", + "longitude": "-101.7652", + "city": "Wilson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1548", + "density": "4.6", + "countyfips": "48305", + "countyname": "Lynn", + "countyweights": "{\"48305\": \"100\"}", + "countynamesall": "Lynn", + "countyfipsall": "48305", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79382": { + "latitude": "33.45859", + "longitude": "-102.02106", + "city": "Wolfforth", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8149", + "density": "66.0", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79401": { + "latitude": "33.58785", + "longitude": "-101.85142", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7912", + "density": "1110.5", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79403": { + "latitude": "33.6446", + "longitude": "-101.76828", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17926", + "density": "52.4", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79404": { + "latitude": "33.52535", + "longitude": "-101.7963", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10094", + "density": "135.2", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79406": { + "latitude": "33.58349", + "longitude": "-101.88125", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7017", + "density": "2684.7", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79407": { + "latitude": "33.56317", + "longitude": "-102.07929", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22807", + "density": "124.5", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"95.05\", \"48219\": \"4.95\"}", + "countynamesall": "Lubbock|Hockley", + "countyfipsall": "48303|48219", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79410": { + "latitude": "33.56969", + "longitude": "-101.89127", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "10166", + "density": "1623.2", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79411": { + "latitude": "33.57002", + "longitude": "-101.85779", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7012", + "density": "1819.9", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79412": { + "latitude": "33.54539", + "longitude": "-101.85744", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16554", + "density": "2050.3", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79413": { + "latitude": "33.54623", + "longitude": "-101.88729", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21821", + "density": "1763.1", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79414": { + "latitude": "33.54875", + "longitude": "-101.91944", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18731", + "density": "2280.1", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79415": { + "latitude": "33.69755", + "longitude": "-101.90483", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17939", + "density": "104.6", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79416": { + "latitude": "33.60429", + "longitude": "-101.97648", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "34124", + "density": "410.1", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79423": { + "latitude": "33.44038", + "longitude": "-101.85079", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40303", + "density": "257.2", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"99.69\", \"48305\": \"0.31\"}", + "countynamesall": "Lubbock|Lynn", + "countyfipsall": "48303|48305", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79424": { + "latitude": "33.46993", + "longitude": "-101.94095", + "city": "Lubbock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "46933", + "density": "434.1", + "countyfips": "48303", + "countyname": "Lubbock", + "countyweights": "{\"48303\": \"100\"}", + "countynamesall": "Lubbock", + "countyfipsall": "48303", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79501": { + "latitude": "32.74483", + "longitude": "-99.90507", + "city": "Anson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2659", + "density": "5.2", + "countyfips": "48253", + "countyname": "Jones", + "countyweights": "{\"48253\": \"100\"}", + "countynamesall": "Jones", + "countyfipsall": "48253", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79502": { + "latitude": "33.17852", + "longitude": "-100.24898", + "city": "Aspermont", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1305", + "density": "0.8", + "countyfips": "48433", + "countyname": "Stonewall", + "countyweights": "{\"48433\": \"100\"}", + "countynamesall": "Stonewall", + "countyfipsall": "48433", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79503": { + "latitude": "32.87114", + "longitude": "-99.69599", + "city": "Avoca", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "85", + "density": "0.4", + "countyfips": "48253", + "countyname": "Jones", + "countyweights": "{\"48253\": \"100\"}", + "countynamesall": "Jones", + "countyfipsall": "48253", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79504": { + "latitude": "32.32058", + "longitude": "-99.35233", + "city": "Baird", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3366", + "density": "3.5", + "countyfips": "48059", + "countyname": "Callahan", + "countyweights": "{\"48059\": \"99.57\", \"48417\": \"0.43\"}", + "countynamesall": "Callahan|Shackelford", + "countyfipsall": "48059|48417", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79505": { + "latitude": "33.57582", + "longitude": "-99.81601", + "city": "Benjamin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "244", + "density": "0.5", + "countyfips": "48275", + "countyname": "Knox", + "countyweights": "{\"48275\": \"100\"}", + "countynamesall": "Knox", + "countyfipsall": "48275", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79506": { + "latitude": "32.11798", + "longitude": "-100.32345", + "city": "Blackwell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "626", + "density": "1.3", + "countyfips": "48353", + "countyname": "Nolan", + "countyweights": "{\"48353\": \"56.99\", \"48081\": \"43.01\"}", + "countynamesall": "Nolan|Coke", + "countyfipsall": "48353|48081", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79508": { + "latitude": "32.27409", + "longitude": "-99.82606", + "city": "Buffalo Gap", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1470", + "density": "47.7", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"100\"}", + "countynamesall": "Taylor", + "countyfipsall": "48441", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79510": { + "latitude": "32.27507", + "longitude": "-99.52899", + "city": "Clyde", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7573", + "density": "10.7", + "countyfips": "48059", + "countyname": "Callahan", + "countyweights": "{\"48059\": \"99.55\", \"48083\": \"0.45\"}", + "countynamesall": "Callahan|Coleman", + "countyfipsall": "48059|48083", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79511": { + "latitude": "32.41453", + "longitude": "-101.25956", + "city": "Coahoma", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1183", + "density": "2.5", + "countyfips": "48227", + "countyname": "Howard", + "countyweights": "{\"48227\": \"93.95\", \"48033\": \"6.05\"}", + "countynamesall": "Howard|Borden", + "countyfipsall": "48227|48033", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79512": { + "latitude": "32.31554", + "longitude": "-100.91776", + "city": "Colorado City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7456", + "density": "5.0", + "countyfips": "48335", + "countyname": "Mitchell", + "countyweights": "{\"48335\": \"99.91\", \"48415\": \"0.09\"}", + "countynamesall": "Mitchell|Scurry", + "countyfipsall": "48335|48415", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79517": { + "latitude": "32.87671", + "longitude": "-101.24268", + "city": "Fluvanna", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "164", + "density": "0.3", + "countyfips": "48415", + "countyname": "Scurry", + "countyweights": "{\"48415\": \"65.5\", \"48033\": \"34.5\"}", + "countynamesall": "Scurry|Borden", + "countyfipsall": "48415|48033", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79518": { + "latitude": "33.33064", + "longitude": "-100.72207", + "city": "Girard", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "48", + "density": "0.1", + "countyfips": "48263", + "countyname": "Kent", + "countyweights": "{\"48263\": \"100\"}", + "countynamesall": "Kent", + "countyfipsall": "48263", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79519": { + "latitude": "32.04877", + "longitude": "-99.69704", + "city": "Goldsboro", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "41", + "density": "0.5", + "countyfips": "48083", + "countyname": "Coleman", + "countyweights": "{\"48083\": \"62.16\", \"48399\": \"37.84\"}", + "countynamesall": "Coleman|Runnels", + "countyfipsall": "48083|48399", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79520": { + "latitude": "32.86489", + "longitude": "-100.13233", + "city": "Hamlin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2121", + "density": "4.2", + "countyfips": "48253", + "countyname": "Jones", + "countyweights": "{\"48253\": \"96.82\", \"48151\": \"3.18\"}", + "countynamesall": "Jones|Fisher", + "countyfipsall": "48253|48151", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79521": { + "latitude": "33.12235", + "longitude": "-99.65414", + "city": "Haskell", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3611", + "density": "4.5", + "countyfips": "48207", + "countyname": "Haskell", + "countyweights": "{\"48207\": \"100\"}", + "countynamesall": "Haskell", + "countyfipsall": "48207", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79525": { + "latitude": "32.63114", + "longitude": "-99.83178", + "city": "Hawley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2498", + "density": "10.3", + "countyfips": "48253", + "countyname": "Jones", + "countyweights": "{\"48253\": \"100\"}", + "countynamesall": "Jones", + "countyfipsall": "48253", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79526": { + "latitude": "32.63739", + "longitude": "-100.72015", + "city": "Hermleigh", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "837", + "density": "1.5", + "countyfips": "48415", + "countyname": "Scurry", + "countyweights": "{\"48415\": \"98.16\", \"48151\": \"1.84\"}", + "countynamesall": "Scurry|Fisher", + "countyfipsall": "48415|48151", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79527": { + "latitude": "32.64376", + "longitude": "-101.15094", + "city": "Ira", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "263", + "density": "1.1", + "countyfips": "48415", + "countyname": "Scurry", + "countyweights": "{\"48415\": \"81.67\", \"48033\": \"18.33\"}", + "countynamesall": "Scurry|Borden", + "countyfipsall": "48415|48033", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79528": { + "latitude": "33.26207", + "longitude": "-100.79076", + "city": "Jayton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "587", + "density": "0.6", + "countyfips": "48263", + "countyname": "Kent", + "countyweights": "{\"48263\": \"98.38\", \"48433\": \"1.62\"}", + "countynamesall": "Kent|Stonewall", + "countyfipsall": "48263|48433", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79529": { + "latitude": "33.43853", + "longitude": "-99.84731", + "city": "Knox City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1480", + "density": "6.4", + "countyfips": "48275", + "countyname": "Knox", + "countyweights": "{\"48275\": \"99.64\", \"48207\": \"0.36\"}", + "countynamesall": "Knox|Haskell", + "countyfipsall": "48275|48207", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79530": { + "latitude": "32.11907", + "longitude": "-99.75931", + "city": "Lawn", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "538", + "density": "6.0", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"100\"}", + "countynamesall": "Taylor", + "countyfipsall": "48441", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79532": { + "latitude": "32.40496", + "longitude": "-100.71227", + "city": "Loraine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "826", + "density": "2.6", + "countyfips": "48335", + "countyname": "Mitchell", + "countyweights": "{\"48335\": \"97.66\", \"48353\": \"1.17\", \"48415\": \"1.17\"}", + "countynamesall": "Mitchell|Nolan|Scurry", + "countyfipsall": "48335|48353|48415", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79533": { + "latitude": "32.85549", + "longitude": "-99.55488", + "city": "Lueders", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "385", + "density": "1.0", + "countyfips": "48253", + "countyname": "Jones", + "countyweights": "{\"48253\": \"87.92\", \"48417\": \"10.17\", \"48207\": \"1.27\", \"48447\": \"0.64\"}", + "countynamesall": "Jones|Shackelford|Haskell|Throckmorton", + "countyfipsall": "48253|48417|48207|48447", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79534": { + "latitude": "32.75673", + "longitude": "-100.21828", + "city": "McCaulley", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "125", + "density": "0.8", + "countyfips": "48151", + "countyname": "Fisher", + "countyweights": "{\"48151\": \"100\"}", + "countynamesall": "Fisher", + "countyfipsall": "48151", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79535": { + "latitude": "32.2257", + "longitude": "-100.47631", + "city": "Maryneal", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "179", + "density": "0.5", + "countyfips": "48353", + "countyname": "Nolan", + "countyweights": "{\"48353\": \"100\"}", + "countynamesall": "Nolan", + "countyfipsall": "48353", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79536": { + "latitude": "32.47378", + "longitude": "-100.03345", + "city": "Merkel", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5258", + "density": "6.4", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"84.04\", \"48253\": \"15.64\", \"48353\": \"0.32\"}", + "countynamesall": "Taylor|Jones|Nolan", + "countyfipsall": "48441|48253|48353", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79537": { + "latitude": "32.29187", + "longitude": "-100.21074", + "city": "Nolan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35", + "density": "0.2", + "countyfips": "48353", + "countyname": "Nolan", + "countyweights": "{\"48353\": \"100\"}", + "countynamesall": "Nolan", + "countyfipsall": "48353", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79538": { + "latitude": "31.97814", + "longitude": "-99.68094", + "city": "Novice", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "325", + "density": "1.8", + "countyfips": "48083", + "countyname": "Coleman", + "countyweights": "{\"48083\": \"84.13\", \"48399\": \"15.87\"}", + "countynamesall": "Coleman|Runnels", + "countyfipsall": "48083|48399", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79539": { + "latitude": "33.36843", + "longitude": "-99.88223", + "city": "O'Brien", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "223", + "density": "2.3", + "countyfips": "48207", + "countyname": "Haskell", + "countyweights": "{\"48207\": \"100\"}", + "countynamesall": "Haskell", + "countyfipsall": "48207", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79540": { + "latitude": "33.16876", + "longitude": "-100.03773", + "city": "Old Glory", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "121", + "density": "0.9", + "countyfips": "48433", + "countyname": "Stonewall", + "countyweights": "{\"48433\": \"100\"}", + "countynamesall": "Stonewall", + "countyfipsall": "48433", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79541": { + "latitude": "32.15305", + "longitude": "-99.81497", + "city": "Ovalo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "973", + "density": "2.4", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"96.08\", \"48059\": \"3.92\"}", + "countynamesall": "Taylor|Callahan", + "countyfipsall": "48441|48059", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79543": { + "latitude": "32.7218", + "longitude": "-100.40076", + "city": "Roby", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1298", + "density": "3.1", + "countyfips": "48151", + "countyname": "Fisher", + "countyweights": "{\"48151\": \"100\"}", + "countynamesall": "Fisher", + "countyfipsall": "48151", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79544": { + "latitude": "33.30151", + "longitude": "-99.85288", + "city": "Rochester", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "676", + "density": "3.2", + "countyfips": "48207", + "countyname": "Haskell", + "countyweights": "{\"48207\": \"100\"}", + "countynamesall": "Haskell", + "countyfipsall": "48207", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79545": { + "latitude": "32.41144", + "longitude": "-100.58009", + "city": "Roscoe", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1774", + "density": "3.0", + "countyfips": "48353", + "countyname": "Nolan", + "countyweights": "{\"48353\": \"97.43\", \"48415\": \"1.4\", \"48151\": \"1.17\"}", + "countynamesall": "Nolan|Scurry|Fisher", + "countyfipsall": "48353|48415|48151", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79546": { + "latitude": "32.89242", + "longitude": "-100.49804", + "city": "Rotan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1794", + "density": "1.9", + "countyfips": "48151", + "countyname": "Fisher", + "countyweights": "{\"48151\": \"97.76\", \"48433\": \"2.04\", \"48415\": \"0.2\"}", + "countynamesall": "Fisher|Stonewall|Scurry", + "countyfipsall": "48151|48433|48415", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79547": { + "latitude": "33.19923", + "longitude": "-99.91193", + "city": "Rule", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "642", + "density": "3.2", + "countyfips": "48207", + "countyname": "Haskell", + "countyweights": "{\"48207\": \"100\"}", + "countynamesall": "Haskell", + "countyfipsall": "48207", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79548": { + "latitude": "33.05573", + "longitude": "-99.92295", + "city": "Rule", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "203", + "density": "0.9", + "countyfips": "48207", + "countyname": "Haskell", + "countyweights": "{\"48207\": \"100\"}", + "countynamesall": "Haskell", + "countyfipsall": "48207", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79549": { + "latitude": "32.91367", + "longitude": "-100.84506", + "city": "Snyder", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15943", + "density": "6.4", + "countyfips": "48415", + "countyname": "Scurry", + "countyweights": "{\"48415\": \"99.52\", \"48263\": \"0.48\"}", + "countynamesall": "Scurry|Kent", + "countyfipsall": "48415|48263", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79553": { + "latitude": "32.93882", + "longitude": "-99.84265", + "city": "Stamford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3270", + "density": "7.6", + "countyfips": "48253", + "countyname": "Jones", + "countyweights": "{\"48253\": \"97.61\", \"48207\": \"2.39\"}", + "countynamesall": "Jones|Haskell", + "countyfipsall": "48253|48207", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79556": { + "latitude": "32.45431", + "longitude": "-100.36401", + "city": "Sweetwater", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12833", + "density": "16.3", + "countyfips": "48353", + "countyname": "Nolan", + "countyweights": "{\"48353\": \"97.24\", \"48151\": \"2.76\"}", + "countynamesall": "Nolan|Fisher", + "countyfipsall": "48353|48151", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79560": { + "latitude": "32.67887", + "longitude": "-100.20891", + "city": "Sylvester", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "172", + "density": "0.9", + "countyfips": "48151", + "countyname": "Fisher", + "countyweights": "{\"48151\": \"87.59\", \"48253\": \"12.41\"}", + "countynamesall": "Fisher|Jones", + "countyfipsall": "48151|48253", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79561": { + "latitude": "32.52133", + "longitude": "-100.2004", + "city": "Trent", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "615", + "density": "1.9", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"77.19\", \"48353\": \"15.26\", \"48151\": \"7.55\"}", + "countynamesall": "Taylor|Nolan|Fisher", + "countyfipsall": "48441|48353|48151", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79562": { + "latitude": "32.24437", + "longitude": "-99.86596", + "city": "Tuscola", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3371", + "density": "11.2", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"100\"}", + "countynamesall": "Taylor", + "countyfipsall": "48441", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79563": { + "latitude": "32.42317", + "longitude": "-99.90769", + "city": "Tye", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1074", + "density": "25.3", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"100\"}", + "countynamesall": "Taylor", + "countyfipsall": "48441", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79565": { + "latitude": "32.39463", + "longitude": "-101.09316", + "city": "Westbrook", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "292", + "density": "1.2", + "countyfips": "48335", + "countyname": "Mitchell", + "countyweights": "{\"48335\": \"100\"}", + "countynamesall": "Mitchell", + "countyfipsall": "48335", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79566": { + "latitude": "32.11347", + "longitude": "-100.12203", + "city": "Wingate", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "247", + "density": "0.6", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"51.05\", \"48399\": \"48.95\"}", + "countynamesall": "Taylor|Runnels", + "countyfipsall": "48441|48399", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79567": { + "latitude": "31.97769", + "longitude": "-99.95308", + "city": "Winters", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3432", + "density": "4.2", + "countyfips": "48399", + "countyname": "Runnels", + "countyweights": "{\"48399\": \"98.07\", \"48441\": \"1.93\"}", + "countynamesall": "Runnels|Taylor", + "countyfipsall": "48399|48441", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79601": { + "latitude": "32.57964", + "longitude": "-99.66351", + "city": "Abilene", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "27507", + "density": "42.7", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"70.54\", \"48253\": \"26.66\", \"48059\": \"1.41\", \"48417\": \"1.39\"}", + "countynamesall": "Taylor|Jones|Callahan|Shackelford", + "countyfipsall": "48441|48253|48059|48417", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79602": { + "latitude": "32.33948", + "longitude": "-99.66982", + "city": "Abilene", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "24876", + "density": "83.7", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"98.07\", \"48059\": \"1.93\"}", + "countynamesall": "Taylor|Callahan", + "countyfipsall": "48441|48059", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79603": { + "latitude": "32.40157", + "longitude": "-99.88468", + "city": "Abilene", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23454", + "density": "155.0", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"100\"}", + "countynamesall": "Taylor", + "countyfipsall": "48441", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79605": { + "latitude": "32.43398", + "longitude": "-99.78205", + "city": "Abilene", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "29732", + "density": "1047.5", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"100\"}", + "countynamesall": "Taylor", + "countyfipsall": "48441", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79606": { + "latitude": "32.36093", + "longitude": "-99.82698", + "city": "Abilene", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25053", + "density": "154.8", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"100\"}", + "countynamesall": "Taylor", + "countyfipsall": "48441", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79607": { + "latitude": "32.42853", + "longitude": "-99.82546", + "city": "Dyess Afb", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "3308", + "density": "336.7", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"100\"}", + "countynamesall": "Taylor", + "countyfipsall": "48441", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79699": { + "latitude": "32.46227", + "longitude": "-99.71586", + "city": "Abilene", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "115", + "density": "466.2", + "countyfips": "48441", + "countyname": "Taylor", + "countyweights": "{\"48441\": \"100\"}", + "countynamesall": "Taylor", + "countyfipsall": "48441", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79701": { + "latitude": "31.99237", + "longitude": "-102.08147", + "city": "Midland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "32219", + "density": "1046.3", + "countyfips": "48329", + "countyname": "Midland", + "countyweights": "{\"48329\": \"100\"}", + "countynamesall": "Midland", + "countyfipsall": "48329", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79703": { + "latitude": "31.97945", + "longitude": "-102.13231", + "city": "Midland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "23834", + "density": "1374.5", + "countyfips": "48329", + "countyname": "Midland", + "countyweights": "{\"48329\": \"100\"}", + "countynamesall": "Midland", + "countyfipsall": "48329", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79705": { + "latitude": "32.05114", + "longitude": "-102.05954", + "city": "Midland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "41933", + "density": "456.3", + "countyfips": "48329", + "countyname": "Midland", + "countyweights": "{\"48329\": \"100\"}", + "countynamesall": "Midland", + "countyfipsall": "48329", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79706": { + "latitude": "31.84553", + "longitude": "-102.00236", + "city": "Midland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "25657", + "density": "13.3", + "countyfips": "48329", + "countyname": "Midland", + "countyweights": "{\"48329\": \"100\"}", + "countynamesall": "Midland", + "countyfipsall": "48329", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79707": { + "latitude": "32.03347", + "longitude": "-102.21158", + "city": "Midland", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39921", + "density": "217.6", + "countyfips": "48329", + "countyname": "Midland", + "countyweights": "{\"48329\": \"100\"}", + "countynamesall": "Midland", + "countyfipsall": "48329", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79713": { + "latitude": "32.49638", + "longitude": "-101.7556", + "city": "Ackerly", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "493", + "density": "1.2", + "countyfips": "48317", + "countyname": "Martin", + "countyweights": "{\"48317\": \"50.17\", \"48115\": \"39.36\", \"48227\": \"7.94\", \"48033\": \"2.53\"}", + "countynamesall": "Martin|Dawson|Howard|Borden", + "countyfipsall": "48317|48115|48227|48033", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79714": { + "latitude": "32.32943", + "longitude": "-102.69918", + "city": "Andrews", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "18036", + "density": "9.1", + "countyfips": "48003", + "countyname": "Andrews", + "countyweights": "{\"48003\": \"100\"}", + "countynamesall": "Andrews", + "countyfipsall": "48003", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79718": { + "latitude": "31.00535", + "longitude": "-103.76186", + "city": "Balmorhea", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1169", + "density": "1.5", + "countyfips": "48389", + "countyname": "Reeves", + "countyweights": "{\"48389\": \"100\"}", + "countynamesall": "Reeves", + "countyfipsall": "48389", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79719": { + "latitude": "31.46011", + "longitude": "-103.40559", + "city": "Barstow", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "589", + "density": "11.9", + "countyfips": "48475", + "countyname": "Ward", + "countyweights": "{\"48475\": \"100\"}", + "countynamesall": "Ward", + "countyfipsall": "48475", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79720": { + "latitude": "32.25363", + "longitude": "-101.47291", + "city": "Big Spring", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "35025", + "density": "14.8", + "countyfips": "48227", + "countyname": "Howard", + "countyweights": "{\"48227\": \"99.15\", \"48173\": \"0.72\", \"48033\": \"0.14\"}", + "countynamesall": "Howard|Glasscock|Borden", + "countyfipsall": "48227|48173|48033", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79730": { + "latitude": "31.16955", + "longitude": "-103.0851", + "city": "Coyanosa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "157", + "density": "0.5", + "countyfips": "48371", + "countyname": "Pecos", + "countyweights": "{\"48371\": \"100\"}", + "countynamesall": "Pecos", + "countyfipsall": "48371", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79731": { + "latitude": "31.41808", + "longitude": "-102.48336", + "city": "Crane", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4772", + "density": "5.6", + "countyfips": "48103", + "countyname": "Crane", + "countyweights": "{\"48103\": \"99.95\", \"48461\": \"0.05\"}", + "countynamesall": "Crane|Upton", + "countyfipsall": "48103|48461", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79733": { + "latitude": "32.10287", + "longitude": "-101.36544", + "city": "Forsan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "169", + "density": "35.6", + "countyfips": "48227", + "countyname": "Howard", + "countyweights": "{\"48227\": \"100\"}", + "countynamesall": "Howard", + "countyfipsall": "48227", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79734": { + "latitude": "30.68395", + "longitude": "-103.95565", + "city": "Fort Davis", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2145", + "density": "0.6", + "countyfips": "48243", + "countyname": "Jeff Davis", + "countyweights": "{\"48243\": \"100\"}", + "countynamesall": "Jeff Davis", + "countyfipsall": "48243", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79735": { + "latitude": "30.74291", + "longitude": "-102.78314", + "city": "Fort Stockton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "13915", + "density": "3.1", + "countyfips": "48371", + "countyname": "Pecos", + "countyweights": "{\"48371\": \"99.98\", \"48043\": \"0.02\"}", + "countynamesall": "Pecos|Brewster", + "countyfipsall": "48371|48043", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79738": { + "latitude": "32.75712", + "longitude": "-101.47555", + "city": "Gail", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "234", + "density": "0.3", + "countyfips": "48033", + "countyname": "Borden", + "countyweights": "{\"48033\": \"100\"}", + "countynamesall": "Borden", + "countyfipsall": "48033", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79739": { + "latitude": "31.76367", + "longitude": "-101.51601", + "city": "Garden City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1322", + "density": "1.0", + "countyfips": "48173", + "countyname": "Glasscock", + "countyweights": "{\"48173\": \"98.44\", \"48383\": \"1.56\"}", + "countynamesall": "Glasscock|Reagan", + "countyfipsall": "48173|48383", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79741": { + "latitude": "31.97", + "longitude": "-102.62753", + "city": "Goldsmith", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "222", + "density": "0.4", + "countyfips": "48135", + "countyname": "Ector", + "countyweights": "{\"48135\": \"100\"}", + "countynamesall": "Ector", + "countyfipsall": "48135", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79742": { + "latitude": "31.34203", + "longitude": "-102.86846", + "city": "Grandfalls", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "526", + "density": "3.5", + "countyfips": "48475", + "countyname": "Ward", + "countyweights": "{\"48475\": \"100\"}", + "countynamesall": "Ward", + "countyfipsall": "48475", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79743": { + "latitude": "31.17762", + "longitude": "-102.59435", + "city": "Imperial", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "328", + "density": "0.5", + "countyfips": "48371", + "countyname": "Pecos", + "countyweights": "{\"48371\": \"100\"}", + "countynamesall": "Pecos", + "countyfipsall": "48371", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79744": { + "latitude": "30.92196", + "longitude": "-101.97036", + "city": "Iraan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1255", + "density": "0.9", + "countyfips": "48371", + "countyname": "Pecos", + "countyweights": "{\"48371\": \"97.65\", \"48105\": \"2.35\"}", + "countynamesall": "Pecos|Crockett", + "countyfipsall": "48371|48105", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79745": { + "latitude": "31.82638", + "longitude": "-103.05179", + "city": "Kermit", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6984", + "density": "6.9", + "countyfips": "48495", + "countyname": "Winkler", + "countyweights": "{\"48495\": \"100\"}", + "countynamesall": "Winkler", + "countyfipsall": "48495", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79748": { + "latitude": "32.41116", + "longitude": "-101.65046", + "city": "Knott", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "298", + "density": "2.1", + "countyfips": "48227", + "countyname": "Howard", + "countyweights": "{\"48227\": \"83.82\", \"48317\": \"16.18\"}", + "countynamesall": "Howard|Martin", + "countyfipsall": "48227|48317", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79749": { + "latitude": "32.28903", + "longitude": "-101.87178", + "city": "Lenorah", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "366", + "density": "2.2", + "countyfips": "48317", + "countyname": "Martin", + "countyweights": "{\"48317\": \"100\"}", + "countynamesall": "Martin", + "countyfipsall": "48317", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79752": { + "latitude": "31.21544", + "longitude": "-102.15319", + "city": "McCamey", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2467", + "density": "4.3", + "countyfips": "48461", + "countyname": "Upton", + "countyweights": "{\"48461\": \"100\"}", + "countynamesall": "Upton", + "countyfipsall": "48461", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79754": { + "latitude": "31.80166", + "longitude": "-103.59994", + "city": "Mentone", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "98", + "density": "0.2", + "countyfips": "48301", + "countyname": "Loving", + "countyweights": "{\"48301\": \"100\"}", + "countynamesall": "Loving", + "countyfipsall": "48301", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79755": { + "latitude": "31.50464", + "longitude": "-101.93778", + "city": "Midkiff", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "124", + "density": "0.2", + "countyfips": "48461", + "countyname": "Upton", + "countyweights": "{\"48461\": \"100\"}", + "countynamesall": "Upton", + "countyfipsall": "48461", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79756": { + "latitude": "31.5458", + "longitude": "-102.85809", + "city": "Monahans", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9565", + "density": "21.3", + "countyfips": "48475", + "countyname": "Ward", + "countyweights": "{\"48475\": \"99.92\", \"48103\": \"0.08\", \"48495\": \"0\"}", + "countynamesall": "Ward|Crane|Winkler", + "countyfipsall": "48475|48103|48495", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79758": { + "latitude": "32.00814", + "longitude": "-102.33409", + "city": "Gardendale", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2403", + "density": "17.5", + "countyfips": "48135", + "countyname": "Ector", + "countyweights": "{\"48135\": \"100\"}", + "countynamesall": "Ector", + "countyfipsall": "48135", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79759": { + "latitude": "31.79647", + "longitude": "-102.70154", + "city": "Notrees", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48135", + "countyname": "Ector", + "countyweights": "{\"48135\": \"100\"}", + "countynamesall": "Ector", + "countyfipsall": "48135", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79761": { + "latitude": "31.85574", + "longitude": "-102.34958", + "city": "Odessa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "33602", + "density": "1273.2", + "countyfips": "48135", + "countyname": "Ector", + "countyweights": "{\"48135\": \"100\"}", + "countynamesall": "Ector", + "countyfipsall": "48135", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79762": { + "latitude": "31.92647", + "longitude": "-102.35444", + "city": "Odessa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "43812", + "density": "533.7", + "countyfips": "48135", + "countyname": "Ector", + "countyweights": "{\"48135\": \"100\"}", + "countynamesall": "Ector", + "countyfipsall": "48135", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79763": { + "latitude": "31.79918", + "longitude": "-102.46788", + "city": "Odessa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "38833", + "density": "276.1", + "countyfips": "48135", + "countyname": "Ector", + "countyweights": "{\"48135\": \"100\"}", + "countynamesall": "Ector", + "countyfipsall": "48135", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79764": { + "latitude": "31.89053", + "longitude": "-102.47105", + "city": "Odessa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "22172", + "density": "147.0", + "countyfips": "48135", + "countyname": "Ector", + "countyweights": "{\"48135\": \"100\"}", + "countynamesall": "Ector", + "countyfipsall": "48135", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79765": { + "latitude": "31.92346", + "longitude": "-102.29242", + "city": "Odessa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "16486", + "density": "308.2", + "countyfips": "48135", + "countyname": "Ector", + "countyweights": "{\"48135\": \"63.29\", \"48329\": \"36.71\"}", + "countynamesall": "Ector|Midland", + "countyfipsall": "48135|48329", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79766": { + "latitude": "31.7033", + "longitude": "-102.41204", + "city": "Odessa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7694", + "density": "12.5", + "countyfips": "48135", + "countyname": "Ector", + "countyweights": "{\"48135\": \"96.32\", \"48103\": \"2.89\", \"48329\": \"0.78\"}", + "countynamesall": "Ector|Crane|Midland", + "countyfipsall": "48135|48103|48329", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79770": { + "latitude": "31.86396", + "longitude": "-103.92971", + "city": "Orla", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "0", + "density": "0.0", + "countyfips": "48389", + "countyname": "Reeves", + "countyweights": "{\"48389\": \"100\"}", + "countynamesall": "Reeves", + "countyfipsall": "48389", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79772": { + "latitude": "31.42541", + "longitude": "-103.62296", + "city": "Pecos", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "14029", + "density": "4.7", + "countyfips": "48389", + "countyname": "Reeves", + "countyweights": "{\"48389\": \"99.72\", \"48475\": \"0.28\", \"48109\": \"0\"}", + "countynamesall": "Reeves|Ward|Culberson", + "countyfipsall": "48389|48475|48109", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79777": { + "latitude": "31.49787", + "longitude": "-103.12979", + "city": "Pyote", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "293", + "density": "1.1", + "countyfips": "48475", + "countyname": "Ward", + "countyweights": "{\"48475\": \"100\"}", + "countynamesall": "Ward", + "countyfipsall": "48475", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79778": { + "latitude": "31.17611", + "longitude": "-101.92385", + "city": "Rankin", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1056", + "density": "3.9", + "countyfips": "48461", + "countyname": "Upton", + "countyweights": "{\"48461\": \"100\"}", + "countynamesall": "Upton", + "countyfipsall": "48461", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79780": { + "latitude": "31.06197", + "longitude": "-103.59216", + "city": "Saragosa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "173", + "density": "0.6", + "countyfips": "48389", + "countyname": "Reeves", + "countyweights": "{\"48389\": \"100\"}", + "countynamesall": "Reeves", + "countyfipsall": "48389", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79781": { + "latitude": "30.59596", + "longitude": "-101.77778", + "city": "Sheffield", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "263", + "density": "0.2", + "countyfips": "48371", + "countyname": "Pecos", + "countyweights": "{\"48371\": \"85.48\", \"48443\": \"11.88\", \"48105\": \"2.64\"}", + "countynamesall": "Pecos|Terrell|Crockett", + "countyfipsall": "48371|48443|48105", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79782": { + "latitude": "32.15842", + "longitude": "-101.84321", + "city": "Stanton", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4497", + "density": "3.8", + "countyfips": "48317", + "countyname": "Martin", + "countyweights": "{\"48317\": \"99.07\", \"48173\": \"0.93\"}", + "countynamesall": "Martin|Glasscock", + "countyfipsall": "48317|48173", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79783": { + "latitude": "32.3217", + "longitude": "-102.04229", + "city": "Tarzan", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "321", + "density": "0.7", + "countyfips": "48317", + "countyname": "Martin", + "countyweights": "{\"48317\": \"100\"}", + "countynamesall": "Martin", + "countyfipsall": "48317", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79785": { + "latitude": "31.32749", + "longitude": "-103.9069", + "city": "Toyah", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "121", + "density": "0.3", + "countyfips": "48389", + "countyname": "Reeves", + "countyweights": "{\"48389\": \"100\"}", + "countynamesall": "Reeves", + "countyfipsall": "48389", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79788": { + "latitude": "31.5729", + "longitude": "-102.98358", + "city": "Wickett", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "685", + "density": "57.2", + "countyfips": "48475", + "countyname": "Ward", + "countyweights": "{\"48475\": \"100\"}", + "countynamesall": "Ward", + "countyfipsall": "48475", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79789": { + "latitude": "31.76026", + "longitude": "-103.18576", + "city": "Wink", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "824", + "density": "8.0", + "countyfips": "48495", + "countyname": "Winkler", + "countyweights": "{\"48495\": \"100\"}", + "countynamesall": "Winkler", + "countyfipsall": "48495", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79821": { + "latitude": "31.97696", + "longitude": "-106.59781", + "city": "Anthony", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7136", + "density": "241.6", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79830": { + "latitude": "29.80008", + "longitude": "-103.22468", + "city": "Alpine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7860", + "density": "1.5", + "countyfips": "48043", + "countyname": "Brewster", + "countyweights": "{\"48043\": \"100\"}", + "countynamesall": "Brewster", + "countyfipsall": "48043", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79831": { + "latitude": "30.4295", + "longitude": "-103.32553", + "city": "Alpine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4", + "density": "0.0", + "countyfips": "48043", + "countyname": "Brewster", + "countyweights": "{\"48043\": \"100\"}", + "countynamesall": "Brewster", + "countyfipsall": "48043", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79834": { + "latitude": "29.29122", + "longitude": "-103.26531", + "city": "Big Bend National Park", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "233", + "density": "0.1", + "countyfips": "48043", + "countyname": "Brewster", + "countyweights": "{\"48043\": \"100\"}", + "countynamesall": "Brewster", + "countyfipsall": "48043", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79835": { + "latitude": "31.9352", + "longitude": "-106.58693", + "city": "Canutillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "11184", + "density": "365.0", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79836": { + "latitude": "31.57127", + "longitude": "-106.2019", + "city": "Clint", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5891", + "density": "118.6", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79837": { + "latitude": "32.19026", + "longitude": "-105.26698", + "city": "Dell City", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "322", + "density": "0.1", + "countyfips": "48229", + "countyname": "Hudspeth", + "countyweights": "{\"48229\": \"89.64\", \"35035\": \"10.36\"}", + "countynamesall": "Hudspeth|Otero", + "countyfipsall": "48229|35035", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79838": { + "latitude": "31.49182", + "longitude": "-106.17357", + "city": "Fabens", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6171", + "density": "81.0", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Ojinaga" + }, + "79839": { + "latitude": "31.21317", + "longitude": "-105.60772", + "city": "Fort Hancock", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2141", + "density": "1.7", + "countyfips": "48229", + "countyname": "Hudspeth", + "countyweights": "{\"48229\": \"100\"}", + "countynamesall": "Hudspeth", + "countyfipsall": "48229", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79842": { + "latitude": "30.09108", + "longitude": "-103.11657", + "city": "Marathon", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "425", + "density": "0.3", + "countyfips": "48043", + "countyname": "Brewster", + "countyweights": "{\"48043\": \"100\"}", + "countynamesall": "Brewster", + "countyfipsall": "48043", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79843": { + "latitude": "30.12696", + "longitude": "-104.22342", + "city": "Marfa", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2456", + "density": "0.6", + "countyfips": "48377", + "countyname": "Presidio", + "countyweights": "{\"48377\": \"100\"}", + "countynamesall": "Presidio", + "countyfipsall": "48377", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79845": { + "latitude": "29.88855", + "longitude": "-104.51961", + "city": "Presidio", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "4384", + "density": "3.6", + "countyfips": "48377", + "countyname": "Presidio", + "countyweights": "{\"48377\": \"100\"}", + "countynamesall": "Presidio", + "countyfipsall": "48377", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79846": { + "latitude": "29.45217", + "longitude": "-103.99027", + "city": "Redford", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "121", + "density": "0.1", + "countyfips": "48377", + "countyname": "Presidio", + "countyweights": "{\"48377\": \"100\"}", + "countynamesall": "Presidio", + "countyfipsall": "48377", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79847": { + "latitude": "31.80678", + "longitude": "-104.97247", + "city": "Salt Flat", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "153", + "density": "0.1", + "countyfips": "48229", + "countyname": "Hudspeth", + "countyweights": "{\"48229\": \"62.28\", \"48109\": \"37.72\"}", + "countynamesall": "Hudspeth|Culberson", + "countyfipsall": "48229|48109", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79848": { + "latitude": "30.24901", + "longitude": "-102.30544", + "city": "Sanderson", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "823", + "density": "0.4", + "countyfips": "48443", + "countyname": "Terrell", + "countyweights": "{\"48443\": \"99.78\", \"48371\": \"0.22\"}", + "countynamesall": "Terrell|Pecos", + "countyfipsall": "48443|48371", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79849": { + "latitude": "31.56126", + "longitude": "-106.25047", + "city": "San Elizario", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "12157", + "density": "334.9", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79851": { + "latitude": "31.28841", + "longitude": "-105.31975", + "city": "Sierra Blanca", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "1576", + "density": "0.9", + "countyfips": "48229", + "countyname": "Hudspeth", + "countyweights": "{\"48229\": \"100\"}", + "countynamesall": "Hudspeth", + "countyfipsall": "48229", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79852": { + "latitude": "29.40324", + "longitude": "-103.62417", + "city": "Terlingua", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "709", + "density": "0.5", + "countyfips": "48043", + "countyname": "Brewster", + "countyweights": "{\"48043\": \"100\"}", + "countynamesall": "Brewster", + "countyfipsall": "48043", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79853": { + "latitude": "31.42987", + "longitude": "-106.06371", + "city": "Tornillo", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2621", + "density": "32.5", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79854": { + "latitude": "30.57932", + "longitude": "-104.65911", + "city": "Valentine", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "90", + "density": "0.0", + "countyfips": "48243", + "countyname": "Jeff Davis", + "countyweights": "{\"48243\": \"91.08\", \"48377\": \"8.92\"}", + "countynamesall": "Jeff Davis|Presidio", + "countyfipsall": "48243|48377", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79855": { + "latitude": "31.09237", + "longitude": "-104.63688", + "city": "Van Horn", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2108", + "density": "0.4", + "countyfips": "48109", + "countyname": "Culberson", + "countyweights": "{\"48109\": \"99.49\", \"48229\": \"0.26\", \"48243\": \"0.26\"}", + "countynamesall": "Culberson|Hudspeth|Jeff Davis", + "countyfipsall": "48109|48229|48243", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + }, + "79901": { + "latitude": "31.76003", + "longitude": "-106.4798", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "9590", + "density": "1683.6", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79902": { + "latitude": "31.78414", + "longitude": "-106.49791", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "20496", + "density": "1206.8", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79903": { + "latitude": "31.78623", + "longitude": "-106.44188", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "15995", + "density": "2024.2", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79904": { + "latitude": "31.85287", + "longitude": "-106.44647", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "33428", + "density": "1472.6", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79905": { + "latitude": "31.7666", + "longitude": "-106.42488", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "21599", + "density": "1281.8", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79906": { + "latitude": "31.80924", + "longitude": "-106.41651", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5295", + "density": "492.5", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79907": { + "latitude": "31.7075", + "longitude": "-106.32683", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "53174", + "density": "1508.1", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79908": { + "latitude": "31.85719", + "longitude": "-106.38038", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "6422", + "density": "127.1", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79911": { + "latitude": "31.89246", + "longitude": "-106.54251", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "5794", + "density": "358.6", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79912": { + "latitude": "31.84821", + "longitude": "-106.53264", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "78267", + "density": "1275.9", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79915": { + "latitude": "31.74586", + "longitude": "-106.37237", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "36412", + "density": "1572.3", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79916": { + "latitude": "31.81397", + "longitude": "-106.41816", + "city": "Fort Bliss", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "2979", + "density": "687.0", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79920": { + "latitude": "31.82482", + "longitude": "-106.4517", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "8", + "density": "626.7", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79922": { + "latitude": "31.81507", + "longitude": "-106.56101", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "7932", + "density": "468.4", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79924": { + "latitude": "31.90245", + "longitude": "-106.41325", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "59648", + "density": "1881.3", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79925": { + "latitude": "31.79772", + "longitude": "-106.36331", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "39616", + "density": "897.8", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79927": { + "latitude": "31.64458", + "longitude": "-106.27373", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "40747", + "density": "555.5", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79928": { + "latitude": "31.62862", + "longitude": "-106.15597", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "57219", + "density": "212.2", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79930": { + "latitude": "31.82028", + "longitude": "-106.46994", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28277", + "density": "995.2", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79932": { + "latitude": "31.87816", + "longitude": "-106.60643", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "28243", + "density": "764.0", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79934": { + "latitude": "31.95191", + "longitude": "-106.434", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "26445", + "density": "172.4", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79935": { + "latitude": "31.76795", + "longitude": "-106.33019", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "17850", + "density": "1965.9", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79936": { + "latitude": "31.77618", + "longitude": "-106.29786", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "111620", + "density": "1618.4", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"100\"}", + "countynamesall": "El Paso", + "countyfipsall": "48141", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79938": { + "latitude": "31.83091", + "longitude": "-105.97012", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "84237", + "density": "89.3", + "countyfips": "48141", + "countyname": "El Paso", + "countyweights": "{\"48141\": \"99.51\", \"48229\": \"0.49\"}", + "countynamesall": "El Paso|Hudspeth", + "countyfipsall": "48141|48229", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Denver" + }, + "79942": { + "latitude": "30.57792", + "longitude": "-101.34274", + "city": "El Paso", + "stateid": "TX", + "statename": "Texas", + "zcta": "TRUE", + "parent_zcta": "", + "population": "30", + "density": "0.3", + "countyfips": "48105", + "countyname": "Crockett", + "countyweights": "{\"48105\": \"100\"}", + "countynamesall": "Crockett", + "countyfipsall": "48105", + "imprecise": "FALSE", + "military": "FALSE", + "timezone": "America/Chicago" + } + } +} diff --git a/bot/data/zips.json b/bot/data/zips.json deleted file mode 100644 index f729a1a..0000000 --- a/bot/data/zips.json +++ /dev/null @@ -1,11582 +0,0 @@ -[ - { - "zip": "77449", - "city": "Katy", - "county": "Harris", - "pop": 128294 - }, - { - "zip": "77494", - "city": "Katy", - "county": "Fort Bend", - "pop": 118291 - }, - { - "zip": "79936", - "city": "El Paso", - "county": "El Paso", - "pop": 111620 - }, - { - "zip": "75034", - "city": "Frisco", - "county": "Collin", - "pop": 108525 - }, - { - "zip": "77084", - "city": "Houston", - "county": "Harris", - "pop": 107673 - }, - { - "zip": "75070", - "city": "McKinney", - "county": "Collin", - "pop": 104415 - }, - { - "zip": "75052", - "city": "Grand Prairie", - "county": "Dallas", - "pop": 95495 - }, - { - "zip": "77479", - "city": "Sugar Land", - "county": "Fort Bend", - "pop": 93848 - }, - { - "zip": "78660", - "city": "Pflugerville", - "county": "Travis", - "pop": 91300 - }, - { - "zip": "78521", - "city": "Brownsville", - "county": "Cameron", - "pop": 90687 - }, - { - "zip": "77433", - "city": "Cypress", - "county": "Harris", - "pop": 90657 - }, - { - "zip": "77584", - "city": "Pearland", - "county": "Brazoria", - "pop": 90372 - }, - { - "zip": "75217", - "city": "Dallas", - "county": "Dallas", - "pop": 89163 - }, - { - "zip": "77429", - "city": "Cypress", - "county": "Harris", - "pop": 88628 - }, - { - "zip": "77573", - "city": "League City", - "county": "Galveston", - "pop": 88131 - }, - { - "zip": "79938", - "city": "El Paso", - "county": "El Paso", - "pop": 84237 - }, - { - "zip": "78666", - "city": "San Marcos", - "county": "Hays", - "pop": 82923 - }, - { - "zip": "78613", - "city": "Cedar Park", - "county": "Williamson", - "pop": 81943 - }, - { - "zip": "77379", - "city": "Spring", - "county": "Harris", - "pop": 81368 - }, - { - "zip": "78572", - "city": "Mission", - "county": "Hidalgo", - "pop": 80601 - }, - { - "zip": "77083", - "city": "Houston", - "county": "Harris", - "pop": 78298 - }, - { - "zip": "79912", - "city": "El Paso", - "county": "El Paso", - "pop": 78267 - }, - { - "zip": "78577", - "city": "Pharr", - "county": "Hidalgo", - "pop": 78103 - }, - { - "zip": "75211", - "city": "Dallas", - "county": "Dallas", - "pop": 77570 - }, - { - "zip": "76244", - "city": "Keller", - "county": "Tarrant", - "pop": 77496 - }, - { - "zip": "78130", - "city": "New Braunfels", - "county": "Comal", - "pop": 77400 - }, - { - "zip": "78542", - "city": "Edinburg", - "county": "Hidalgo", - "pop": 77336 - }, - { - "zip": "78245", - "city": "San Antonio", - "county": "Bexar", - "pop": 76518 - }, - { - "zip": "75035", - "city": "Frisco", - "county": "Collin", - "pop": 75485 - }, - { - "zip": "77036", - "city": "Houston", - "county": "Harris", - "pop": 74472 - }, - { - "zip": "75228", - "city": "Dallas", - "county": "Dallas", - "pop": 73976 - }, - { - "zip": "77450", - "city": "Katy", - "county": "Harris", - "pop": 73692 - }, - { - "zip": "76063", - "city": "Mansfield", - "county": "Tarrant", - "pop": 73216 - }, - { - "zip": "77459", - "city": "Missouri City", - "county": "Fort Bend", - "pop": 72788 - }, - { - "zip": "78641", - "city": "Leander", - "county": "Williamson", - "pop": 72078 - }, - { - "zip": "75002", - "city": "Allen", - "county": "Collin", - "pop": 71253 - }, - { - "zip": "78046", - "city": "Laredo", - "county": "Webb", - "pop": 70989 - }, - { - "zip": "77095", - "city": "Houston", - "county": "Harris", - "pop": 70692 - }, - { - "zip": "76028", - "city": "Burleson", - "county": "Johnson", - "pop": 70507 - }, - { - "zip": "75243", - "city": "Dallas", - "county": "Dallas", - "pop": 68308 - }, - { - "zip": "75067", - "city": "Lewisville", - "county": "Denton", - "pop": 68196 - }, - { - "zip": "78596", - "city": "Weslaco", - "county": "Hidalgo", - "pop": 67269 - }, - { - "zip": "77346", - "city": "Humble", - "county": "Harris", - "pop": 66805 - }, - { - "zip": "78045", - "city": "Laredo", - "county": "Webb", - "pop": 66685 - }, - { - "zip": "77845", - "city": "College Station", - "county": "Brazos", - "pop": 66649 - }, - { - "zip": "75068", - "city": "Little Elm", - "county": "Denton", - "pop": 65991 - }, - { - "zip": "76179", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 65496 - }, - { - "zip": "78664", - "city": "Round Rock", - "county": "Williamson", - "pop": 64686 - }, - { - "zip": "78501", - "city": "Mcallen", - "county": "Hidalgo", - "pop": 63066 - }, - { - "zip": "78574", - "city": "Mission", - "county": "Hidalgo", - "pop": 62616 - }, - { - "zip": "75043", - "city": "Garland", - "county": "Dallas", - "pop": 62601 - }, - { - "zip": "78520", - "city": "Brownsville", - "county": "Cameron", - "pop": 62490 - }, - { - "zip": "75040", - "city": "Garland", - "county": "Dallas", - "pop": 62417 - }, - { - "zip": "78228", - "city": "San Antonio", - "county": "Bexar", - "pop": 62359 - }, - { - "zip": "78251", - "city": "San Antonio", - "county": "Bexar", - "pop": 62186 - }, - { - "zip": "78745", - "city": "Austin", - "county": "Travis", - "pop": 61907 - }, - { - "zip": "78250", - "city": "San Antonio", - "county": "Bexar", - "pop": 61669 - }, - { - "zip": "78249", - "city": "San Antonio", - "county": "Bexar", - "pop": 61639 - }, - { - "zip": "77373", - "city": "Spring", - "county": "Harris", - "pop": 61501 - }, - { - "zip": "77072", - "city": "Houston", - "county": "Harris", - "pop": 61122 - }, - { - "zip": "78240", - "city": "San Antonio", - "county": "Bexar", - "pop": 60927 - }, - { - "zip": "75150", - "city": "Mesquite", - "county": "Dallas", - "pop": 60671 - }, - { - "zip": "75056", - "city": "The Colony", - "county": "Denton", - "pop": 60554 - }, - { - "zip": "78753", - "city": "Austin", - "county": "Travis", - "pop": 60426 - }, - { - "zip": "76137", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 60385 - }, - { - "zip": "77521", - "city": "Baytown", - "county": "Harris", - "pop": 60164 - }, - { - "zip": "76010", - "city": "Arlington", - "county": "Tarrant", - "pop": 60097 - }, - { - "zip": "77407", - "city": "Richmond", - "county": "Fort Bend", - "pop": 60000 - }, - { - "zip": "75227", - "city": "Dallas", - "county": "Dallas", - "pop": 59924 - }, - { - "zip": "79924", - "city": "El Paso", - "county": "El Paso", - "pop": 59648 - }, - { - "zip": "77077", - "city": "Houston", - "county": "Harris", - "pop": 59588 - }, - { - "zip": "77840", - "city": "College Station", - "county": "Brazos", - "pop": 59371 - }, - { - "zip": "78254", - "city": "San Antonio", - "county": "Bexar", - "pop": 59107 - }, - { - "zip": "78640", - "city": "Kyle", - "county": "Hays", - "pop": 58790 - }, - { - "zip": "77396", - "city": "Humble", - "county": "Harris", - "pop": 58396 - }, - { - "zip": "78681", - "city": "Round Rock", - "county": "Williamson", - "pop": 58155 - }, - { - "zip": "77386", - "city": "Spring", - "county": "Montgomery", - "pop": 57421 - }, - { - "zip": "78504", - "city": "Mcallen", - "county": "Hidalgo", - "pop": 57410 - }, - { - "zip": "79928", - "city": "El Paso", - "county": "El Paso", - "pop": 57219 - }, - { - "zip": "78852", - "city": "Eagle Pass", - "county": "Maverick", - "pop": 57159 - }, - { - "zip": "78586", - "city": "San Benito", - "county": "Cameron", - "pop": 56692 - }, - { - "zip": "77015", - "city": "Houston", - "county": "Harris", - "pop": 56477 - }, - { - "zip": "75149", - "city": "Mesquite", - "county": "Dallas", - "pop": 56473 - }, - { - "zip": "75098", - "city": "Wylie", - "county": "Dallas", - "pop": 56376 - }, - { - "zip": "78223", - "city": "San Antonio", - "county": "Bexar", - "pop": 56055 - }, - { - "zip": "77375", - "city": "Tomball", - "county": "Harris", - "pop": 55759 - }, - { - "zip": "77088", - "city": "Houston", - "county": "Harris", - "pop": 55734 - }, - { - "zip": "75287", - "city": "Dallas", - "county": "Dallas", - "pop": 55673 - }, - { - "zip": "75071", - "city": "Mc Kinney", - "county": "Collin", - "pop": 55570 - }, - { - "zip": "75007", - "city": "Carrollton", - "county": "Denton", - "pop": 55500 - }, - { - "zip": "78207", - "city": "San Antonio", - "county": "Bexar", - "pop": 55484 - }, - { - "zip": "77082", - "city": "Houston", - "county": "Harris", - "pop": 55056 - }, - { - "zip": "77089", - "city": "Houston", - "county": "Harris", - "pop": 54751 - }, - { - "zip": "75061", - "city": "Irving", - "county": "Dallas", - "pop": 54520 - }, - { - "zip": "77469", - "city": "Richmond", - "county": "Fort Bend", - "pop": 53992 - }, - { - "zip": "78247", - "city": "San Antonio", - "county": "Bexar", - "pop": 53892 - }, - { - "zip": "75025", - "city": "Plano", - "county": "Collin", - "pop": 53764 - }, - { - "zip": "77546", - "city": "Friendswood", - "county": "Galveston", - "pop": 53623 - }, - { - "zip": "75216", - "city": "Dallas", - "county": "Dallas", - "pop": 53327 - }, - { - "zip": "76051", - "city": "Grapevine", - "county": "Tarrant", - "pop": 53291 - }, - { - "zip": "79907", - "city": "El Paso", - "county": "El Paso", - "pop": 53174 - }, - { - "zip": "77070", - "city": "Houston", - "county": "Harris", - "pop": 53057 - }, - { - "zip": "77081", - "city": "Houston", - "county": "Harris", - "pop": 53031 - }, - { - "zip": "75115", - "city": "Desoto", - "county": "Dallas", - "pop": 52916 - }, - { - "zip": "78550", - "city": "Harlingen", - "county": "Cameron", - "pop": 52644 - }, - { - "zip": "75080", - "city": "Richardson", - "county": "Dallas", - "pop": 52531 - }, - { - "zip": "77099", - "city": "Houston", - "county": "Harris", - "pop": 52294 - }, - { - "zip": "75074", - "city": "Plano", - "county": "Collin", - "pop": 52259 - }, - { - "zip": "78741", - "city": "Austin", - "county": "Travis", - "pop": 52114 - }, - { - "zip": "76119", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 52070 - }, - { - "zip": "76549", - "city": "Killeen", - "county": "Bell", - "pop": 52012 - }, - { - "zip": "78748", - "city": "Austin", - "county": "Travis", - "pop": 51653 - }, - { - "zip": "75006", - "city": "Carrollton", - "county": "Dallas", - "pop": 51642 - }, - { - "zip": "76133", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 51505 - }, - { - "zip": "76542", - "city": "Killeen", - "county": "Bell", - "pop": 51405 - }, - { - "zip": "78227", - "city": "San Antonio", - "county": "Bexar", - "pop": 51394 - }, - { - "zip": "77388", - "city": "Spring", - "county": "Harris", - "pop": 50701 - }, - { - "zip": "76116", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 50506 - }, - { - "zip": "75023", - "city": "Plano", - "county": "Collin", - "pop": 50431 - }, - { - "zip": "78744", - "city": "Austin", - "county": "Travis", - "pop": 50123 - }, - { - "zip": "78233", - "city": "San Antonio", - "county": "Bexar", - "pop": 50103 - }, - { - "zip": "75062", - "city": "Irving", - "county": "Dallas", - "pop": 49306 - }, - { - "zip": "77406", - "city": "Richmond", - "county": "Fort Bend", - "pop": 49261 - }, - { - "zip": "75104", - "city": "Cedar Hill", - "county": "Dallas", - "pop": 49171 - }, - { - "zip": "78665", - "city": "Sandy", - "county": "Blanco", - "pop": 49074 - }, - { - "zip": "78526", - "city": "Brownsville", - "county": "Cameron", - "pop": 48995 - }, - { - "zip": "78758", - "city": "Austin", - "county": "Travis", - "pop": 48993 - }, - { - "zip": "75126", - "city": "Forney", - "county": "Kaufman", - "pop": 48987 - }, - { - "zip": "78155", - "city": "Seguin", - "county": "Guadalupe", - "pop": 48909 - }, - { - "zip": "77044", - "city": "Houston", - "county": "Harris", - "pop": 48783 - }, - { - "zip": "78704", - "city": "Austin", - "county": "Travis", - "pop": 48746 - }, - { - "zip": "77064", - "city": "Houston", - "county": "Harris", - "pop": 48637 - }, - { - "zip": "77581", - "city": "Pearland", - "county": "Brazoria", - "pop": 48438 - }, - { - "zip": "78201", - "city": "San Antonio", - "county": "Bexar", - "pop": 48334 - }, - { - "zip": "78537", - "city": "Donna", - "county": "Hidalgo", - "pop": 48072 - }, - { - "zip": "78840", - "city": "Del Rio", - "county": "Val Verde", - "pop": 47937 - }, - { - "zip": "77040", - "city": "Houston", - "county": "Harris", - "pop": 47823 - }, - { - "zip": "75028", - "city": "Flower Mound", - "county": "Denton", - "pop": 47804 - }, - { - "zip": "75060", - "city": "Irving", - "county": "Dallas", - "pop": 47764 - }, - { - "zip": "78041", - "city": "Laredo", - "county": "Webb", - "pop": 47753 - }, - { - "zip": "77511", - "city": "Alvin", - "county": "Brazoria", - "pop": 47556 - }, - { - "zip": "76017", - "city": "Arlington", - "county": "Tarrant", - "pop": 47499 - }, - { - "zip": "77093", - "city": "Houston", - "county": "Harris", - "pop": 47135 - }, - { - "zip": "79424", - "city": "Lubbock", - "county": "Lubbock", - "pop": 46933 - }, - { - "zip": "75093", - "city": "Plano", - "county": "Collin", - "pop": 46788 - }, - { - "zip": "77539", - "city": "Dickinson", - "county": "Galveston", - "pop": 46032 - }, - { - "zip": "77060", - "city": "Houston", - "county": "Harris", - "pop": 45642 - }, - { - "zip": "77080", - "city": "Houston", - "county": "Harris", - "pop": 45586 - }, - { - "zip": "78043", - "city": "Laredo", - "county": "Webb", - "pop": 45532 - }, - { - "zip": "76210", - "city": "Denton", - "county": "Denton", - "pop": 45474 - }, - { - "zip": "75165", - "city": "Waxahachie", - "county": "Ellis", - "pop": 45059 - }, - { - "zip": "78230", - "city": "San Antonio", - "county": "Bexar", - "pop": 45021 - }, - { - "zip": "78213", - "city": "San Antonio", - "county": "Bexar", - "pop": 44813 - }, - { - "zip": "78258", - "city": "San Antonio", - "county": "Bexar", - "pop": 44747 - }, - { - "zip": "77055", - "city": "Houston", - "county": "Harris", - "pop": 44671 - }, - { - "zip": "79109", - "city": "Amarillo", - "county": "Randall", - "pop": 44600 - }, - { - "zip": "77075", - "city": "Houston", - "county": "Harris", - "pop": 44517 - }, - { - "zip": "79762", - "city": "Odessa", - "county": "Ector", - "pop": 43812 - }, - { - "zip": "78253", - "city": "San Antonio", - "county": "Bexar", - "pop": 43770 - }, - { - "zip": "77338", - "city": "Humble", - "county": "Harris", - "pop": 43558 - }, - { - "zip": "78216", - "city": "San Antonio", - "county": "Bexar", - "pop": 43554 - }, - { - "zip": "75024", - "city": "Plano", - "county": "Collin", - "pop": 43551 - }, - { - "zip": "76131", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 43542 - }, - { - "zip": "78759", - "city": "Austin", - "county": "Travis", - "pop": 43298 - }, - { - "zip": "75044", - "city": "Garland", - "county": "Dallas", - "pop": 43292 - }, - { - "zip": "75050", - "city": "Grand Prairie", - "county": "Dallas", - "pop": 43174 - }, - { - "zip": "76108", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 43169 - }, - { - "zip": "78582", - "city": "Rio Grande City", - "county": "Starr", - "pop": 43074 - }, - { - "zip": "77901", - "city": "Victoria", - "county": "Victoria", - "pop": 43052 - }, - { - "zip": "75019", - "city": "Coppell", - "county": "Dallas", - "pop": 42888 - }, - { - "zip": "75703", - "city": "Tyler", - "county": "Smith", - "pop": 42777 - }, - { - "zip": "78209", - "city": "San Antonio", - "county": "Bexar", - "pop": 42653 - }, - { - "zip": "75013", - "city": "Allen", - "county": "Collin", - "pop": 42629 - }, - { - "zip": "76112", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 42572 - }, - { - "zip": "76502", - "city": "Temple", - "county": "Bell", - "pop": 42103 - }, - { - "zip": "75220", - "city": "Dallas", - "county": "Dallas", - "pop": 42009 - }, - { - "zip": "78412", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 41977 - }, - { - "zip": "79705", - "city": "Midland", - "county": "Midland", - "pop": 41933 - }, - { - "zip": "77042", - "city": "Houston", - "county": "Harris", - "pop": 41734 - }, - { - "zip": "77057", - "city": "Houston", - "county": "Harris", - "pop": 41690 - }, - { - "zip": "77382", - "city": "Spring", - "county": "Montgomery", - "pop": 41581 - }, - { - "zip": "78589", - "city": "San Juan", - "county": "Hidalgo", - "pop": 41291 - }, - { - "zip": "78154", - "city": "Schertz", - "county": "Guadalupe", - "pop": 41272 - }, - { - "zip": "77471", - "city": "Rosenberg", - "county": "Fort Bend", - "pop": 41212 - }, - { - "zip": "78221", - "city": "San Antonio", - "county": "Bexar", - "pop": 41185 - }, - { - "zip": "77074", - "city": "Houston", - "county": "Harris", - "pop": 40978 - }, - { - "zip": "75154", - "city": "Red Oak", - "county": "Ellis", - "pop": 40947 - }, - { - "zip": "78040", - "city": "Laredo", - "county": "Webb", - "pop": 40939 - }, - { - "zip": "75051", - "city": "Grand Prairie", - "county": "Dallas", - "pop": 40923 - }, - { - "zip": "77090", - "city": "Houston", - "county": "Harris", - "pop": 40761 - }, - { - "zip": "79927", - "city": "El Paso", - "county": "El Paso", - "pop": 40747 - }, - { - "zip": "78414", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 40657 - }, - { - "zip": "78413", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 40644 - }, - { - "zip": "77034", - "city": "Houston", - "county": "Harris", - "pop": 40635 - }, - { - "zip": "77583", - "city": "Rosharon", - "county": "Brazoria", - "pop": 40514 - }, - { - "zip": "78415", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 40377 - }, - { - "zip": "75231", - "city": "Dallas", - "county": "Dallas", - "pop": 40371 - }, - { - "zip": "79423", - "city": "Lubbock", - "county": "Lubbock", - "pop": 40303 - }, - { - "zip": "75081", - "city": "Richardson", - "county": "Dallas", - "pop": 40265 - }, - { - "zip": "77339", - "city": "Humble", - "county": "Harris", - "pop": 40133 - }, - { - "zip": "77007", - "city": "Houston", - "county": "Harris", - "pop": 40080 - }, - { - "zip": "75063", - "city": "Irving", - "county": "Dallas", - "pop": 40048 - }, - { - "zip": "78108", - "city": "Cibolo", - "county": "Guadalupe", - "pop": 39999 - }, - { - "zip": "78028", - "city": "Kerrville", - "county": "Kerr", - "pop": 39944 - }, - { - "zip": "77073", - "city": "Houston", - "county": "Harris", - "pop": 39939 - }, - { - "zip": "79707", - "city": "Midland", - "county": "Midland", - "pop": 39921 - }, - { - "zip": "76106", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 39900 - }, - { - "zip": "78109", - "city": "Converse", - "county": "Bexar", - "pop": 39769 - }, - { - "zip": "76248", - "city": "Keller", - "county": "Tarrant", - "pop": 39665 - }, - { - "zip": "79925", - "city": "El Paso", - "county": "El Paso", - "pop": 39616 - }, - { - "zip": "76262", - "city": "Roanoke", - "county": "Denton", - "pop": 39425 - }, - { - "zip": "76513", - "city": "Belton", - "county": "Bell", - "pop": 39411 - }, - { - "zip": "77063", - "city": "Houston", - "county": "Harris", - "pop": 39249 - }, - { - "zip": "77705", - "city": "Beaumont", - "county": "Jefferson", - "pop": 39236 - }, - { - "zip": "76706", - "city": "Waco", - "county": "Mclennan", - "pop": 39221 - }, - { - "zip": "77642", - "city": "Port Arthur", - "county": "Jefferson", - "pop": 39202 - }, - { - "zip": "75042", - "city": "Garland", - "county": "Dallas", - "pop": 39183 - }, - { - "zip": "78237", - "city": "San Antonio", - "county": "Bexar", - "pop": 39105 - }, - { - "zip": "78232", - "city": "San Antonio", - "county": "Bexar", - "pop": 39072 - }, - { - "zip": "75206", - "city": "Dallas", - "county": "Dallas", - "pop": 39010 - }, - { - "zip": "79763", - "city": "Odessa", - "county": "Ector", - "pop": 38833 - }, - { - "zip": "78573", - "city": "Mission", - "county": "Hidalgo", - "pop": 38826 - }, - { - "zip": "77506", - "city": "Pasadena", - "county": "Harris", - "pop": 38765 - }, - { - "zip": "78610", - "city": "Buda", - "county": "Hays", - "pop": 38525 - }, - { - "zip": "77377", - "city": "Tomball", - "county": "Harris", - "pop": 38469 - }, - { - "zip": "77092", - "city": "Houston", - "county": "Harris", - "pop": 38458 - }, - { - "zip": "75075", - "city": "Plano", - "county": "Collin", - "pop": 38283 - }, - { - "zip": "77489", - "city": "Missouri City", - "county": "Fort Bend", - "pop": 38242 - }, - { - "zip": "77389", - "city": "Spring", - "county": "Harris", - "pop": 38222 - }, - { - "zip": "77502", - "city": "Pasadena", - "county": "Harris", - "pop": 38199 - }, - { - "zip": "77024", - "city": "Houston", - "county": "Harris", - "pop": 38190 - }, - { - "zip": "78749", - "city": "Austin", - "county": "Travis", - "pop": 38041 - }, - { - "zip": "78552", - "city": "Harlingen", - "county": "Cameron", - "pop": 37948 - }, - { - "zip": "75069", - "city": "Mc Kinney", - "county": "Collin", - "pop": 37892 - }, - { - "zip": "77087", - "city": "Houston", - "county": "Harris", - "pop": 37886 - }, - { - "zip": "77065", - "city": "Houston", - "county": "Harris", - "pop": 37793 - }, - { - "zip": "78210", - "city": "San Antonio", - "county": "Bexar", - "pop": 37683 - }, - { - "zip": "75224", - "city": "Dallas", - "county": "Dallas", - "pop": 37592 - }, - { - "zip": "76180", - "city": "North Richland Hills", - "county": "Tarrant", - "pop": 37524 - }, - { - "zip": "77014", - "city": "Houston", - "county": "Harris", - "pop": 37488 - }, - { - "zip": "77571", - "city": "La Porte", - "county": "Harris", - "pop": 37427 - }, - { - "zip": "78539", - "city": "Edinburg", - "county": "Hidalgo", - "pop": 37380 - }, - { - "zip": "75248", - "city": "Dallas", - "county": "Dallas", - "pop": 37373 - }, - { - "zip": "77004", - "city": "Houston", - "county": "Harris", - "pop": 37294 - }, - { - "zip": "78218", - "city": "San Antonio", - "county": "Bexar", - "pop": 37281 - }, - { - "zip": "75234", - "city": "Dallas", - "county": "Dallas", - "pop": 37160 - }, - { - "zip": "75077", - "city": "Lewisville", - "county": "Denton", - "pop": 37102 - }, - { - "zip": "76065", - "city": "Midlothian", - "county": "Ellis", - "pop": 37090 - }, - { - "zip": "77354", - "city": "Magnolia", - "county": "Montgomery", - "pop": 37058 - }, - { - "zip": "77035", - "city": "Houston", - "county": "Harris", - "pop": 36931 - }, - { - "zip": "77365", - "city": "Porter", - "county": "Montgomery", - "pop": 36755 - }, - { - "zip": "76522", - "city": "Copperas Cove", - "county": "Coryell", - "pop": 36560 - }, - { - "zip": "78626", - "city": "Georgetown", - "county": "Williamson", - "pop": 36556 - }, - { - "zip": "77045", - "city": "Houston", - "county": "Harris", - "pop": 36532 - }, - { - "zip": "76002", - "city": "Arlington", - "county": "Tarrant", - "pop": 36460 - }, - { - "zip": "77049", - "city": "Houston", - "county": "Harris", - "pop": 36434 - }, - { - "zip": "79915", - "city": "El Paso", - "county": "El Paso", - "pop": 36412 - }, - { - "zip": "77493", - "city": "Katy", - "county": "Harris", - "pop": 36334 - }, - { - "zip": "75089", - "city": "Rowlett", - "county": "Dallas", - "pop": 36324 - }, - { - "zip": "76123", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 36245 - }, - { - "zip": "76904", - "city": "San Angelo", - "county": "Tom Green", - "pop": 36178 - }, - { - "zip": "77381", - "city": "Spring", - "county": "Montgomery", - "pop": 36160 - }, - { - "zip": "77009", - "city": "Houston", - "county": "Harris", - "pop": 36147 - }, - { - "zip": "77320", - "city": "Huntsville", - "county": "Walker", - "pop": 36122 - }, - { - "zip": "75501", - "city": "Texarkana", - "county": "Bowie", - "pop": 36094 - }, - { - "zip": "76039", - "city": "Euless", - "county": "Tarrant", - "pop": 36087 - }, - { - "zip": "78006", - "city": "Boerne", - "county": "Kendall", - "pop": 36056 - }, - { - "zip": "77076", - "city": "Houston", - "county": "Harris", - "pop": 36009 - }, - { - "zip": "75701", - "city": "Tyler", - "county": "Smith", - "pop": 35858 - }, - { - "zip": "77477", - "city": "Stafford", - "county": "Fort Bend", - "pop": 35830 - }, - { - "zip": "76021", - "city": "Bedford", - "county": "Tarrant", - "pop": 35794 - }, - { - "zip": "78723", - "city": "Austin", - "county": "Travis", - "pop": 35725 - }, - { - "zip": "77066", - "city": "Houston", - "county": "Harris", - "pop": 35676 - }, - { - "zip": "78628", - "city": "Georgetown", - "county": "Williamson", - "pop": 35601 - }, - { - "zip": "77520", - "city": "Baytown", - "county": "Harris", - "pop": 35350 - }, - { - "zip": "77067", - "city": "Houston", - "county": "Harris", - "pop": 35227 - }, - { - "zip": "75087", - "city": "Rockwall", - "county": "Rockwall", - "pop": 35157 - }, - { - "zip": "76014", - "city": "Arlington", - "county": "Tarrant", - "pop": 35096 - }, - { - "zip": "79720", - "city": "Big Spring", - "county": "Howard", - "pop": 35025 - }, - { - "zip": "78516", - "city": "Alamo", - "county": "Hidalgo", - "pop": 34990 - }, - { - "zip": "79107", - "city": "Amarillo", - "county": "Potter", - "pop": 34935 - }, - { - "zip": "77008", - "city": "Houston", - "county": "Harris", - "pop": 34895 - }, - { - "zip": "78242", - "city": "San Antonio", - "county": "Bexar", - "pop": 34893 - }, - { - "zip": "75214", - "city": "Dallas", - "county": "Dallas", - "pop": 34824 - }, - { - "zip": "78705", - "city": "Austin", - "county": "Travis", - "pop": 34549 - }, - { - "zip": "77535", - "city": "Dayton", - "county": "Liberty", - "pop": 34537 - }, - { - "zip": "78634", - "city": "Hutto", - "county": "Williamson", - "pop": 34447 - }, - { - "zip": "75904", - "city": "Lufkin", - "county": "Angelina", - "pop": 34406 - }, - { - "zip": "77351", - "city": "Livingston", - "county": "Polk", - "pop": 34366 - }, - { - "zip": "76013", - "city": "Arlington", - "county": "Tarrant", - "pop": 34203 - }, - { - "zip": "77301", - "city": "Conroe", - "county": "Montgomery", - "pop": 34169 - }, - { - "zip": "78217", - "city": "San Antonio", - "county": "Bexar", - "pop": 34159 - }, - { - "zip": "78229", - "city": "San Antonio", - "county": "Bexar", - "pop": 34125 - }, - { - "zip": "79416", - "city": "Lubbock", - "county": "Lubbock", - "pop": 34124 - }, - { - "zip": "77079", - "city": "Houston", - "county": "Harris", - "pop": 34122 - }, - { - "zip": "76227", - "city": "Aubrey", - "county": "Denton", - "pop": 34036 - }, - { - "zip": "78570", - "city": "Mercedes", - "county": "Hidalgo", - "pop": 33949 - }, - { - "zip": "77041", - "city": "Houston", - "county": "Harris", - "pop": 33941 - }, - { - "zip": "76001", - "city": "Arlington", - "county": "Tarrant", - "pop": 33748 - }, - { - "zip": "79761", - "city": "Odessa", - "county": "Ector", - "pop": 33602 - }, - { - "zip": "77530", - "city": "Channelview", - "county": "Harris", - "pop": 33437 - }, - { - "zip": "79904", - "city": "El Paso", - "county": "El Paso", - "pop": 33428 - }, - { - "zip": "77304", - "city": "Conroe", - "county": "Montgomery", - "pop": 33364 - }, - { - "zip": "75032", - "city": "Rockwall", - "county": "Rockwall", - "pop": 33080 - }, - { - "zip": "75238", - "city": "Dallas", - "county": "Dallas", - "pop": 33049 - }, - { - "zip": "77017", - "city": "Houston", - "county": "Harris", - "pop": 32985 - }, - { - "zip": "77803", - "city": "Bryan", - "county": "Brazos", - "pop": 32946 - }, - { - "zip": "78211", - "city": "San Antonio", - "county": "Bexar", - "pop": 32769 - }, - { - "zip": "77096", - "city": "Houston", - "county": "Harris", - "pop": 32682 - }, - { - "zip": "77047", - "city": "Houston", - "county": "Harris", - "pop": 32616 - }, - { - "zip": "77515", - "city": "Angleton", - "county": "Brazoria", - "pop": 32469 - }, - { - "zip": "75229", - "city": "Dallas", - "county": "Dallas", - "pop": 32322 - }, - { - "zip": "79701", - "city": "Midland", - "county": "Midland", - "pop": 32219 - }, - { - "zip": "77536", - "city": "Deer Park", - "county": "Harris", - "pop": 32146 - }, - { - "zip": "76016", - "city": "Arlington", - "county": "Tarrant", - "pop": 32026 - }, - { - "zip": "76110", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 31926 - }, - { - "zip": "77038", - "city": "Houston", - "county": "Harris", - "pop": 31912 - }, - { - "zip": "76705", - "city": "Waco", - "county": "Mclennan", - "pop": 31734 - }, - { - "zip": "78750", - "city": "Austin", - "county": "Travis", - "pop": 31734 - }, - { - "zip": "76901", - "city": "San Angelo", - "county": "Tom Green", - "pop": 31667 - }, - { - "zip": "77053", - "city": "Houston", - "county": "Harris", - "pop": 31650 - }, - { - "zip": "77590", - "city": "Texas City", - "county": "Galveston", - "pop": 31604 - }, - { - "zip": "75241", - "city": "Dallas", - "county": "Dallas", - "pop": 31562 - }, - { - "zip": "76040", - "city": "Euless", - "county": "Tarrant", - "pop": 31519 - }, - { - "zip": "75232", - "city": "Dallas", - "county": "Dallas", - "pop": 31453 - }, - { - "zip": "76092", - "city": "Southlake", - "county": "Tarrant", - "pop": 31424 - }, - { - "zip": "78023", - "city": "Helotes", - "county": "Bexar", - "pop": 31357 - }, - { - "zip": "77340", - "city": "Huntsville", - "county": "Walker", - "pop": 31352 - }, - { - "zip": "76903", - "city": "San Angelo", - "county": "Tom Green", - "pop": 31248 - }, - { - "zip": "76018", - "city": "Arlington", - "county": "Tarrant", - "pop": 31200 - }, - { - "zip": "76117", - "city": "Haltom City", - "county": "Tarrant", - "pop": 31068 - }, - { - "zip": "76182", - "city": "North Richland Hills", - "county": "Tarrant", - "pop": 31046 - }, - { - "zip": "75604", - "city": "Longview", - "county": "Gregg", - "pop": 31027 - }, - { - "zip": "78132", - "city": "New Braunfels", - "county": "Comal", - "pop": 30987 - }, - { - "zip": "78244", - "city": "San Antonio", - "county": "Bexar", - "pop": 30981 - }, - { - "zip": "75041", - "city": "Garland", - "county": "Dallas", - "pop": 30880 - }, - { - "zip": "76053", - "city": "Hurst", - "county": "Tarrant", - "pop": 30765 - }, - { - "zip": "77016", - "city": "Houston", - "county": "Harris", - "pop": 30741 - }, - { - "zip": "76140", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 30723 - }, - { - "zip": "78717", - "city": "Austin", - "county": "Williamson", - "pop": 30657 - }, - { - "zip": "78727", - "city": "Austin", - "county": "Travis", - "pop": 30561 - }, - { - "zip": "77033", - "city": "Houston", - "county": "Harris", - "pop": 30558 - }, - { - "zip": "75204", - "city": "Dallas", - "county": "Dallas", - "pop": 30537 - }, - { - "zip": "76548", - "city": "Harker Heights", - "county": "Bell", - "pop": 30510 - }, - { - "zip": "75605", - "city": "Longview", - "county": "Gregg", - "pop": 30501 - }, - { - "zip": "75901", - "city": "Lufkin", - "county": "Angelina", - "pop": 30429 - }, - { - "zip": "75010", - "city": "Carrollton", - "county": "Denton", - "pop": 30406 - }, - { - "zip": "78418", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 30312 - }, - { - "zip": "76543", - "city": "Killeen", - "county": "Bell", - "pop": 30268 - }, - { - "zip": "76107", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 30168 - }, - { - "zip": "76401", - "city": "Stephenville", - "county": "Erath", - "pop": 30003 - }, - { - "zip": "75038", - "city": "Irving", - "county": "Dallas", - "pop": 29990 - }, - { - "zip": "77532", - "city": "Crosby", - "county": "Harris", - "pop": 29963 - }, - { - "zip": "78602", - "city": "Bastrop", - "county": "Bastrop", - "pop": 29795 - }, - { - "zip": "79605", - "city": "Abilene", - "county": "Taylor", - "pop": 29732 - }, - { - "zip": "75208", - "city": "Dallas", - "county": "Dallas", - "pop": 29706 - }, - { - "zip": "76049", - "city": "Granbury", - "county": "Hood", - "pop": 29698 - }, - { - "zip": "78363", - "city": "Kingsville", - "county": "Kleberg", - "pop": 29544 - }, - { - "zip": "77706", - "city": "Beaumont", - "county": "Jefferson", - "pop": 29474 - }, - { - "zip": "77566", - "city": "Lake Jackson", - "county": "Brazoria", - "pop": 29436 - }, - { - "zip": "77833", - "city": "Brenham", - "county": "Washington", - "pop": 29345 - }, - { - "zip": "77355", - "city": "Magnolia", - "county": "Montgomery", - "pop": 29281 - }, - { - "zip": "77023", - "city": "Houston", - "county": "Harris", - "pop": 29138 - }, - { - "zip": "75189", - "city": "Royse City", - "county": "Rockwall", - "pop": 29135 - }, - { - "zip": "76020", - "city": "Azle", - "county": "Tarrant", - "pop": 29131 - }, - { - "zip": "78332", - "city": "Alice", - "county": "Jim Wells", - "pop": 28941 - }, - { - "zip": "78617", - "city": "Del Valle", - "county": "Travis", - "pop": 28930 - }, - { - "zip": "77630", - "city": "Orange", - "county": "Orange", - "pop": 28925 - }, - { - "zip": "77071", - "city": "Houston", - "county": "Harris", - "pop": 28888 - }, - { - "zip": "77039", - "city": "Houston", - "county": "Harris", - "pop": 28877 - }, - { - "zip": "78212", - "city": "San Antonio", - "county": "Bexar", - "pop": 28865 - }, - { - "zip": "75078", - "city": "Prosper", - "county": "Collin", - "pop": 28803 - }, - { - "zip": "78729", - "city": "Austin", - "county": "Williamson", - "pop": 28644 - }, - { - "zip": "77086", - "city": "Houston", - "county": "Harris", - "pop": 28636 - }, - { - "zip": "78746", - "city": "Austin", - "county": "Travis", - "pop": 28608 - }, - { - "zip": "76201", - "city": "Denton", - "county": "Denton", - "pop": 28601 - }, - { - "zip": "75119", - "city": "Ennis", - "county": "Ellis", - "pop": 28598 - }, - { - "zip": "77005", - "city": "Houston", - "county": "Harris", - "pop": 28572 - }, - { - "zip": "75110", - "city": "Corsicana", - "county": "Navarro", - "pop": 28558 - }, - { - "zip": "77025", - "city": "Houston", - "county": "Harris", - "pop": 28540 - }, - { - "zip": "75240", - "city": "Dallas", - "county": "Dallas", - "pop": 28534 - }, - { - "zip": "78410", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 28396 - }, - { - "zip": "75455", - "city": "Mount Pleasant", - "county": "Titus", - "pop": 28354 - }, - { - "zip": "78102", - "city": "Beeville", - "county": "Bee", - "pop": 28323 - }, - { - "zip": "79930", - "city": "El Paso", - "county": "El Paso", - "pop": 28277 - }, - { - "zip": "75181", - "city": "Mesquite", - "county": "Dallas", - "pop": 28263 - }, - { - "zip": "79932", - "city": "El Paso", - "county": "El Paso", - "pop": 28243 - }, - { - "zip": "77018", - "city": "Houston", - "county": "Harris", - "pop": 28229 - }, - { - "zip": "77904", - "city": "Victoria", - "county": "Victoria", - "pop": 28202 - }, - { - "zip": "76240", - "city": "Gainesville", - "county": "Cooke", - "pop": 28010 - }, - { - "zip": "77345", - "city": "Humble", - "county": "Harris", - "pop": 27993 - }, - { - "zip": "76708", - "city": "Waco", - "county": "Mclennan", - "pop": 27964 - }, - { - "zip": "77022", - "city": "Houston", - "county": "Harris", - "pop": 27924 - }, - { - "zip": "76087", - "city": "Weatherford", - "county": "Parker", - "pop": 27760 - }, - { - "zip": "77091", - "city": "Houston", - "county": "Harris", - "pop": 27750 - }, - { - "zip": "77357", - "city": "New Caney", - "county": "Montgomery", - "pop": 27721 - }, - { - "zip": "75702", - "city": "Tyler", - "county": "Smith", - "pop": 27698 - }, - { - "zip": "78214", - "city": "San Antonio", - "county": "Bexar", - "pop": 27558 - }, - { - "zip": "79601", - "city": "Abilene", - "county": "Taylor", - "pop": 27507 - }, - { - "zip": "75230", - "city": "Dallas", - "county": "Dallas", - "pop": 27489 - }, - { - "zip": "78239", - "city": "San Antonio", - "county": "Bexar", - "pop": 27431 - }, - { - "zip": "78731", - "city": "Austin", - "county": "Travis", - "pop": 27298 - }, - { - "zip": "79106", - "city": "Amarillo", - "county": "Potter", - "pop": 27268 - }, - { - "zip": "76132", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 27243 - }, - { - "zip": "75022", - "city": "Flower Mound", - "county": "Denton", - "pop": 27201 - }, - { - "zip": "76036", - "city": "Crowley", - "county": "Tarrant", - "pop": 27056 - }, - { - "zip": "77356", - "city": "Montgomery", - "county": "Montgomery", - "pop": 26987 - }, - { - "zip": "75254", - "city": "Dallas", - "county": "Dallas", - "pop": 26929 - }, - { - "zip": "75766", - "city": "Jacksonville", - "county": "Cherokee", - "pop": 26925 - }, - { - "zip": "75252", - "city": "Dallas", - "county": "Dallas", - "pop": 26867 - }, - { - "zip": "76226", - "city": "Argyle", - "county": "Denton", - "pop": 26761 - }, - { - "zip": "75212", - "city": "Dallas", - "county": "Dallas", - "pop": 26720 - }, - { - "zip": "79072", - "city": "Plainview", - "county": "Hale", - "pop": 26629 - }, - { - "zip": "76114", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 26563 - }, - { - "zip": "77062", - "city": "Houston", - "county": "Harris", - "pop": 26477 - }, - { - "zip": "77598", - "city": "Webster", - "county": "Harris", - "pop": 26460 - }, - { - "zip": "79934", - "city": "El Paso", - "county": "El Paso", - "pop": 26445 - }, - { - "zip": "78754", - "city": "Austin", - "county": "Travis", - "pop": 26433 - }, - { - "zip": "76034", - "city": "Colleyville", - "county": "Tarrant", - "pop": 26418 - }, - { - "zip": "77020", - "city": "Houston", - "county": "Harris", - "pop": 26357 - }, - { - "zip": "78259", - "city": "San Antonio", - "county": "Bexar", - "pop": 26338 - }, - { - "zip": "78260", - "city": "San Antonio", - "county": "Bexar", - "pop": 26301 - }, - { - "zip": "77662", - "city": "Vidor", - "county": "Orange", - "pop": 26277 - }, - { - "zip": "77061", - "city": "Houston", - "county": "Harris", - "pop": 26253 - }, - { - "zip": "77021", - "city": "Houston", - "county": "Harris", - "pop": 26214 - }, - { - "zip": "76134", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 26151 - }, - { - "zip": "77316", - "city": "Montgomery", - "county": "Montgomery", - "pop": 26119 - }, - { - "zip": "76033", - "city": "Cleburne", - "county": "Johnson", - "pop": 26081 - }, - { - "zip": "75088", - "city": "Rowlett", - "county": "Dallas", - "pop": 26039 - }, - { - "zip": "78411", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 25987 - }, - { - "zip": "77380", - "city": "Spring", - "county": "Montgomery", - "pop": 25761 - }, - { - "zip": "78724", - "city": "Austin", - "county": "Travis", - "pop": 25723 - }, - { - "zip": "77478", - "city": "Sugar Land", - "county": "Fort Bend", - "pop": 25721 - }, - { - "zip": "76012", - "city": "Arlington", - "county": "Tarrant", - "pop": 25719 - }, - { - "zip": "78757", - "city": "Austin", - "county": "Travis", - "pop": 25706 - }, - { - "zip": "76209", - "city": "Denton", - "county": "Denton", - "pop": 25689 - }, - { - "zip": "78238", - "city": "San Antonio", - "county": "Bexar", - "pop": 25660 - }, - { - "zip": "79706", - "city": "Midland", - "county": "Midland", - "pop": 25657 - }, - { - "zip": "77802", - "city": "Bryan", - "county": "Brazos", - "pop": 25621 - }, - { - "zip": "75048", - "city": "Sachse", - "county": "Dallas", - "pop": 25598 - }, - { - "zip": "75160", - "city": "Terrell", - "county": "Kaufman", - "pop": 25525 - }, - { - "zip": "76712", - "city": "Woodway", - "county": "Mclennan", - "pop": 25525 - }, - { - "zip": "75503", - "city": "Texarkana", - "county": "Bowie", - "pop": 25517 - }, - { - "zip": "75090", - "city": "Sherman", - "county": "Grayson", - "pop": 25418 - }, - { - "zip": "78222", - "city": "San Antonio", - "county": "Bexar", - "pop": 25227 - }, - { - "zip": "77545", - "city": "Fresno", - "county": "Fort Bend", - "pop": 25226 - }, - { - "zip": "77385", - "city": "Conroe", - "county": "Montgomery", - "pop": 25160 - }, - { - "zip": "75219", - "city": "Dallas", - "county": "Dallas", - "pop": 25120 - }, - { - "zip": "79606", - "city": "Abilene", - "county": "Taylor", - "pop": 25053 - }, - { - "zip": "76801", - "city": "Brownwood", - "county": "Brown", - "pop": 25011 - }, - { - "zip": "75482", - "city": "Sulphur Springs", - "county": "Hopkins", - "pop": 24984 - }, - { - "zip": "75662", - "city": "Kilgore", - "county": "Gregg", - "pop": 24976 - }, - { - "zip": "77504", - "city": "Pasadena", - "county": "Harris", - "pop": 24954 - }, - { - "zip": "75092", - "city": "Sherman", - "county": "Grayson", - "pop": 24905 - }, - { - "zip": "75205", - "city": "Dallas", - "county": "Dallas", - "pop": 24877 - }, - { - "zip": "79602", - "city": "Abilene", - "county": "Taylor", - "pop": 24876 - }, - { - "zip": "76710", - "city": "Waco", - "county": "Mclennan", - "pop": 24837 - }, - { - "zip": "76048", - "city": "Granbury", - "county": "Hood", - "pop": 24822 - }, - { - "zip": "77503", - "city": "Pasadena", - "county": "Harris", - "pop": 24808 - }, - { - "zip": "77043", - "city": "Houston", - "county": "Harris", - "pop": 24803 - }, - { - "zip": "76006", - "city": "Arlington", - "county": "Tarrant", - "pop": 24684 - }, - { - "zip": "76208", - "city": "Denton", - "county": "Denton", - "pop": 24621 - }, - { - "zip": "78653", - "city": "Manor", - "county": "Travis", - "pop": 24313 - }, - { - "zip": "78380", - "city": "Robstown", - "county": "Nueces", - "pop": 24300 - }, - { - "zip": "77505", - "city": "Pasadena", - "county": "Harris", - "pop": 24223 - }, - { - "zip": "78114", - "city": "Floresville", - "county": "Wilson", - "pop": 24009 - }, - { - "zip": "76148", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 23993 - }, - { - "zip": "77414", - "city": "Bay City", - "county": "Matagorda", - "pop": 23982 - }, - { - "zip": "75180", - "city": "Mesquite", - "county": "Dallas", - "pop": 23941 - }, - { - "zip": "78621", - "city": "Elgin", - "county": "Bastrop", - "pop": 23936 - }, - { - "zip": "75253", - "city": "Dallas", - "county": "Dallas", - "pop": 23900 - }, - { - "zip": "79703", - "city": "Midland", - "county": "Midland", - "pop": 23834 - }, - { - "zip": "76544", - "city": "Killeen", - "county": "Bell", - "pop": 23834 - }, - { - "zip": "76504", - "city": "Temple", - "county": "Bell", - "pop": 23756 - }, - { - "zip": "76086", - "city": "Weatherford", - "county": "Parker", - "pop": 23699 - }, - { - "zip": "78702", - "city": "Austin", - "county": "Travis", - "pop": 23671 - }, - { - "zip": "75460", - "city": "Paris", - "county": "Lamar", - "pop": 23504 - }, - { - "zip": "75082", - "city": "Richardson", - "county": "Dallas", - "pop": 23483 - }, - { - "zip": "79603", - "city": "Abilene", - "county": "Taylor", - "pop": 23454 - }, - { - "zip": "76126", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 23450 - }, - { - "zip": "79118", - "city": "Amarillo", - "county": "Randall", - "pop": 23381 - }, - { - "zip": "77327", - "city": "Cleveland", - "county": "Liberty", - "pop": 23274 - }, - { - "zip": "77054", - "city": "Houston", - "county": "Harris", - "pop": 23267 - }, - { - "zip": "75094", - "city": "Plano", - "county": "Collin", - "pop": 23239 - }, - { - "zip": "75020", - "city": "Denison", - "county": "Grayson", - "pop": 23232 - }, - { - "zip": "76109", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 23220 - }, - { - "zip": "77632", - "city": "Orange", - "county": "Orange", - "pop": 22903 - }, - { - "zip": "78224", - "city": "San Antonio", - "county": "Bexar", - "pop": 22851 - }, - { - "zip": "79407", - "city": "Lubbock", - "county": "Lubbock", - "pop": 22807 - }, - { - "zip": "76011", - "city": "Arlington", - "county": "Tarrant", - "pop": 22622 - }, - { - "zip": "77006", - "city": "Houston", - "county": "Harris", - "pop": 22580 - }, - { - "zip": "77586", - "city": "Seabrook", - "county": "Harris", - "pop": 22548 - }, - { - "zip": "76111", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 22531 - }, - { - "zip": "75218", - "city": "Dallas", - "county": "Dallas", - "pop": 22529 - }, - { - "zip": "77578", - "city": "Manvel", - "county": "Brazoria", - "pop": 22527 - }, - { - "zip": "78801", - "city": "Uvalde", - "county": "Uvalde", - "pop": 22518 - }, - { - "zip": "78624", - "city": "Fredericksburg", - "county": "Gillespie", - "pop": 22444 - }, - { - "zip": "78148", - "city": "Universal City", - "county": "Bexar", - "pop": 22364 - }, - { - "zip": "76052", - "city": "Haslet", - "county": "Tarrant", - "pop": 22290 - }, - { - "zip": "76105", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 22179 - }, - { - "zip": "79764", - "city": "Odessa", - "county": "Ector", - "pop": 22172 - }, - { - "zip": "77019", - "city": "Houston", - "county": "Harris", - "pop": 22057 - }, - { - "zip": "77056", - "city": "Houston", - "county": "Harris", - "pop": 22056 - }, - { - "zip": "76135", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 21973 - }, - { - "zip": "77551", - "city": "Galveston", - "county": "Galveston", - "pop": 21929 - }, - { - "zip": "75803", - "city": "Palestine", - "county": "Anderson", - "pop": 21928 - }, - { - "zip": "79015", - "city": "Canyon", - "county": "Randall", - "pop": 21925 - }, - { - "zip": "75134", - "city": "Lancaster", - "county": "Dallas", - "pop": 21879 - }, - { - "zip": "77550", - "city": "Galveston", - "county": "Galveston", - "pop": 21863 - }, - { - "zip": "79413", - "city": "Lubbock", - "county": "Lubbock", - "pop": 21821 - }, - { - "zip": "75225", - "city": "Dallas", - "county": "Dallas", - "pop": 21736 - }, - { - "zip": "77627", - "city": "Nederland", - "county": "Jefferson", - "pop": 21698 - }, - { - "zip": "75602", - "city": "Longview", - "county": "Gregg", - "pop": 21655 - }, - { - "zip": "78503", - "city": "Mcallen", - "county": "Hidalgo", - "pop": 21644 - }, - { - "zip": "79905", - "city": "El Paso", - "county": "El Paso", - "pop": 21599 - }, - { - "zip": "75237", - "city": "Dallas", - "county": "Dallas", - "pop": 21423 - }, - { - "zip": "77657", - "city": "Lumberton", - "county": "Hardin", - "pop": 21345 - }, - { - "zip": "76205", - "city": "Denton", - "county": "Denton", - "pop": 21326 - }, - { - "zip": "76115", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 21319 - }, - { - "zip": "75771", - "city": "Lindale", - "county": "Smith", - "pop": 21310 - }, - { - "zip": "77026", - "city": "Houston", - "county": "Harris", - "pop": 21300 - }, - { - "zip": "78728", - "city": "Austin", - "county": "Travis", - "pop": 21125 - }, - { - "zip": "78382", - "city": "Rockport", - "county": "Aransas", - "pop": 21123 - }, - { - "zip": "78739", - "city": "Austin", - "county": "Travis", - "pop": 21040 - }, - { - "zip": "78747", - "city": "Austin", - "county": "Travis", - "pop": 21021 - }, - { - "zip": "78752", - "city": "Austin", - "county": "Travis", - "pop": 20881 - }, - { - "zip": "77303", - "city": "Conroe", - "county": "Montgomery", - "pop": 20655 - }, - { - "zip": "79065", - "city": "Pampa", - "county": "Gray", - "pop": 20606 - }, - { - "zip": "79902", - "city": "El Paso", - "county": "El Paso", - "pop": 20496 - }, - { - "zip": "76009", - "city": "Alvarado", - "county": "Johnson", - "pop": 20417 - }, - { - "zip": "78703", - "city": "Austin", - "county": "Travis", - "pop": 20407 - }, - { - "zip": "76067", - "city": "Mineral Wells", - "county": "Palo Pinto", - "pop": 20309 - }, - { - "zip": "76082", - "city": "Springtown", - "county": "Parker", - "pop": 20194 - }, - { - "zip": "75039", - "city": "Irving", - "county": "Dallas", - "pop": 20108 - }, - { - "zip": "75159", - "city": "Seagoville", - "county": "Dallas", - "pop": 20098 - }, - { - "zip": "76058", - "city": "Joshua", - "county": "Johnson", - "pop": 19904 - }, - { - "zip": "75116", - "city": "Duncanville", - "county": "Dallas", - "pop": 19867 - }, - { - "zip": "75964", - "city": "Nacogdoches", - "county": "Nacogdoches", - "pop": 19811 - }, - { - "zip": "75146", - "city": "Lancaster", - "county": "Dallas", - "pop": 19701 - }, - { - "zip": "77012", - "city": "Houston", - "county": "Harris", - "pop": 19597 - }, - { - "zip": "75137", - "city": "Duncanville", - "county": "Dallas", - "pop": 19548 - }, - { - "zip": "76308", - "city": "Wichita Falls", - "county": "Wichita", - "pop": 19493 - }, - { - "zip": "77384", - "city": "Conroe", - "county": "Montgomery", - "pop": 19467 - }, - { - "zip": "78734", - "city": "Austin", - "county": "Travis", - "pop": 19452 - }, - { - "zip": "77401", - "city": "Bellaire", - "county": "Harris", - "pop": 19372 - }, - { - "zip": "77069", - "city": "Houston", - "county": "Harris", - "pop": 19345 - }, - { - "zip": "76008", - "city": "Aledo", - "county": "Parker", - "pop": 19338 - }, - { - "zip": "75142", - "city": "Kaufman", - "county": "Kaufman", - "pop": 19261 - }, - { - "zip": "77013", - "city": "Houston", - "county": "Harris", - "pop": 19198 - }, - { - "zip": "76310", - "city": "Wichita Falls", - "county": "Wichita", - "pop": 19187 - }, - { - "zip": "78584", - "city": "Roma", - "county": "Starr", - "pop": 19175 - }, - { - "zip": "76574", - "city": "Taylor", - "county": "Williamson", - "pop": 19161 - }, - { - "zip": "79110", - "city": "Amarillo", - "county": "Randall", - "pop": 19158 - }, - { - "zip": "75401", - "city": "Greenville", - "county": "Hunt", - "pop": 19146 - }, - { - "zip": "77037", - "city": "Houston", - "county": "Harris", - "pop": 18966 - }, - { - "zip": "79045", - "city": "Hereford", - "county": "Deaf Smith", - "pop": 18847 - }, - { - "zip": "79414", - "city": "Lubbock", - "county": "Lubbock", - "pop": 18731 - }, - { - "zip": "77302", - "city": "Conroe", - "county": "Montgomery", - "pop": 18658 - }, - { - "zip": "77541", - "city": "Freeport", - "county": "Brazoria", - "pop": 18609 - }, - { - "zip": "78133", - "city": "Canyon Lake", - "county": "Comal", - "pop": 18483 - }, - { - "zip": "75235", - "city": "Dallas", - "county": "Dallas", - "pop": 18429 - }, - { - "zip": "78644", - "city": "Lockhart", - "county": "Caldwell", - "pop": 18390 - }, - { - "zip": "77048", - "city": "Houston", - "county": "Harris", - "pop": 18383 - }, - { - "zip": "78374", - "city": "Portland", - "county": "San Patricio", - "pop": 18369 - }, - { - "zip": "76104", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 18344 - }, - { - "zip": "77707", - "city": "Beaumont", - "county": "Jefferson", - "pop": 18335 - }, - { - "zip": "77027", - "city": "Houston", - "county": "Harris", - "pop": 18323 - }, - { - "zip": "78654", - "city": "Marble Falls", - "county": "Burnet", - "pop": 18250 - }, - { - "zip": "75236", - "city": "Dallas", - "county": "Dallas", - "pop": 18137 - }, - { - "zip": "76120", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 18125 - }, - { - "zip": "78735", - "city": "Austin", - "county": "Travis", - "pop": 18122 - }, - { - "zip": "75402", - "city": "Greenville", - "county": "Hunt", - "pop": 18087 - }, - { - "zip": "77031", - "city": "Houston", - "county": "Harris", - "pop": 18058 - }, - { - "zip": "79714", - "city": "Andrews", - "county": "Andrews", - "pop": 18036 - }, - { - "zip": "77085", - "city": "Houston", - "county": "Harris", - "pop": 17991 - }, - { - "zip": "75407", - "city": "Princeton", - "county": "Collin", - "pop": 17978 - }, - { - "zip": "79415", - "city": "Lubbock", - "county": "Lubbock", - "pop": 17939 - }, - { - "zip": "79403", - "city": "Lubbock", - "county": "Lubbock", - "pop": 17926 - }, - { - "zip": "77979", - "city": "Port Lavaca", - "county": "Calhoun", - "pop": 17916 - }, - { - "zip": "75965", - "city": "Nacogdoches", - "county": "Nacogdoches", - "pop": 17907 - }, - { - "zip": "79935", - "city": "El Paso", - "county": "El Paso", - "pop": 17850 - }, - { - "zip": "75215", - "city": "Dallas", - "county": "Dallas", - "pop": 17818 - }, - { - "zip": "77029", - "city": "Houston", - "county": "Harris", - "pop": 17781 - }, - { - "zip": "78732", - "city": "Austin", - "county": "Travis", - "pop": 17780 - }, - { - "zip": "78404", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 17761 - }, - { - "zip": "76541", - "city": "Killeen", - "county": "Bell", - "pop": 17691 - }, - { - "zip": "76031", - "city": "Cleburne", - "county": "Johnson", - "pop": 17668 - }, - { - "zip": "75249", - "city": "Dallas", - "county": "Dallas", - "pop": 17649 - }, - { - "zip": "77378", - "city": "Willis", - "county": "Montgomery", - "pop": 17616 - }, - { - "zip": "78620", - "city": "Dripping Springs", - "county": "Hays", - "pop": 17590 - }, - { - "zip": "75670", - "city": "Marshall", - "county": "Harrison", - "pop": 17539 - }, - { - "zip": "79119", - "city": "Amarillo", - "county": "Randall", - "pop": 17524 - }, - { - "zip": "75201", - "city": "Dallas", - "county": "Dallas", - "pop": 17476 - }, - { - "zip": "77011", - "city": "Houston", - "county": "Harris", - "pop": 17447 - }, - { - "zip": "77028", - "city": "Houston", - "county": "Harris", - "pop": 17425 - }, - { - "zip": "78566", - "city": "Los Fresnos", - "county": "Cameron", - "pop": 17398 - }, - { - "zip": "75203", - "city": "Dallas", - "county": "Dallas", - "pop": 17367 - }, - { - "zip": "76528", - "city": "Gatesville", - "county": "Coryell", - "pop": 17284 - }, - { - "zip": "75233", - "city": "Dallas", - "county": "Dallas", - "pop": 17280 - }, - { - "zip": "79336", - "city": "Levelland", - "county": "Hockley", - "pop": 17270 - }, - { - "zip": "77059", - "city": "Houston", - "county": "Harris", - "pop": 17254 - }, - { - "zip": "78219", - "city": "San Antonio", - "county": "Bexar", - "pop": 17239 - }, - { - "zip": "77051", - "city": "Houston", - "county": "Harris", - "pop": 17221 - }, - { - "zip": "78737", - "city": "Austin", - "county": "Travis", - "pop": 17173 - }, - { - "zip": "77868", - "city": "Navasota", - "county": "Grimes", - "pop": 17142 - }, - { - "zip": "75751", - "city": "Athens", - "county": "Henderson", - "pop": 17084 - }, - { - "zip": "76015", - "city": "Arlington", - "county": "Tarrant", - "pop": 16961 - }, - { - "zip": "77587", - "city": "South Houston", - "county": "Harris", - "pop": 16928 - }, - { - "zip": "77437", - "city": "El Campo", - "county": "Wharton", - "pop": 16913 - }, - { - "zip": "77575", - "city": "Liberty", - "county": "Liberty", - "pop": 16884 - }, - { - "zip": "78261", - "city": "San Antonio", - "county": "Bexar", - "pop": 16749 - }, - { - "zip": "76501", - "city": "Temple", - "county": "Bell", - "pop": 16710 - }, - { - "zip": "78220", - "city": "San Antonio", - "county": "Bexar", - "pop": 16700 - }, - { - "zip": "79360", - "city": "Seminole", - "county": "Gaines", - "pop": 16666 - }, - { - "zip": "76234", - "city": "Decatur", - "county": "Wise", - "pop": 16630 - }, - { - "zip": "79412", - "city": "Lubbock", - "county": "Lubbock", - "pop": 16554 - }, - { - "zip": "77656", - "city": "Silsbee", - "county": "Hardin", - "pop": 16524 - }, - { - "zip": "79765", - "city": "Odessa", - "county": "Ector", - "pop": 16486 - }, - { - "zip": "76118", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 16378 - }, - { - "zip": "75672", - "city": "Marshall", - "county": "Harrison", - "pop": 16351 - }, - { - "zip": "75409", - "city": "Anna", - "county": "Collin", - "pop": 16349 - }, - { - "zip": "77318", - "city": "Willis", - "county": "Montgomery", - "pop": 16303 - }, - { - "zip": "77447", - "city": "Hockley", - "county": "Harris", - "pop": 16246 - }, - { - "zip": "75801", - "city": "Palestine", - "county": "Anderson", - "pop": 16244 - }, - { - "zip": "77531", - "city": "Clute", - "county": "Brazoria", - "pop": 16228 - }, - { - "zip": "75652", - "city": "Henderson", - "county": "Rusk", - "pop": 16223 - }, - { - "zip": "78751", - "city": "Austin", - "county": "Travis", - "pop": 16197 - }, - { - "zip": "78064", - "city": "Pleasanton", - "county": "Atascosa", - "pop": 16186 - }, - { - "zip": "77058", - "city": "Houston", - "county": "Harris", - "pop": 16120 - }, - { - "zip": "76266", - "city": "Sanger", - "county": "Denton", - "pop": 16112 - }, - { - "zip": "79108", - "city": "Amarillo", - "county": "Potter", - "pop": 16112 - }, - { - "zip": "75961", - "city": "Nacogdoches", - "county": "Nacogdoches", - "pop": 16004 - }, - { - "zip": "79903", - "city": "El Paso", - "county": "El Paso", - "pop": 15995 - }, - { - "zip": "78738", - "city": "Austin", - "county": "Travis", - "pop": 15986 - }, - { - "zip": "78416", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 15973 - }, - { - "zip": "79549", - "city": "Snyder", - "county": "Scurry", - "pop": 15943 - }, - { - "zip": "75951", - "city": "Jasper", - "county": "Jasper", - "pop": 15859 - }, - { - "zip": "78015", - "city": "Boerne", - "county": "Bexar", - "pop": 15811 - }, - { - "zip": "75601", - "city": "Longview", - "county": "Gregg", - "pop": 15719 - }, - { - "zip": "77640", - "city": "Port Arthur", - "county": "Jefferson", - "pop": 15706 - }, - { - "zip": "76707", - "city": "Waco", - "county": "Mclennan", - "pop": 15688 - }, - { - "zip": "77568", - "city": "La Marque", - "county": "Galveston", - "pop": 15680 - }, - { - "zip": "77078", - "city": "Houston", - "county": "Harris", - "pop": 15663 - }, - { - "zip": "77619", - "city": "Groves", - "county": "Jefferson", - "pop": 15662 - }, - { - "zip": "77002", - "city": "Houston", - "county": "Harris", - "pop": 15613 - }, - { - "zip": "79029", - "city": "Dumas", - "county": "Moore", - "pop": 15584 - }, - { - "zip": "76164", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 15488 - }, - { - "zip": "76103", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 15486 - }, - { - "zip": "78070", - "city": "Spring Branch", - "county": "Comal", - "pop": 15457 - }, - { - "zip": "77801", - "city": "Bryan", - "county": "Brazos", - "pop": 15068 - }, - { - "zip": "78405", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 15059 - }, - { - "zip": "75474", - "city": "Quinlan", - "county": "Hunt", - "pop": 15017 - }, - { - "zip": "75001", - "city": "Addison", - "county": "Dallas", - "pop": 14992 - }, - { - "zip": "76306", - "city": "Wichita Falls", - "county": "Wichita", - "pop": 14980 - }, - { - "zip": "75057", - "city": "Lewisville", - "county": "Denton", - "pop": 14960 - }, - { - "zip": "75223", - "city": "Dallas", - "county": "Dallas", - "pop": 14941 - }, - { - "zip": "77591", - "city": "Texas City", - "county": "Galveston", - "pop": 14936 - }, - { - "zip": "78580", - "city": "Raymondville", - "county": "Willacy", - "pop": 14839 - }, - { - "zip": "77905", - "city": "Victoria", - "county": "Victoria", - "pop": 14834 - }, - { - "zip": "78255", - "city": "San Antonio", - "county": "Bexar", - "pop": 14825 - }, - { - "zip": "76301", - "city": "Wichita Falls", - "county": "Wichita", - "pop": 14757 - }, - { - "zip": "76207", - "city": "Denton", - "county": "Denton", - "pop": 14588 - }, - { - "zip": "75418", - "city": "Bonham", - "county": "Fannin", - "pop": 14571 - }, - { - "zip": "77032", - "city": "Houston", - "county": "Harris", - "pop": 14535 - }, - { - "zip": "75103", - "city": "Canton", - "county": "Van Zandt", - "pop": 14530 - }, - { - "zip": "77488", - "city": "Wharton", - "county": "Wharton", - "pop": 14525 - }, - { - "zip": "76643", - "city": "Hewitt", - "county": "Mclennan", - "pop": 14523 - }, - { - "zip": "75773", - "city": "Mineola", - "county": "Wood", - "pop": 14523 - }, - { - "zip": "75143", - "city": "Kemp", - "county": "Kaufman", - "pop": 14510 - }, - { - "zip": "77510", - "city": "Santa Fe", - "county": "Galveston", - "pop": 14485 - }, - { - "zip": "78225", - "city": "San Antonio", - "county": "Bexar", - "pop": 14472 - }, - { - "zip": "77328", - "city": "Cleveland", - "county": "Liberty", - "pop": 14438 - }, - { - "zip": "78248", - "city": "San Antonio", - "county": "Bexar", - "pop": 14345 - }, - { - "zip": "75209", - "city": "Dallas", - "county": "Dallas", - "pop": 14308 - }, - { - "zip": "79007", - "city": "Borger", - "county": "Hutchinson", - "pop": 14290 - }, - { - "zip": "76367", - "city": "Iowa Park", - "county": "Wichita", - "pop": 14247 - }, - { - "zip": "77713", - "city": "Beaumont", - "county": "Jefferson", - "pop": 14238 - }, - { - "zip": "75707", - "city": "Tyler", - "county": "Smith", - "pop": 14232 - }, - { - "zip": "77445", - "city": "Hempstead", - "county": "Waller", - "pop": 14200 - }, - { - "zip": "75169", - "city": "Wills Point", - "county": "Van Zandt", - "pop": 14142 - }, - { - "zip": "77372", - "city": "Splendora", - "county": "Montgomery", - "pop": 14116 - }, - { - "zip": "75009", - "city": "Celina", - "county": "Collin", - "pop": 14089 - }, - { - "zip": "78726", - "city": "Austin", - "county": "Travis", - "pop": 14040 - }, - { - "zip": "79772", - "city": "Pecos", - "county": "Reeves", - "pop": 14029 - }, - { - "zip": "78557", - "city": "Hidalgo", - "county": "Hidalgo", - "pop": 13970 - }, - { - "zip": "79735", - "city": "Fort Stockton", - "county": "Pecos", - "pop": 13915 - }, - { - "zip": "77703", - "city": "Beaumont", - "county": "Jefferson", - "pop": 13823 - }, - { - "zip": "77098", - "city": "Houston", - "county": "Harris", - "pop": 13818 - }, - { - "zip": "78612", - "city": "Cedar Creek", - "county": "Bastrop", - "pop": 13802 - }, - { - "zip": "75647", - "city": "Gladewater", - "county": "Gregg", - "pop": 13712 - }, - { - "zip": "78861", - "city": "Hondo", - "county": "Medina", - "pop": 13663 - }, - { - "zip": "75935", - "city": "Center", - "county": "Shelby", - "pop": 13648 - }, - { - "zip": "76247", - "city": "Justin", - "county": "Denton", - "pop": 13601 - }, - { - "zip": "77306", - "city": "Conroe", - "county": "Montgomery", - "pop": 13569 - }, - { - "zip": "75791", - "city": "Whitehouse", - "county": "Smith", - "pop": 13562 - }, - { - "zip": "76022", - "city": "Bedford", - "county": "Tarrant", - "pop": 13495 - }, - { - "zip": "76302", - "city": "Wichita Falls", - "county": "Wichita", - "pop": 13482 - }, - { - "zip": "77701", - "city": "Beaumont", - "county": "Jefferson", - "pop": 13480 - }, - { - "zip": "75644", - "city": "Gilmer", - "county": "Upshur", - "pop": 13427 - }, - { - "zip": "76550", - "city": "Lampasas", - "county": "Lampasas", - "pop": 13412 - }, - { - "zip": "78121", - "city": "La Vernia", - "county": "Wilson", - "pop": 13276 - }, - { - "zip": "78559", - "city": "La Feria", - "county": "Cameron", - "pop": 13255 - }, - { - "zip": "75244", - "city": "Dallas", - "county": "Dallas", - "pop": 13254 - }, - { - "zip": "77422", - "city": "Brazoria", - "county": "Brazoria", - "pop": 13194 - }, - { - "zip": "75686", - "city": "Pittsburg", - "county": "Camp", - "pop": 13184 - }, - { - "zip": "75633", - "city": "Carthage", - "county": "Panola", - "pop": 13161 - }, - { - "zip": "77336", - "city": "Huffman", - "county": "Harris", - "pop": 13156 - }, - { - "zip": "78676", - "city": "Wimberley", - "county": "Hays", - "pop": 13124 - }, - { - "zip": "76450", - "city": "Graham", - "county": "Young", - "pop": 13112 - }, - { - "zip": "78076", - "city": "Zapata", - "county": "Zapata", - "pop": 13029 - }, - { - "zip": "76309", - "city": "Wichita Falls", - "county": "Wichita", - "pop": 12991 - }, - { - "zip": "78611", - "city": "Burnet", - "county": "Burnet", - "pop": 12921 - }, - { - "zip": "78669", - "city": "Spicewood", - "county": "Travis", - "pop": 12901 - }, - { - "zip": "78163", - "city": "Bulverde", - "county": "Comal", - "pop": 12874 - }, - { - "zip": "78061", - "city": "Pearsall", - "county": "Frio", - "pop": 12858 - }, - { - "zip": "79556", - "city": "Sweetwater", - "county": "Nolan", - "pop": 12833 - }, - { - "zip": "75757", - "city": "Bullard", - "county": "Smith", - "pop": 12802 - }, - { - "zip": "77651", - "city": "Port Neches", - "county": "Jefferson", - "pop": 12782 - }, - { - "zip": "75654", - "city": "Henderson", - "county": "Rusk", - "pop": 12664 - }, - { - "zip": "75065", - "city": "Lake Dallas", - "county": "Denton", - "pop": 12640 - }, - { - "zip": "77441", - "city": "Fulshear", - "county": "Fort Bend", - "pop": 12559 - }, - { - "zip": "77708", - "city": "Beaumont", - "county": "Jefferson", - "pop": 12536 - }, - { - "zip": "77474", - "city": "Sealy", - "county": "Austin", - "pop": 12487 - }, - { - "zip": "79331", - "city": "Lamesa", - "county": "Dawson", - "pop": 12426 - }, - { - "zip": "75762", - "city": "Flint", - "county": "Smith", - "pop": 12412 - }, - { - "zip": "78629", - "city": "Gonzales", - "county": "Gonzales", - "pop": 12393 - }, - { - "zip": "77423", - "city": "Brookshire", - "county": "Waller", - "pop": 12377 - }, - { - "zip": "78642", - "city": "Liberty Hill", - "county": "Williamson", - "pop": 12363 - }, - { - "zip": "76426", - "city": "Bridgeport", - "county": "Wise", - "pop": 12351 - }, - { - "zip": "76054", - "city": "Hurst", - "county": "Tarrant", - "pop": 12280 - }, - { - "zip": "78204", - "city": "San Antonio", - "county": "Bexar", - "pop": 12231 - }, - { - "zip": "75979", - "city": "Woodville", - "county": "Tyler", - "pop": 12228 - }, - { - "zip": "78575", - "city": "Olmito", - "county": "Cameron", - "pop": 12215 - }, - { - "zip": "76905", - "city": "San Angelo", - "county": "Tom Green", - "pop": 12206 - }, - { - "zip": "76384", - "city": "Vernon", - "county": "Wilbarger", - "pop": 12179 - }, - { - "zip": "75167", - "city": "Waxahachie", - "county": "Ellis", - "pop": 12170 - }, - { - "zip": "79849", - "city": "San Elizario", - "county": "El Paso", - "pop": 12157 - }, - { - "zip": "76354", - "city": "Burkburnett", - "county": "Wichita", - "pop": 12114 - }, - { - "zip": "78721", - "city": "Austin", - "county": "Travis", - "pop": 12110 - }, - { - "zip": "77836", - "city": "Caldwell", - "county": "Burleson", - "pop": 12077 - }, - { - "zip": "77808", - "city": "Bryan", - "county": "Brazos", - "pop": 12013 - }, - { - "zip": "78252", - "city": "San Antonio", - "county": "Bexar", - "pop": 12009 - }, - { - "zip": "75054", - "city": "Grand Prairie", - "county": "Dallas", - "pop": 11927 - }, - { - "zip": "76088", - "city": "Weatherford", - "county": "Parker", - "pop": 11907 - }, - { - "zip": "78578", - "city": "Port Isabel", - "county": "Cameron", - "pop": 11772 - }, - { - "zip": "76177", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 11695 - }, - { - "zip": "75462", - "city": "Paris", - "county": "Lamar", - "pop": 11641 - }, - { - "zip": "78016", - "city": "Devine", - "county": "Medina", - "pop": 11632 - }, - { - "zip": "78408", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 11583 - }, - { - "zip": "78645", - "city": "Leander", - "county": "Travis", - "pop": 11579 - }, - { - "zip": "77807", - "city": "Bryan", - "county": "Brazos", - "pop": 11564 - }, - { - "zip": "77954", - "city": "Cuero", - "county": "De Witt", - "pop": 11478 - }, - { - "zip": "78202", - "city": "San Antonio", - "county": "Bexar", - "pop": 11453 - }, - { - "zip": "77461", - "city": "Needville", - "county": "Fort Bend", - "pop": 11447 - }, - { - "zip": "79022", - "city": "Dalhart", - "county": "Dallam", - "pop": 11400 - }, - { - "zip": "75428", - "city": "Commerce", - "county": "Hunt", - "pop": 11371 - }, - { - "zip": "75785", - "city": "Rusk", - "county": "Cherokee", - "pop": 11357 - }, - { - "zip": "79316", - "city": "Brownfield", - "county": "Terry", - "pop": 11310 - }, - { - "zip": "75551", - "city": "Atlanta", - "county": "Cass", - "pop": 11251 - }, - { - "zip": "78256", - "city": "San Antonio", - "county": "Bexar", - "pop": 11238 - }, - { - "zip": "77030", - "city": "Houston", - "county": "Harris", - "pop": 11229 - }, - { - "zip": "78336", - "city": "Aransas Pass", - "county": "San Patricio", - "pop": 11214 - }, - { - "zip": "79835", - "city": "Canutillo", - "county": "El Paso", - "pop": 11184 - }, - { - "zip": "78538", - "city": "Edcouch", - "county": "Hidalgo", - "pop": 11137 - }, - { - "zip": "78065", - "city": "Poteet", - "county": "Atascosa", - "pop": 11130 - }, - { - "zip": "76667", - "city": "Mexia", - "county": "Limestone", - "pop": 11098 - }, - { - "zip": "75835", - "city": "Crockett", - "county": "Houston", - "pop": 11086 - }, - { - "zip": "75570", - "city": "New Boston", - "county": "Bowie", - "pop": 11071 - }, - { - "zip": "77563", - "city": "Hitchcock", - "county": "Galveston", - "pop": 11027 - }, - { - "zip": "76085", - "city": "Weatherford", - "county": "Parker", - "pop": 11014 - }, - { - "zip": "77068", - "city": "Houston", - "county": "Harris", - "pop": 11011 - }, - { - "zip": "77484", - "city": "Waller", - "county": "Waller", - "pop": 10875 - }, - { - "zip": "79103", - "city": "Amarillo", - "county": "Potter", - "pop": 10869 - }, - { - "zip": "77518", - "city": "Bacliff", - "county": "Galveston", - "pop": 10856 - }, - { - "zip": "78701", - "city": "Austin", - "county": "Travis", - "pop": 10848 - }, - { - "zip": "75645", - "city": "Gilmer", - "county": "Upshur", - "pop": 10797 - }, - { - "zip": "78945", - "city": "La Grange", - "county": "Fayette", - "pop": 10767 - }, - { - "zip": "77995", - "city": "Yoakum", - "county": "Lavaca", - "pop": 10724 - }, - { - "zip": "77562", - "city": "Highlands", - "county": "Harris", - "pop": 10680 - }, - { - "zip": "78264", - "city": "San Antonio", - "county": "Bexar", - "pop": 10623 - }, - { - "zip": "78576", - "city": "Penitas", - "county": "Hidalgo", - "pop": 10600 - }, - { - "zip": "76645", - "city": "Hillsboro", - "county": "Hill", - "pop": 10568 - }, - { - "zip": "77418", - "city": "Bellville", - "county": "Austin", - "pop": 10537 - }, - { - "zip": "75454", - "city": "Melissa", - "county": "Collin", - "pop": 10467 - }, - { - "zip": "75706", - "city": "Tyler", - "county": "Smith", - "pop": 10449 - }, - { - "zip": "77094", - "city": "Houston", - "county": "Harris", - "pop": 10271 - }, - { - "zip": "76692", - "city": "Whitney", - "county": "Hill", - "pop": 10252 - }, - { - "zip": "76078", - "city": "Rhome", - "county": "Wise", - "pop": 10247 - }, - { - "zip": "78362", - "city": "Ingleside", - "county": "San Patricio", - "pop": 10218 - }, - { - "zip": "75704", - "city": "Tyler", - "county": "Smith", - "pop": 10199 - }, - { - "zip": "75862", - "city": "Trinity", - "county": "Trinity", - "pop": 10176 - }, - { - "zip": "79410", - "city": "Lubbock", - "county": "Lubbock", - "pop": 10166 - }, - { - "zip": "78736", - "city": "Austin", - "county": "Travis", - "pop": 10163 - }, - { - "zip": "76657", - "city": "Mc Gregor", - "county": "Mclennan", - "pop": 10108 - }, - { - "zip": "79404", - "city": "Lubbock", - "county": "Lubbock", - "pop": 10094 - }, - { - "zip": "76711", - "city": "Waco", - "county": "Mclennan", - "pop": 9988 - }, - { - "zip": "75494", - "city": "Winnsboro", - "county": "Wood", - "pop": 9940 - }, - { - "zip": "77547", - "city": "Galena Park", - "county": "Harris", - "pop": 9925 - }, - { - "zip": "76230", - "city": "Bowie", - "county": "Montague", - "pop": 9896 - }, - { - "zip": "79102", - "city": "Amarillo", - "county": "Potter", - "pop": 9878 - }, - { - "zip": "79070", - "city": "Perryton", - "county": "Ochiltree", - "pop": 9851 - }, - { - "zip": "75650", - "city": "Hallsville", - "county": "Harrison", - "pop": 9837 - }, - { - "zip": "76273", - "city": "Whitesboro", - "county": "Grayson", - "pop": 9806 - }, - { - "zip": "78730", - "city": "Austin", - "county": "Travis", - "pop": 9803 - }, - { - "zip": "77625", - "city": "Kountze", - "county": "Hardin", - "pop": 9761 - }, - { - "zip": "78003", - "city": "Bandera", - "county": "Bandera", - "pop": 9743 - }, - { - "zip": "77003", - "city": "Houston", - "county": "Harris", - "pop": 9707 - }, - { - "zip": "78957", - "city": "Smithville", - "county": "Bastrop", - "pop": 9699 - }, - { - "zip": "78387", - "city": "Sinton", - "county": "San Patricio", - "pop": 9660 - }, - { - "zip": "79901", - "city": "El Paso", - "county": "El Paso", - "pop": 9590 - }, - { - "zip": "79756", - "city": "Monahans", - "county": "Ward", - "pop": 9565 - }, - { - "zip": "78063", - "city": "Pipe Creek", - "county": "Bandera", - "pop": 9484 - }, - { - "zip": "78368", - "city": "Mathis", - "county": "San Patricio", - "pop": 9460 - }, - { - "zip": "77612", - "city": "Buna", - "county": "Jasper", - "pop": 9408 - }, - { - "zip": "75442", - "city": "Farmersville", - "county": "Collin", - "pop": 9308 - }, - { - "zip": "76102", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 9282 - }, - { - "zip": "76567", - "city": "Rockdale", - "county": "Milam", - "pop": 9161 - }, - { - "zip": "75861", - "city": "Tennessee Colony", - "county": "Anderson", - "pop": 9126 - }, - { - "zip": "76084", - "city": "Venus", - "county": "Johnson", - "pop": 9109 - }, - { - "zip": "78942", - "city": "Giddings", - "county": "Lee", - "pop": 9033 - }, - { - "zip": "78231", - "city": "San Antonio", - "county": "Bexar", - "pop": 9001 - }, - { - "zip": "78839", - "city": "Crystal City", - "county": "Zavala", - "pop": 8995 - }, - { - "zip": "76311", - "city": "Sheppard Afb", - "county": "Wichita", - "pop": 8987 - }, - { - "zip": "75956", - "city": "Kirbyville", - "county": "Jasper", - "pop": 8937 - }, - { - "zip": "78733", - "city": "Austin", - "county": "Travis", - "pop": 8927 - }, - { - "zip": "78616", - "city": "Dale", - "county": "Caldwell", - "pop": 8918 - }, - { - "zip": "75021", - "city": "Denison", - "county": "Grayson", - "pop": 8847 - }, - { - "zip": "79124", - "city": "Amarillo", - "county": "Potter", - "pop": 8800 - }, - { - "zip": "78639", - "city": "Kingsland", - "county": "Llano", - "pop": 8792 - }, - { - "zip": "75758", - "city": "Chandler", - "county": "Henderson", - "pop": 8739 - }, - { - "zip": "77957", - "city": "Edna", - "county": "Jackson", - "pop": 8735 - }, - { - "zip": "75495", - "city": "Van Alstyne", - "county": "Grayson", - "pop": 8729 - }, - { - "zip": "76424", - "city": "Breckenridge", - "county": "Stephens", - "pop": 8721 - }, - { - "zip": "78756", - "city": "Austin", - "county": "Travis", - "pop": 8694 - }, - { - "zip": "78543", - "city": "Elsa", - "county": "Hidalgo", - "pop": 8689 - }, - { - "zip": "75210", - "city": "Dallas", - "county": "Dallas", - "pop": 8673 - }, - { - "zip": "77565", - "city": "Kemah", - "county": "Galveston", - "pop": 8650 - }, - { - "zip": "76571", - "city": "Salado", - "county": "Bell", - "pop": 8630 - }, - { - "zip": "78112", - "city": "Elmendorf", - "county": "Bexar", - "pop": 8617 - }, - { - "zip": "76539", - "city": "Kempner", - "county": "Lampasas", - "pop": 8608 - }, - { - "zip": "78073", - "city": "Von Ormy", - "county": "Bexar", - "pop": 8580 - }, - { - "zip": "77611", - "city": "Bridge City", - "county": "Orange", - "pop": 8578 - }, - { - "zip": "77554", - "city": "Galveston", - "county": "Galveston", - "pop": 8556 - }, - { - "zip": "78725", - "city": "Austin", - "county": "Travis", - "pop": 8469 - }, - { - "zip": "76060", - "city": "Kennedale", - "county": "Tarrant", - "pop": 8468 - }, - { - "zip": "78009", - "city": "Castroville", - "county": "Medina", - "pop": 8466 - }, - { - "zip": "75941", - "city": "Diboll", - "county": "Angelina", - "pop": 8465 - }, - { - "zip": "77964", - "city": "Hallettsville", - "county": "Lavaca", - "pop": 8395 - }, - { - "zip": "76249", - "city": "Krum", - "county": "Denton", - "pop": 8317 - }, - { - "zip": "76655", - "city": "Lorena", - "county": "Mclennan", - "pop": 8312 - }, - { - "zip": "75949", - "city": "Huntington", - "county": "Angelina", - "pop": 8225 - }, - { - "zip": "75076", - "city": "Pottsboro", - "county": "Grayson", - "pop": 8156 - }, - { - "zip": "79382", - "city": "Wolfforth", - "county": "Lubbock", - "pop": 8149 - }, - { - "zip": "78648", - "city": "Luling", - "county": "Caldwell", - "pop": 8148 - }, - { - "zip": "78834", - "city": "Carrizo Springs", - "county": "Dimmit", - "pop": 8059 - }, - { - "zip": "77480", - "city": "Sweeny", - "county": "Brazoria", - "pop": 8055 - }, - { - "zip": "77371", - "city": "Shepherd", - "county": "San Jacinto", - "pop": 8036 - }, - { - "zip": "77331", - "city": "Coldspring", - "county": "San Jacinto", - "pop": 7971 - }, - { - "zip": "76704", - "city": "Waco", - "county": "Mclennan", - "pop": 7956 - }, - { - "zip": "75783", - "city": "Quitman", - "county": "Wood", - "pop": 7942 - }, - { - "zip": "79922", - "city": "El Paso", - "county": "El Paso", - "pop": 7932 - }, - { - "zip": "79401", - "city": "Lubbock", - "county": "Lubbock", - "pop": 7912 - }, - { - "zip": "76442", - "city": "Comanche", - "county": "Comanche", - "pop": 7909 - }, - { - "zip": "78226", - "city": "San Antonio", - "county": "Bexar", - "pop": 7906 - }, - { - "zip": "75684", - "city": "Overton", - "county": "Rusk", - "pop": 7894 - }, - { - "zip": "79830", - "city": "Alpine", - "county": "Brewster", - "pop": 7860 - }, - { - "zip": "75789", - "city": "Troup", - "county": "Smith", - "pop": 7806 - }, - { - "zip": "76661", - "city": "Marlin", - "county": "Falls", - "pop": 7755 - }, - { - "zip": "76520", - "city": "Cameron", - "county": "Milam", - "pop": 7722 - }, - { - "zip": "76446", - "city": "Dublin", - "county": "Erath", - "pop": 7709 - }, - { - "zip": "75207", - "city": "Dallas", - "county": "Dallas", - "pop": 7702 - }, - { - "zip": "75708", - "city": "Tyler", - "county": "Smith", - "pop": 7698 - }, - { - "zip": "79766", - "city": "Odessa", - "county": "Ector", - "pop": 7694 - }, - { - "zip": "79364", - "city": "Slaton", - "county": "Lubbock", - "pop": 7630 - }, - { - "zip": "75140", - "city": "Grand Saline", - "county": "Van Zandt", - "pop": 7595 - }, - { - "zip": "79510", - "city": "Clyde", - "county": "Callahan", - "pop": 7573 - }, - { - "zip": "77864", - "city": "Madisonville", - "county": "Madison", - "pop": 7562 - }, - { - "zip": "78257", - "city": "San Antonio", - "county": "Bexar", - "pop": 7538 - }, - { - "zip": "77486", - "city": "West Columbia", - "county": "Brazoria", - "pop": 7491 - }, - { - "zip": "79512", - "city": "Colorado City", - "county": "Mitchell", - "pop": 7456 - }, - { - "zip": "76043", - "city": "Glen Rose", - "county": "Somervell", - "pop": 7440 - }, - { - "zip": "76634", - "city": "Clifton", - "county": "Bosque", - "pop": 7431 - }, - { - "zip": "75135", - "city": "Caddo Mills", - "county": "Hunt", - "pop": 7363 - }, - { - "zip": "78013", - "city": "Comfort", - "county": "Kendall", - "pop": 7312 - }, - { - "zip": "79201", - "city": "Childress", - "county": "Childress", - "pop": 7288 - }, - { - "zip": "75657", - "city": "Jefferson", - "county": "Marion", - "pop": 7261 - }, - { - "zip": "79323", - "city": "Denver City", - "county": "Yoakum", - "pop": 7252 - }, - { - "zip": "79347", - "city": "Muleshoe", - "county": "Bailey", - "pop": 7202 - }, - { - "zip": "78722", - "city": "Austin", - "county": "Travis", - "pop": 7180 - }, - { - "zip": "78355", - "city": "Falfurrias", - "county": "Brooks", - "pop": 7168 - }, - { - "zip": "78119", - "city": "Kenedy", - "county": "Karnes", - "pop": 7160 - }, - { - "zip": "75765", - "city": "Hawkins", - "county": "Wood", - "pop": 7157 - }, - { - "zip": "77465", - "city": "Palacios", - "county": "Matagorda", - "pop": 7151 - }, - { - "zip": "78583", - "city": "Rio Hondo", - "county": "Cameron", - "pop": 7137 - }, - { - "zip": "79821", - "city": "Anthony", - "county": "El Paso", - "pop": 7136 - }, - { - "zip": "75693", - "city": "White Oak", - "county": "Gregg", - "pop": 7076 - }, - { - "zip": "79104", - "city": "Amarillo", - "county": "Potter", - "pop": 7019 - }, - { - "zip": "79406", - "city": "Lubbock", - "county": "Lubbock", - "pop": 7017 - }, - { - "zip": "79411", - "city": "Lubbock", - "county": "Lubbock", - "pop": 7012 - }, - { - "zip": "76258", - "city": "Pilot Point", - "county": "Denton", - "pop": 7010 - }, - { - "zip": "75752", - "city": "Athens", - "county": "Henderson", - "pop": 6998 - }, - { - "zip": "79745", - "city": "Kermit", - "county": "Winkler", - "pop": 6984 - }, - { - "zip": "76642", - "city": "Groesbeck", - "county": "Limestone", - "pop": 6949 - }, - { - "zip": "78266", - "city": "San Antonio", - "county": "Comal", - "pop": 6913 - }, - { - "zip": "78124", - "city": "Marion", - "county": "Guadalupe", - "pop": 6913 - }, - { - "zip": "76023", - "city": "Boyd", - "county": "Wise", - "pop": 6909 - }, - { - "zip": "76825", - "city": "Brady", - "county": "Mcculloch", - "pop": 6908 - }, - { - "zip": "78236", - "city": "San Antonio", - "county": "Bexar", - "pop": 6896 - }, - { - "zip": "78002", - "city": "Atascosa", - "county": "Bexar", - "pop": 6833 - }, - { - "zip": "75114", - "city": "Crandall", - "county": "Kaufman", - "pop": 6829 - }, - { - "zip": "78934", - "city": "Columbus", - "county": "Colorado", - "pop": 6816 - }, - { - "zip": "78052", - "city": "Lytle", - "county": "Atascosa", - "pop": 6769 - }, - { - "zip": "77859", - "city": "Hearne", - "county": "Robertson", - "pop": 6750 - }, - { - "zip": "75147", - "city": "Mabank", - "county": "Kaufman", - "pop": 6636 - }, - { - "zip": "75754", - "city": "Ben Wheeler", - "county": "Van Zandt", - "pop": 6627 - }, - { - "zip": "79339", - "city": "Littlefield", - "county": "Lamb", - "pop": 6617 - }, - { - "zip": "75161", - "city": "Terrell", - "county": "Kaufman", - "pop": 6529 - }, - { - "zip": "77446", - "city": "Prairie View", - "county": "Waller", - "pop": 6520 - }, - { - "zip": "75860", - "city": "Teague", - "county": "Freestone", - "pop": 6516 - }, - { - "zip": "75457", - "city": "Mount Vernon", - "county": "Franklin", - "pop": 6501 - }, - { - "zip": "78101", - "city": "Adkins", - "county": "Bexar", - "pop": 6465 - }, - { - "zip": "78026", - "city": "Jourdanton", - "county": "Atascosa", - "pop": 6452 - }, - { - "zip": "77362", - "city": "Pinehurst", - "county": "Montgomery", - "pop": 6435 - }, - { - "zip": "79908", - "city": "El Paso", - "county": "El Paso", - "pop": 6422 - }, - { - "zip": "75840", - "city": "Fairfield", - "county": "Freestone", - "pop": 6340 - }, - { - "zip": "76691", - "city": "West", - "county": "Mclennan", - "pop": 6333 - }, - { - "zip": "75125", - "city": "Ferris", - "county": "Ellis", - "pop": 6326 - }, - { - "zip": "75182", - "city": "Sunnyvale", - "county": "Dallas", - "pop": 6325 - }, - { - "zip": "78643", - "city": "Llano", - "county": "Llano", - "pop": 6298 - }, - { - "zip": "78657", - "city": "Marble Falls", - "county": "Burnet", - "pop": 6277 - }, - { - "zip": "78605", - "city": "Bertram", - "county": "Burnet", - "pop": 6275 - }, - { - "zip": "75948", - "city": "Hemphill", - "county": "Sabine", - "pop": 6268 - }, - { - "zip": "75440", - "city": "Emory", - "county": "Rains", - "pop": 6258 - }, - { - "zip": "75763", - "city": "Frankston", - "county": "Anderson", - "pop": 6247 - }, - { - "zip": "76050", - "city": "Grandview", - "county": "Johnson", - "pop": 6212 - }, - { - "zip": "76559", - "city": "Nolanville", - "county": "Bell", - "pop": 6211 - }, - { - "zip": "78203", - "city": "San Antonio", - "county": "Bexar", - "pop": 6180 - }, - { - "zip": "79838", - "city": "Fabens", - "county": "El Paso", - "pop": 6171 - }, - { - "zip": "75972", - "city": "San Augustine", - "county": "San Augustine", - "pop": 6169 - }, - { - "zip": "77665", - "city": "Winnie", - "county": "Chambers", - "pop": 6152 - }, - { - "zip": "78069", - "city": "Somerset", - "county": "Bexar", - "pop": 6115 - }, - { - "zip": "76458", - "city": "Jacksboro", - "county": "Jack", - "pop": 6111 - }, - { - "zip": "75603", - "city": "Longview", - "county": "Gregg", - "pop": 6100 - }, - { - "zip": "78017", - "city": "Dilley", - "county": "Frio", - "pop": 6074 - }, - { - "zip": "76259", - "city": "Ponder", - "county": "Denton", - "pop": 6045 - }, - { - "zip": "79121", - "city": "Amarillo", - "county": "Randall", - "pop": 6002 - }, - { - "zip": "78014", - "city": "Cotulla", - "county": "La Salle", - "pop": 5999 - }, - { - "zip": "78372", - "city": "Orange Grove", - "county": "Jim Wells", - "pop": 5971 - }, - { - "zip": "75844", - "city": "Grapeland", - "county": "Houston", - "pop": 5968 - }, - { - "zip": "75148", - "city": "Malakoff", - "county": "Henderson", - "pop": 5961 - }, - { - "zip": "78595", - "city": "Sullivan City", - "county": "Hidalgo", - "pop": 5959 - }, - { - "zip": "75839", - "city": "Elkhart", - "county": "Anderson", - "pop": 5927 - }, - { - "zip": "78593", - "city": "Santa Rosa", - "county": "Cameron", - "pop": 5895 - }, - { - "zip": "79356", - "city": "Post", - "county": "Garza", - "pop": 5893 - }, - { - "zip": "79836", - "city": "Clint", - "county": "El Paso", - "pop": 5891 - }, - { - "zip": "77963", - "city": "Goliad", - "county": "Goliad", - "pop": 5855 - }, - { - "zip": "78579", - "city": "Progreso", - "county": "Hidalgo", - "pop": 5836 - }, - { - "zip": "76437", - "city": "Cisco", - "county": "Eastland", - "pop": 5818 - }, - { - "zip": "76155", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 5813 - }, - { - "zip": "79911", - "city": "El Paso", - "county": "El Paso", - "pop": 5794 - }, - { - "zip": "76537", - "city": "Jarrell", - "county": "Williamson", - "pop": 5782 - }, - { - "zip": "75141", - "city": "Hutchins", - "county": "Dallas", - "pop": 5782 - }, - { - "zip": "78384", - "city": "San Diego", - "county": "Duval", - "pop": 5739 - }, - { - "zip": "78956", - "city": "Schulenburg", - "county": "Fayette", - "pop": 5685 - }, - { - "zip": "79363", - "city": "Shallowater", - "county": "Lubbock", - "pop": 5678 - }, - { - "zip": "77517", - "city": "Santa Fe", - "county": "Galveston", - "pop": 5677 - }, - { - "zip": "76073", - "city": "Paradise", - "county": "Wise", - "pop": 5656 - }, - { - "zip": "77879", - "city": "Somerville", - "county": "Burleson", - "pop": 5621 - }, - { - "zip": "76059", - "city": "Keene", - "county": "Johnson", - "pop": 5601 - }, - { - "zip": "77358", - "city": "New Waverly", - "county": "Walker", - "pop": 5565 - }, - { - "zip": "78606", - "city": "Blanco", - "county": "Blanco", - "pop": 5547 - }, - { - "zip": "78059", - "city": "Natalia", - "county": "Medina", - "pop": 5545 - }, - { - "zip": "75831", - "city": "Buffalo", - "county": "Leon", - "pop": 5529 - }, - { - "zip": "75638", - "city": "Daingerfield", - "county": "Morris", - "pop": 5505 - }, - { - "zip": "79088", - "city": "Tulia", - "county": "Swisher", - "pop": 5394 - }, - { - "zip": "78652", - "city": "Manchaca", - "county": "Travis", - "pop": 5374 - }, - { - "zip": "76557", - "city": "Moody", - "county": "Mclennan", - "pop": 5331 - }, - { - "zip": "77659", - "city": "Sour Lake", - "county": "Hardin", - "pop": 5326 - }, - { - "zip": "78361", - "city": "Hebbronville", - "county": "Jim Hogg", - "pop": 5320 - }, - { - "zip": "76255", - "city": "Nocona", - "county": "Montague", - "pop": 5311 - }, - { - "zip": "76834", - "city": "Coleman", - "county": "Coleman", - "pop": 5310 - }, - { - "zip": "79035", - "city": "Friona", - "county": "Parmer", - "pop": 5307 - }, - { - "zip": "79906", - "city": "El Paso", - "county": "El Paso", - "pop": 5295 - }, - { - "zip": "76633", - "city": "China Spring", - "county": "Mclennan", - "pop": 5290 - }, - { - "zip": "78401", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 5265 - }, - { - "zip": "75939", - "city": "Corrigan", - "county": "Polk", - "pop": 5260 - }, - { - "zip": "79536", - "city": "Merkel", - "county": "Taylor", - "pop": 5258 - }, - { - "zip": "76802", - "city": "Early", - "county": "Brown", - "pop": 5251 - }, - { - "zip": "77856", - "city": "Franklin", - "county": "Robertson", - "pop": 5246 - }, - { - "zip": "76579", - "city": "Troy", - "county": "Bell", - "pop": 5223 - }, - { - "zip": "76448", - "city": "Eastland", - "county": "Eastland", - "pop": 5196 - }, - { - "zip": "75152", - "city": "Palmer", - "county": "Ellis", - "pop": 5195 - }, - { - "zip": "79036", - "city": "Fritch", - "county": "Hutchinson", - "pop": 5184 - }, - { - "zip": "75755", - "city": "Big Sandy", - "county": "Upshur", - "pop": 5178 - }, - { - "zip": "75459", - "city": "Howe", - "county": "Grayson", - "pop": 5156 - }, - { - "zip": "78962", - "city": "Weimar", - "county": "Colorado", - "pop": 5138 - }, - { - "zip": "77514", - "city": "Anahuac", - "county": "Chambers", - "pop": 5127 - }, - { - "zip": "75559", - "city": "De Kalb", - "county": "Bowie", - "pop": 5122 - }, - { - "zip": "77360", - "city": "Onalaska", - "county": "Polk", - "pop": 5115 - }, - { - "zip": "75491", - "city": "Whitewright", - "county": "Grayson", - "pop": 5064 - }, - { - "zip": "78390", - "city": "Taft", - "county": "San Patricio", - "pop": 5059 - }, - { - "zip": "78234", - "city": "San Antonio", - "county": "Bexar", - "pop": 4965 - }, - { - "zip": "75410", - "city": "Alba", - "county": "Wood", - "pop": 4954 - }, - { - "zip": "75851", - "city": "Lovelady", - "county": "Houston", - "pop": 4954 - }, - { - "zip": "78370", - "city": "Odem", - "county": "San Patricio", - "pop": 4952 - }, - { - "zip": "75561", - "city": "Hooks", - "county": "Bowie", - "pop": 4939 - }, - { - "zip": "75966", - "city": "Newton", - "county": "Newton", - "pop": 4920 - }, - { - "zip": "78025", - "city": "Ingram", - "county": "Kerr", - "pop": 4918 - }, - { - "zip": "78160", - "city": "Stockdale", - "county": "Wilson", - "pop": 4918 - }, - { - "zip": "78208", - "city": "San Antonio", - "county": "Bexar", - "pop": 4913 - }, - { - "zip": "75640", - "city": "Diana", - "county": "Upshur", - "pop": 4859 - }, - { - "zip": "78560", - "city": "La Joya", - "county": "Hidalgo", - "pop": 4847 - }, - { - "zip": "75567", - "city": "Maud", - "county": "Bowie", - "pop": 4824 - }, - { - "zip": "79027", - "city": "Dimmitt", - "county": "Castro", - "pop": 4794 - }, - { - "zip": "79731", - "city": "Crane", - "county": "Crane", - "pop": 4772 - }, - { - "zip": "77050", - "city": "Houston", - "county": "Harris", - "pop": 4741 - }, - { - "zip": "77434", - "city": "Eagle Lake", - "county": "Colorado", - "pop": 4740 - }, - { - "zip": "75709", - "city": "Tyler", - "county": "Smith", - "pop": 4731 - }, - { - "zip": "76531", - "city": "Hamilton", - "county": "Hamilton", - "pop": 4728 - }, - { - "zip": "76365", - "city": "Henrietta", - "county": "Clay", - "pop": 4688 - }, - { - "zip": "75452", - "city": "Leonard", - "county": "Fannin", - "pop": 4650 - }, - { - "zip": "78947", - "city": "Lexington", - "county": "Lee", - "pop": 4634 - }, - { - "zip": "77485", - "city": "Wallis", - "county": "Austin", - "pop": 4627 - }, - { - "zip": "75172", - "city": "Wilmer", - "county": "Dallas", - "pop": 4619 - }, - { - "zip": "76071", - "city": "Newark", - "county": "Wise", - "pop": 4589 - }, - { - "zip": "75226", - "city": "Dallas", - "county": "Dallas", - "pop": 4579 - }, - { - "zip": "76821", - "city": "Ballinger", - "county": "Runnels", - "pop": 4561 - }, - { - "zip": "75563", - "city": "Linden", - "county": "Cass", - "pop": 4528 - }, - { - "zip": "78343", - "city": "Bishop", - "county": "Nueces", - "pop": 4526 - }, - { - "zip": "78619", - "city": "Driftwood", - "county": "Hays", - "pop": 4505 - }, - { - "zip": "79782", - "city": "Stanton", - "county": "Martin", - "pop": 4497 - }, - { - "zip": "75756", - "city": "Brownsboro", - "county": "Henderson", - "pop": 4450 - }, - { - "zip": "78263", - "city": "San Antonio", - "county": "Bexar", - "pop": 4440 - }, - { - "zip": "75692", - "city": "Waskom", - "county": "Harrison", - "pop": 4414 - }, - { - "zip": "75173", - "city": "Nevada", - "county": "Collin", - "pop": 4409 - }, - { - "zip": "76044", - "city": "Godley", - "county": "Johnson", - "pop": 4401 - }, - { - "zip": "75166", - "city": "Lavon", - "county": "Collin", - "pop": 4395 - }, - { - "zip": "78373", - "city": "Port Aransas", - "county": "Nueces", - "pop": 4393 - }, - { - "zip": "75426", - "city": "Clarksville", - "county": "Red River", - "pop": 4393 - }, - { - "zip": "79845", - "city": "Presidio", - "county": "Presidio", - "pop": 4384 - }, - { - "zip": "75109", - "city": "Corsicana", - "county": "Navarro", - "pop": 4384 - }, - { - "zip": "78071", - "city": "Three Rivers", - "county": "Live Oak", - "pop": 4372 - }, - { - "zip": "76877", - "city": "San Saba", - "county": "San Saba", - "pop": 4371 - }, - { - "zip": "78562", - "city": "La Villa", - "county": "Hidalgo", - "pop": 4341 - }, - { - "zip": "75656", - "city": "Hughes Springs", - "county": "Cass", - "pop": 4331 - }, - { - "zip": "75691", - "city": "Tatum", - "county": "Rusk", - "pop": 4320 - }, - { - "zip": "78383", - "city": "Sandia", - "county": "Jim Wells", - "pop": 4296 - }, - { - "zip": "78118", - "city": "Karnes City", - "county": "Karnes", - "pop": 4264 - }, - { - "zip": "76305", - "city": "Wichita Falls", - "county": "Wichita", - "pop": 4261 - }, - { - "zip": "75124", - "city": "Eustace", - "county": "Henderson", - "pop": 4255 - }, - { - "zip": "75158", - "city": "Scurry", - "county": "Kaufman", - "pop": 4191 - }, - { - "zip": "76272", - "city": "Valley View", - "county": "Cooke", - "pop": 4116 - }, - { - "zip": "78569", - "city": "Lyford", - "county": "Willacy", - "pop": 4101 - }, - { - "zip": "78417", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 4095 - }, - { - "zip": "75472", - "city": "Point", - "county": "Rains", - "pop": 4087 - }, - { - "zip": "78022", - "city": "George West", - "county": "Live Oak", - "pop": 4033 - }, - { - "zip": "75975", - "city": "Timpson", - "county": "Shelby", - "pop": 4031 - }, - { - "zip": "77435", - "city": "East Bernard", - "county": "Wharton", - "pop": 4031 - }, - { - "zip": "75852", - "city": "Midway", - "county": "Madison", - "pop": 4017 - }, - { - "zip": "76457", - "city": "Hico", - "county": "Hamilton", - "pop": 4013 - }, - { - "zip": "75925", - "city": "Alto", - "county": "Cherokee", - "pop": 4002 - }, - { - "zip": "75117", - "city": "Edgewood", - "county": "Van Zandt", - "pop": 3984 - }, - { - "zip": "77984", - "city": "Shiner", - "county": "Lavaca", - "pop": 3972 - }, - { - "zip": "79014", - "city": "Canadian", - "county": "Hemphill", - "pop": 3964 - }, - { - "zip": "79081", - "city": "Spearman", - "county": "Hansford", - "pop": 3918 - }, - { - "zip": "75497", - "city": "Yantis", - "county": "Wood", - "pop": 3907 - }, - { - "zip": "75572", - "city": "Queen City", - "county": "Cass", - "pop": 3896 - }, - { - "zip": "76950", - "city": "Sonora", - "county": "Sutton", - "pop": 3867 - }, - { - "zip": "75790", - "city": "Van", - "county": "Van Zandt", - "pop": 3864 - }, - { - "zip": "76374", - "city": "Olney", - "county": "Young", - "pop": 3858 - }, - { - "zip": "75969", - "city": "Pollok", - "county": "Angelina", - "pop": 3854 - }, - { - "zip": "76932", - "city": "Big Lake", - "county": "Reagan", - "pop": 3819 - }, - { - "zip": "76849", - "city": "Junction", - "county": "Kimble", - "pop": 3785 - }, - { - "zip": "75750", - "city": "Arp", - "county": "Smith", - "pop": 3766 - }, - { - "zip": "76462", - "city": "Lipan", - "county": "Hood", - "pop": 3762 - }, - { - "zip": "78377", - "city": "Refugio", - "county": "Refugio", - "pop": 3745 - }, - { - "zip": "75946", - "city": "Garrison", - "county": "Nacogdoches", - "pop": 3744 - }, - { - "zip": "75496", - "city": "Wolfe City", - "county": "Hunt", - "pop": 3739 - }, - { - "zip": "76856", - "city": "Mason", - "county": "Mason", - "pop": 3735 - }, - { - "zip": "75683", - "city": "Ore City", - "county": "Upshur", - "pop": 3709 - }, - { - "zip": "78164", - "city": "Yorktown", - "county": "De Witt", - "pop": 3706 - }, - { - "zip": "75473", - "city": "Powderly", - "county": "Lamar", - "pop": 3688 - }, - { - "zip": "76664", - "city": "Mart", - "county": "Mclennan", - "pop": 3688 - }, - { - "zip": "75144", - "city": "Kerens", - "county": "Navarro", - "pop": 3668 - }, - { - "zip": "78832", - "city": "Brackettville", - "county": "Kinney", - "pop": 3659 - }, - { - "zip": "77962", - "city": "Ganado", - "county": "Jackson", - "pop": 3654 - }, - { - "zip": "76431", - "city": "Chico", - "county": "Wise", - "pop": 3630 - }, - { - "zip": "76380", - "city": "Seymour", - "county": "Baylor", - "pop": 3630 - }, - { - "zip": "79013", - "city": "Cactus", - "county": "Moore", - "pop": 3618 - }, - { - "zip": "79521", - "city": "Haskell", - "county": "Haskell", - "pop": 3611 - }, - { - "zip": "76470", - "city": "Ranger", - "county": "Eastland", - "pop": 3580 - }, - { - "zip": "76640", - "city": "Elm Mott", - "county": "Mclennan", - "pop": 3567 - }, - { - "zip": "76689", - "city": "Valley Mills", - "county": "Bosque", - "pop": 3565 - }, - { - "zip": "78113", - "city": "Falls City", - "county": "Karnes", - "pop": 3558 - }, - { - "zip": "78636", - "city": "Johnson City", - "county": "Blanco", - "pop": 3555 - }, - { - "zip": "76360", - "city": "Electra", - "county": "Wichita", - "pop": 3545 - }, - { - "zip": "76844", - "city": "Goldthwaite", - "county": "Mills", - "pop": 3534 - }, - { - "zip": "75432", - "city": "Cooper", - "county": "Delta", - "pop": 3504 - }, - { - "zip": "78010", - "city": "Center Point", - "county": "Kerr", - "pop": 3493 - }, - { - "zip": "79068", - "city": "Panhandle", - "county": "Carson", - "pop": 3489 - }, - { - "zip": "78140", - "city": "Nixon", - "county": "Gonzales", - "pop": 3486 - }, - { - "zip": "75569", - "city": "Nash", - "county": "Bowie", - "pop": 3464 - }, - { - "zip": "79567", - "city": "Winters", - "county": "Runnels", - "pop": 3432 - }, - { - "zip": "76943", - "city": "Ozona", - "county": "Crockett", - "pop": 3420 - }, - { - "zip": "75414", - "city": "Bells", - "county": "Grayson", - "pop": 3416 - }, - { - "zip": "79311", - "city": "Abernathy", - "county": "Hale", - "pop": 3415 - }, - { - "zip": "75974", - "city": "Tenaha", - "county": "Shelby", - "pop": 3410 - }, - { - "zip": "79562", - "city": "Tuscola", - "county": "Taylor", - "pop": 3371 - }, - { - "zip": "79504", - "city": "Baird", - "county": "Callahan", - "pop": 3366 - }, - { - "zip": "76444", - "city": "De Leon", - "county": "Comanche", - "pop": 3339 - }, - { - "zip": "79607", - "city": "Dyess Afb", - "county": "Taylor", - "pop": 3308 - }, - { - "zip": "79235", - "city": "Floydada", - "county": "Floyd", - "pop": 3298 - }, - { - "zip": "76233", - "city": "Collinsville", - "county": "Grayson", - "pop": 3294 - }, - { - "zip": "79553", - "city": "Stamford", - "county": "Jones", - "pop": 3270 - }, - { - "zip": "76651", - "city": "Italy", - "county": "Ellis", - "pop": 3250 - }, - { - "zip": "75631", - "city": "Beckville", - "county": "Panola", - "pop": 3248 - }, - { - "zip": "75962", - "city": "Nacogdoches", - "county": "Nacogdoches", - "pop": 3242 - }, - { - "zip": "75155", - "city": "Rice", - "county": "Ellis", - "pop": 3233 - }, - { - "zip": "77702", - "city": "Beaumont", - "county": "Jefferson", - "pop": 3225 - }, - { - "zip": "77968", - "city": "Inez", - "county": "Victoria", - "pop": 3214 - }, - { - "zip": "76577", - "city": "Thorndale", - "county": "Milam", - "pop": 3187 - }, - { - "zip": "77831", - "city": "Bedias", - "county": "Grimes", - "pop": 3179 - }, - { - "zip": "75446", - "city": "Honey Grove", - "county": "Fannin", - "pop": 3178 - }, - { - "zip": "75571", - "city": "Omaha", - "county": "Morris", - "pop": 3134 - }, - { - "zip": "79329", - "city": "Idalou", - "county": "Lubbock", - "pop": 3112 - }, - { - "zip": "75423", - "city": "Celeste", - "county": "Hunt", - "pop": 3110 - }, - { - "zip": "77830", - "city": "Anderson", - "county": "Grimes", - "pop": 3101 - }, - { - "zip": "75661", - "city": "Karnack", - "county": "Harrison", - "pop": 3094 - }, - { - "zip": "75422", - "city": "Campbell", - "county": "Hunt", - "pop": 3088 - }, - { - "zip": "75855", - "city": "Oakwood", - "county": "Leon", - "pop": 3078 - }, - { - "zip": "75416", - "city": "Blossom", - "county": "Lamar", - "pop": 3070 - }, - { - "zip": "76487", - "city": "Poolville", - "county": "Parker", - "pop": 3058 - }, - { - "zip": "76534", - "city": "Holland", - "county": "Bell", - "pop": 3046 - }, - { - "zip": "75453", - "city": "Lone Oak", - "county": "Hunt", - "pop": 3046 - }, - { - "zip": "76524", - "city": "Eddy", - "county": "Mclennan", - "pop": 3042 - }, - { - "zip": "79359", - "city": "Seagraves", - "county": "Gaines", - "pop": 3025 - }, - { - "zip": "75424", - "city": "Blue Ridge", - "county": "Collin", - "pop": 3024 - }, - { - "zip": "76823", - "city": "Bangs", - "county": "Brown", - "pop": 3024 - }, - { - "zip": "75792", - "city": "Winona", - "county": "Smith", - "pop": 3002 - }, - { - "zip": "76936", - "city": "Eldorado", - "county": "Schleicher", - "pop": 2983 - }, - { - "zip": "79916", - "city": "El Paso", - "county": "El Paso", - "pop": 2979 - }, - { - "zip": "77335", - "city": "Goodrich", - "county": "Polk", - "pop": 2972 - }, - { - "zip": "76527", - "city": "Florence", - "county": "Williamson", - "pop": 2969 - }, - { - "zip": "78631", - "city": "Harper", - "county": "Gillespie", - "pop": 2964 - }, - { - "zip": "75846", - "city": "Jewett", - "county": "Leon", - "pop": 2957 - }, - { - "zip": "79252", - "city": "Quanah", - "county": "Hardeman", - "pop": 2954 - }, - { - "zip": "78375", - "city": "Premont", - "county": "Jim Wells", - "pop": 2951 - }, - { - "zip": "75778", - "city": "Murchison", - "county": "Henderson", - "pop": 2947 - }, - { - "zip": "75833", - "city": "Centerville", - "county": "Leon", - "pop": 2944 - }, - { - "zip": "77664", - "city": "Warren", - "county": "Tyler", - "pop": 2939 - }, - { - "zip": "75845", - "city": "Groveton", - "county": "Trinity", - "pop": 2926 - }, - { - "zip": "75639", - "city": "De Berry", - "county": "Panola", - "pop": 2926 - }, - { - "zip": "75770", - "city": "Larue", - "county": "Henderson", - "pop": 2925 - }, - { - "zip": "79373", - "city": "Tahoka", - "county": "Lynn", - "pop": 2924 - }, - { - "zip": "78215", - "city": "San Antonio", - "county": "Bexar", - "pop": 2915 - }, - { - "zip": "76638", - "city": "Crawford", - "county": "Mclennan", - "pop": 2910 - }, - { - "zip": "76648", - "city": "Hubbard", - "county": "Hill", - "pop": 2887 - }, - { - "zip": "78357", - "city": "Freer", - "county": "Duval", - "pop": 2886 - }, - { - "zip": "75251", - "city": "Dallas", - "county": "Dallas", - "pop": 2861 - }, - { - "zip": "79226", - "city": "Clarendon", - "county": "Donley", - "pop": 2861 - }, - { - "zip": "76225", - "city": "Alvord", - "county": "Wise", - "pop": 2857 - }, - { - "zip": "77363", - "city": "Plantersville", - "county": "Grimes", - "pop": 2853 - }, - { - "zip": "76682", - "city": "Riesel", - "county": "Mclennan", - "pop": 2846 - }, - { - "zip": "78655", - "city": "Martindale", - "county": "Caldwell", - "pop": 2845 - }, - { - "zip": "75973", - "city": "Shelbyville", - "county": "Shelby", - "pop": 2828 - }, - { - "zip": "78597", - "city": "South Padre Island", - "county": "Cameron", - "pop": 2818 - }, - { - "zip": "76055", - "city": "Itasca", - "county": "Hill", - "pop": 2811 - }, - { - "zip": "75433", - "city": "Cumby", - "county": "Hopkins", - "pop": 2808 - }, - { - "zip": "75705", - "city": "Tyler", - "county": "Smith", - "pop": 2762 - }, - { - "zip": "75246", - "city": "Dallas", - "county": "Dallas", - "pop": 2760 - }, - { - "zip": "79041", - "city": "Hale Center", - "county": "Hale", - "pop": 2754 - }, - { - "zip": "77871", - "city": "Normangee", - "county": "Leon", - "pop": 2738 - }, - { - "zip": "78409", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 2725 - }, - { - "zip": "75163", - "city": "Trinidad", - "county": "Henderson", - "pop": 2716 - }, - { - "zip": "78941", - "city": "Flatonia", - "county": "Fayette", - "pop": 2709 - }, - { - "zip": "78407", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 2704 - }, - { - "zip": "76570", - "city": "Rosebud", - "county": "Falls", - "pop": 2700 - }, - { - "zip": "77420", - "city": "Boling", - "county": "Wharton", - "pop": 2695 - }, - { - "zip": "75417", - "city": "Bogata", - "county": "Red River", - "pop": 2688 - }, - { - "zip": "76569", - "city": "Rogers", - "county": "Bell", - "pop": 2681 - }, - { - "zip": "75058", - "city": "Gunter", - "county": "Grayson", - "pop": 2666 - }, - { - "zip": "79501", - "city": "Anson", - "county": "Jones", - "pop": 2659 - }, - { - "zip": "76597", - "city": "Gatesville", - "county": "Coryell", - "pop": 2657 - }, - { - "zip": "79095", - "city": "Wellington", - "county": "Collingsworth", - "pop": 2657 - }, - { - "zip": "76476", - "city": "Tolar", - "county": "Hood", - "pop": 2628 - }, - { - "zip": "76252", - "city": "Muenster", - "county": "Cooke", - "pop": 2624 - }, - { - "zip": "79853", - "city": "Tornillo", - "county": "El Paso", - "pop": 2621 - }, - { - "zip": "76066", - "city": "Millsap", - "county": "Parker", - "pop": 2621 - }, - { - "zip": "79079", - "city": "Shamrock", - "county": "Wheeler", - "pop": 2617 - }, - { - "zip": "78659", - "city": "Paige", - "county": "Bastrop", - "pop": 2616 - }, - { - "zip": "75938", - "city": "Colmesneil", - "county": "Tyler", - "pop": 2585 - }, - { - "zip": "76908", - "city": "Goodfellow Afb", - "county": "Tom Green", - "pop": 2554 - }, - { - "zip": "77417", - "city": "Beasley", - "county": "Fort Bend", - "pop": 2550 - }, - { - "zip": "77426", - "city": "Chappell Hill", - "county": "Washington", - "pop": 2524 - }, - { - "zip": "78940", - "city": "Fayetteville", - "county": "Fayette", - "pop": 2521 - }, - { - "zip": "76129", - "city": "Fort Worth", - "county": "Tarrant", - "pop": 2519 - }, - { - "zip": "76511", - "city": "Bartlett", - "county": "Bell", - "pop": 2505 - }, - { - "zip": "79525", - "city": "Hawley", - "county": "Jones", - "pop": 2498 - }, - { - "zip": "79064", - "city": "Olton", - "county": "Lamb", - "pop": 2495 - }, - { - "zip": "75490", - "city": "Trenton", - "county": "Fannin", - "pop": 2493 - }, - { - "zip": "75436", - "city": "Detroit", - "county": "Red River", - "pop": 2480 - }, - { - "zip": "79752", - "city": "Mc Camey", - "county": "Upton", - "pop": 2467 - }, - { - "zip": "75954", - "city": "Joaquin", - "county": "Shelby", - "pop": 2466 - }, - { - "zip": "79843", - "city": "Marfa", - "county": "Presidio", - "pop": 2456 - }, - { - "zip": "76656", - "city": "Lott", - "county": "Falls", - "pop": 2446 - }, - { - "zip": "76837", - "city": "Eden", - "county": "Concho", - "pop": 2440 - }, - { - "zip": "77865", - "city": "Marquez", - "county": "Leon", - "pop": 2440 - }, - { - "zip": "76449", - "city": "Graford", - "county": "Palo Pinto", - "pop": 2430 - }, - { - "zip": "76665", - "city": "Meridian", - "county": "Bosque", - "pop": 2417 - }, - { - "zip": "78656", - "city": "Maxwell", - "county": "Caldwell", - "pop": 2416 - }, - { - "zip": "79758", - "city": "Gardendale", - "county": "Ector", - "pop": 2403 - }, - { - "zip": "76554", - "city": "Little River", - "county": "Bell", - "pop": 2380 - }, - { - "zip": "75668", - "city": "Lone Star", - "county": "Morris", - "pop": 2371 - }, - { - "zip": "75630", - "city": "Avinger", - "county": "Cass", - "pop": 2370 - }, - { - "zip": "79245", - "city": "Memphis", - "county": "Hall", - "pop": 2346 - }, - { - "zip": "76599", - "city": "Gatesville", - "county": "Coryell", - "pop": 2339 - }, - { - "zip": "77835", - "city": "Burton", - "county": "Washington", - "pop": 2330 - }, - { - "zip": "75202", - "city": "Dallas", - "county": "Dallas", - "pop": 2312 - }, - { - "zip": "75486", - "city": "Sumner", - "county": "Lamar", - "pop": 2291 - }, - { - "zip": "76430", - "city": "Albany", - "county": "Shackelford", - "pop": 2288 - }, - { - "zip": "79241", - "city": "Lockney", - "county": "Floyd", - "pop": 2270 - }, - { - "zip": "77534", - "city": "Danbury", - "county": "Brazoria", - "pop": 2256 - }, - { - "zip": "75980", - "city": "Zavalla", - "county": "Angelina", - "pop": 2254 - }, - { - "zip": "75643", - "city": "Gary", - "county": "Panola", - "pop": 2253 - }, - { - "zip": "75568", - "city": "Naples", - "county": "Morris", - "pop": 2238 - }, - { - "zip": "79086", - "city": "Sunray", - "county": "Moore", - "pop": 2228 - }, - { - "zip": "79346", - "city": "Morton", - "county": "Cochran", - "pop": 2225 - }, - { - "zip": "76035", - "city": "Cresson", - "county": "Hood", - "pop": 2211 - }, - { - "zip": "75931", - "city": "Brookeland", - "county": "Sabine", - "pop": 2203 - }, - { - "zip": "77861", - "city": "Iola", - "county": "Grimes", - "pop": 2203 - }, - { - "zip": "78662", - "city": "Red Rock", - "county": "Bastrop", - "pop": 2201 - }, - { - "zip": "77455", - "city": "Louise", - "county": "Wharton", - "pop": 2194 - }, - { - "zip": "79325", - "city": "Farwell", - "county": "Parmer", - "pop": 2184 - }, - { - "zip": "78881", - "city": "Sabinal", - "county": "Uvalde", - "pop": 2184 - }, - { - "zip": "78123", - "city": "Mc Queeney", - "county": "Guadalupe", - "pop": 2177 - }, - { - "zip": "78152", - "city": "Saint Hedwig", - "county": "Bexar", - "pop": 2171 - }, - { - "zip": "78393", - "city": "Woodsboro", - "county": "Refugio", - "pop": 2161 - }, - { - "zip": "79734", - "city": "Fort Davis", - "county": "Jeff Davis", - "pop": 2145 - }, - { - "zip": "79839", - "city": "Fort Hancock", - "county": "Hudspeth", - "pop": 2141 - }, - { - "zip": "78056", - "city": "Mico", - "county": "Medina", - "pop": 2138 - }, - { - "zip": "75859", - "city": "Streetman", - "county": "Freestone", - "pop": 2134 - }, - { - "zip": "78638", - "city": "Kingsbury", - "county": "Guadalupe", - "pop": 2133 - }, - { - "zip": "75554", - "city": "Avery", - "county": "Red River", - "pop": 2131 - }, - { - "zip": "75681", - "city": "Mount Enterprise", - "county": "Rusk", - "pop": 2128 - }, - { - "zip": "79357", - "city": "Ralls", - "county": "Crosby", - "pop": 2123 - }, - { - "zip": "79084", - "city": "Stratford", - "county": "Sherman", - "pop": 2123 - }, - { - "zip": "75431", - "city": "Como", - "county": "Hopkins", - "pop": 2122 - }, - { - "zip": "79520", - "city": "Hamlin", - "county": "Jones", - "pop": 2121 - }, - { - "zip": "79111", - "city": "Amarillo", - "county": "Potter", - "pop": 2108 - }, - { - "zip": "79855", - "city": "Van Horn", - "county": "Culberson", - "pop": 2108 - }, - { - "zip": "75487", - "city": "Talco", - "county": "Franklin", - "pop": 2106 - }, - { - "zip": "75651", - "city": "Harleton", - "county": "Harrison", - "pop": 2100 - }, - { - "zip": "78959", - "city": "Waelder", - "county": "Gonzales", - "pop": 2097 - }, - { - "zip": "77430", - "city": "Damon", - "county": "Brazoria", - "pop": 2078 - }, - { - "zip": "79096", - "city": "Wheeler", - "county": "Wheeler", - "pop": 2071 - }, - { - "zip": "76351", - "city": "Archer City", - "county": "Archer", - "pop": 2068 - }, - { - "zip": "75760", - "city": "Cushing", - "county": "Nacogdoches", - "pop": 2066 - }, - { - "zip": "78873", - "city": "Leakey", - "county": "Real", - "pop": 2053 - }, - { - "zip": "77983", - "city": "Seadrift", - "county": "Calhoun", - "pop": 2045 - }, - { - "zip": "78147", - "city": "Poth", - "county": "Wilson", - "pop": 2035 - }, - { - "zip": "78406", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 2027 - }, - { - "zip": "79322", - "city": "Crosbyton", - "county": "Crosby", - "pop": 2022 - }, - { - "zip": "76624", - "city": "Axtell", - "county": "Mclennan", - "pop": 2015 - }, - { - "zip": "76859", - "city": "Menard", - "county": "Menard", - "pop": 2015 - }, - { - "zip": "78609", - "city": "Buchanan Dam", - "county": "Llano", - "pop": 1991 - }, - { - "zip": "78359", - "city": "Gregory", - "county": "San Patricio", - "pop": 1977 - }, - { - "zip": "79040", - "city": "Gruver", - "county": "Hansford", - "pop": 1962 - }, - { - "zip": "76270", - "city": "Sunset", - "county": "Montague", - "pop": 1958 - }, - { - "zip": "76127", - "city": "Naval Air Station/ Jrb", - "county": "Tarrant", - "pop": 1946 - }, - { - "zip": "76861", - "city": "Miles", - "county": "Runnels", - "pop": 1945 - }, - { - "zip": "78039", - "city": "La Coste", - "county": "Medina", - "pop": 1924 - }, - { - "zip": "79083", - "city": "Stinnett", - "county": "Hutchinson", - "pop": 1923 - }, - { - "zip": "77837", - "city": "Calvert", - "county": "Robertson", - "pop": 1922 - }, - { - "zip": "76443", - "city": "Cross Plains", - "county": "Callahan", - "pop": 1914 - }, - { - "zip": "76366", - "city": "Holliday", - "county": "Archer", - "pop": 1903 - }, - { - "zip": "76701", - "city": "Waco", - "county": "Mclennan", - "pop": 1895 - }, - { - "zip": "77564", - "city": "Hull", - "county": "Liberty", - "pop": 1888 - }, - { - "zip": "76518", - "city": "Buckholts", - "county": "Milam", - "pop": 1880 - }, - { - "zip": "77872", - "city": "North Zulch", - "county": "Madison", - "pop": 1879 - }, - { - "zip": "76687", - "city": "Thornton", - "county": "Limestone", - "pop": 1879 - }, - { - "zip": "79355", - "city": "Plains", - "county": "Yoakum", - "pop": 1877 - }, - { - "zip": "78389", - "city": "Skidmore", - "county": "Bee", - "pop": 1874 - }, - { - "zip": "76530", - "city": "Granger", - "county": "Williamson", - "pop": 1874 - }, - { - "zip": "79019", - "city": "Claude", - "county": "Armstrong", - "pop": 1871 - }, - { - "zip": "76454", - "city": "Gorman", - "county": "Eastland", - "pop": 1870 - }, - { - "zip": "78055", - "city": "Medina", - "county": "Bandera", - "pop": 1867 - }, - { - "zip": "79101", - "city": "Amarillo", - "county": "Potter", - "pop": 1851 - }, - { - "zip": "78341", - "city": "Benavides", - "county": "Duval", - "pop": 1844 - }, - { - "zip": "75847", - "city": "Kennard", - "county": "Houston", - "pop": 1843 - }, - { - "zip": "77650", - "city": "Port Bolivar", - "county": "Galveston", - "pop": 1835 - }, - { - "zip": "77364", - "city": "Pointblank", - "county": "San Jacinto", - "pop": 1828 - }, - { - "zip": "76064", - "city": "Maypearl", - "county": "Ellis", - "pop": 1818 - }, - { - "zip": "78950", - "city": "New Ulm", - "county": "Austin", - "pop": 1810 - }, - { - "zip": "77951", - "city": "Bloomington", - "county": "Victoria", - "pop": 1809 - }, - { - "zip": "76945", - "city": "Robert Lee", - "county": "Coke", - "pop": 1798 - }, - { - "zip": "76433", - "city": "Bluff Dale", - "county": "Erath", - "pop": 1796 - }, - { - "zip": "79546", - "city": "Rotan", - "county": "Fisher", - "pop": 1794 - }, - { - "zip": "76093", - "city": "Rio Vista", - "county": "Johnson", - "pop": 1792 - }, - { - "zip": "76271", - "city": "Tioga", - "county": "Grayson", - "pop": 1792 - }, - { - "zip": "76935", - "city": "Christoval", - "county": "Tom Green", - "pop": 1791 - }, - { - "zip": "75479", - "city": "Savoy", - "county": "Fannin", - "pop": 1786 - }, - { - "zip": "76471", - "city": "Rising Star", - "county": "Eastland", - "pop": 1785 - }, - { - "zip": "75930", - "city": "Bronson", - "county": "Sabine", - "pop": 1779 - }, - { - "zip": "77482", - "city": "Van Vleck", - "county": "Matagorda", - "pop": 1779 - }, - { - "zip": "79545", - "city": "Roscoe", - "county": "Nolan", - "pop": 1774 - }, - { - "zip": "76472", - "city": "Santo", - "county": "Palo Pinto", - "pop": 1761 - }, - { - "zip": "76857", - "city": "May", - "county": "Brown", - "pop": 1761 - }, - { - "zip": "79009", - "city": "Bovina", - "county": "Parmer", - "pop": 1754 - }, - { - "zip": "75932", - "city": "Burkeville", - "county": "Newton", - "pop": 1743 - }, - { - "zip": "79005", - "city": "Booker", - "county": "Lipscomb", - "pop": 1714 - }, - { - "zip": "78719", - "city": "Austin", - "county": "Travis", - "pop": 1709 - }, - { - "zip": "76673", - "city": "Mount Calm", - "county": "Hill", - "pop": 1706 - }, - { - "zip": "75127", - "city": "Fruitvale", - "county": "Van Zandt", - "pop": 1705 - }, - { - "zip": "79343", - "city": "Lorenzo", - "county": "Crosby", - "pop": 1700 - }, - { - "zip": "76878", - "city": "Santa Anna", - "county": "Coleman", - "pop": 1688 - }, - { - "zip": "78011", - "city": "Charlotte", - "county": "Atascosa", - "pop": 1688 - }, - { - "zip": "76629", - "city": "Bremond", - "county": "Robertson", - "pop": 1668 - }, - { - "zip": "78151", - "city": "Runge", - "county": "Karnes", - "pop": 1662 - }, - { - "zip": "75574", - "city": "Simms", - "county": "Bowie", - "pop": 1659 - }, - { - "zip": "75929", - "city": "Broaddus", - "county": "San Augustine", - "pop": 1649 - }, - { - "zip": "75968", - "city": "Pineland", - "county": "Sabine", - "pop": 1635 - }, - { - "zip": "78650", - "city": "Mc Dade", - "county": "Bastrop", - "pop": 1632 - }, - { - "zip": "78880", - "city": "Rocksprings", - "county": "Edwards", - "pop": 1626 - }, - { - "zip": "76671", - "city": "Morgan", - "county": "Bosque", - "pop": 1621 - }, - { - "zip": "79248", - "city": "Paducah", - "county": "Cottle", - "pop": 1621 - }, - { - "zip": "76632", - "city": "Chilton", - "county": "Falls", - "pop": 1613 - }, - { - "zip": "77975", - "city": "Moulton", - "county": "Lavaca", - "pop": 1609 - }, - { - "zip": "78872", - "city": "La Pryor", - "county": "Zavala", - "pop": 1608 - }, - { - "zip": "79370", - "city": "Spur", - "county": "Dickens", - "pop": 1594 - }, - { - "zip": "76798", - "city": "Waco", - "county": "Mclennan", - "pop": 1591 - }, - { - "zip": "75480", - "city": "Scroggins", - "county": "Franklin", - "pop": 1587 - }, - { - "zip": "75558", - "city": "Cookville", - "county": "Titus", - "pop": 1582 - }, - { - "zip": "75555", - "city": "Bivins", - "county": "Cass", - "pop": 1579 - }, - { - "zip": "79851", - "city": "Sierra Blanca", - "county": "Hudspeth", - "pop": 1576 - }, - { - "zip": "76641", - "city": "Frost", - "county": "Navarro", - "pop": 1575 - }, - { - "zip": "76245", - "city": "Gordonville", - "county": "Grayson", - "pop": 1569 - }, - { - "zip": "75132", - "city": "Fate", - "county": "Rockwall", - "pop": 1559 - }, - { - "zip": "78594", - "city": "Sebastian", - "county": "Willacy", - "pop": 1555 - }, - { - "zip": "79381", - "city": "Wilson", - "county": "Lynn", - "pop": 1548 - }, - { - "zip": "75471", - "city": "Pickton", - "county": "Hopkins", - "pop": 1531 - }, - { - "zip": "79313", - "city": "Anton", - "county": "Hockley", - "pop": 1528 - }, - { - "zip": "76636", - "city": "Covington", - "county": "Hill", - "pop": 1525 - }, - { - "zip": "76670", - "city": "Milford", - "county": "Ellis", - "pop": 1517 - }, - { - "zip": "79043", - "city": "Hart", - "county": "Castro", - "pop": 1514 - }, - { - "zip": "76264", - "city": "Sadler", - "county": "Grayson", - "pop": 1513 - }, - { - "zip": "76627", - "city": "Blum", - "county": "Hill", - "pop": 1511 - }, - { - "zip": "76556", - "city": "Milano", - "county": "Milam", - "pop": 1494 - }, - { - "zip": "76693", - "city": "Wortham", - "county": "Freestone", - "pop": 1492 - }, - { - "zip": "76578", - "city": "Thrall", - "county": "Williamson", - "pop": 1482 - }, - { - "zip": "77577", - "city": "Liverpool", - "county": "Brazoria", - "pop": 1481 - }, - { - "zip": "79529", - "city": "Knox City", - "county": "Knox", - "pop": 1480 - }, - { - "zip": "78235", - "city": "San Antonio", - "county": "Bexar", - "pop": 1476 - }, - { - "zip": "76265", - "city": "Saint Jo", - "county": "Montague", - "pop": 1472 - }, - { - "zip": "79508", - "city": "Buffalo Gap", - "county": "Taylor", - "pop": 1470 - }, - { - "zip": "78833", - "city": "Camp Wood", - "county": "Real", - "pop": 1463 - }, - { - "zip": "76853", - "city": "Lometa", - "county": "Lampasas", - "pop": 1456 - }, - { - "zip": "76941", - "city": "Mertzon", - "county": "Irion", - "pop": 1455 - }, - { - "zip": "78829", - "city": "Batesville", - "county": "Zavala", - "pop": 1448 - }, - { - "zip": "75943", - "city": "Douglass", - "county": "Nacogdoches", - "pop": 1442 - }, - { - "zip": "78205", - "city": "San Antonio", - "county": "Bexar", - "pop": 1441 - }, - { - "zip": "77622", - "city": "Hamshire", - "county": "Jefferson", - "pop": 1439 - }, - { - "zip": "77880", - "city": "Washington", - "county": "Washington", - "pop": 1438 - }, - { - "zip": "76679", - "city": "Purdon", - "county": "Navarro", - "pop": 1435 - }, - { - "zip": "79012", - "city": "Bushland", - "county": "Potter", - "pop": 1427 - }, - { - "zip": "79351", - "city": "Odonnell", - "county": "Lynn", - "pop": 1414 - }, - { - "zip": "78379", - "city": "Riviera", - "county": "Kleberg", - "pop": 1413 - }, - { - "zip": "79250", - "city": "Petersburg", - "county": "Hale", - "pop": 1401 - }, - { - "zip": "79371", - "city": "Sudan", - "county": "Lamb", - "pop": 1399 - }, - { - "zip": "76626", - "city": "Blooming Grove", - "county": "Navarro", - "pop": 1386 - }, - { - "zip": "77456", - "city": "Markham", - "county": "Matagorda", - "pop": 1384 - }, - { - "zip": "79031", - "city": "Earth", - "county": "Lamb", - "pop": 1377 - }, - { - "zip": "75437", - "city": "Dike", - "county": "Hopkins", - "pop": 1377 - }, - { - "zip": "75449", - "city": "Ladonia", - "county": "Fannin", - "pop": 1374 - }, - { - "zip": "78024", - "city": "Hunt", - "county": "Kerr", - "pop": 1370 - }, - { - "zip": "76371", - "city": "Munday", - "county": "Knox", - "pop": 1367 - }, - { - "zip": "76630", - "city": "Bruceville", - "county": "Mclennan", - "pop": 1359 - }, - { - "zip": "75102", - "city": "Barry", - "county": "Navarro", - "pop": 1358 - }, - { - "zip": "76652", - "city": "Kopperl", - "county": "Bosque", - "pop": 1349 - }, - { - "zip": "79739", - "city": "Garden City", - "county": "Glasscock", - "pop": 1322 - }, - { - "zip": "79052", - "city": "Kress", - "county": "Swisher", - "pop": 1318 - }, - { - "zip": "76639", - "city": "Dawson", - "county": "Navarro", - "pop": 1318 - }, - { - "zip": "76432", - "city": "Blanket", - "county": "Brown", - "pop": 1314 - }, - { - "zip": "78933", - "city": "Cat Spring", - "county": "Austin", - "pop": 1308 - }, - { - "zip": "79502", - "city": "Aspermont", - "county": "Stonewall", - "pop": 1305 - }, - { - "zip": "79227", - "city": "Crowell", - "county": "Foard", - "pop": 1302 - }, - { - "zip": "79543", - "city": "Roby", - "county": "Fisher", - "pop": 1298 - }, - { - "zip": "76453", - "city": "Gordon", - "county": "Palo Pinto", - "pop": 1295 - }, - { - "zip": "76635", - "city": "Coolidge", - "county": "Limestone", - "pop": 1290 - }, - { - "zip": "78672", - "city": "Tow", - "county": "Llano", - "pop": 1283 - }, - { - "zip": "76653", - "city": "Kosse", - "county": "Limestone", - "pop": 1279 - }, - { - "zip": "78946", - "city": "Ledbetter", - "county": "Fayette", - "pop": 1270 - }, - { - "zip": "76389", - "city": "Windthorst", - "county": "Archer", - "pop": 1257 - }, - { - "zip": "75447", - "city": "Ivanhoe", - "county": "Fannin", - "pop": 1256 - }, - { - "zip": "79744", - "city": "Iraan", - "county": "Pecos", - "pop": 1255 - }, - { - "zip": "79057", - "city": "Mclean", - "county": "Gray", - "pop": 1254 - }, - { - "zip": "78019", - "city": "Encinal", - "county": "La Salle", - "pop": 1253 - }, - { - "zip": "77419", - "city": "Blessing", - "county": "Matagorda", - "pop": 1253 - }, - { - "zip": "76596", - "city": "Gatesville", - "county": "Coryell", - "pop": 1250 - }, - { - "zip": "78935", - "city": "Alleyton", - "county": "Colorado", - "pop": 1234 - }, - { - "zip": "76951", - "city": "Sterling City", - "county": "Sterling", - "pop": 1231 - }, - { - "zip": "79372", - "city": "Sundown", - "county": "Hockley", - "pop": 1229 - }, - { - "zip": "75556", - "city": "Bloomburg", - "county": "Cass", - "pop": 1214 - }, - { - "zip": "76933", - "city": "Bronte", - "county": "Coke", - "pop": 1209 - }, - { - "zip": "77046", - "city": "Houston", - "county": "Harris", - "pop": 1207 - }, - { - "zip": "78963", - "city": "West Point", - "county": "Fayette", - "pop": 1202 - }, - { - "zip": "77873", - "city": "Richards", - "county": "Grimes", - "pop": 1200 - }, - { - "zip": "79042", - "city": "Happy", - "county": "Swisher", - "pop": 1200 - }, - { - "zip": "75928", - "city": "Bon Wier", - "county": "Newton", - "pop": 1198 - }, - { - "zip": "78159", - "city": "Smiley", - "county": "Gonzales", - "pop": 1196 - }, - { - "zip": "75667", - "city": "Laneville", - "county": "Rusk", - "pop": 1193 - }, - { - "zip": "79511", - "city": "Coahoma", - "county": "Howard", - "pop": 1183 - }, - { - "zip": "75477", - "city": "Roxton", - "county": "Lamar", - "pop": 1183 - }, - { - "zip": "78827", - "city": "Asherton", - "county": "Dimmit", - "pop": 1173 - }, - { - "zip": "79718", - "city": "Balmorhea", - "county": "Reeves", - "pop": 1169 - }, - { - "zip": "76372", - "city": "Newcastle", - "county": "Young", - "pop": 1166 - }, - { - "zip": "75451", - "city": "Leesburg", - "county": "Camp", - "pop": 1163 - }, - { - "zip": "76622", - "city": "Aquilla", - "county": "Hill", - "pop": 1160 - }, - { - "zip": "75933", - "city": "Call", - "county": "Newton", - "pop": 1158 - }, - { - "zip": "76250", - "city": "Lindsay", - "county": "Cooke", - "pop": 1157 - }, - { - "zip": "75926", - "city": "Apple Springs", - "county": "Trinity", - "pop": 1151 - }, - { - "zip": "79092", - "city": "Vega", - "county": "Oldham", - "pop": 1148 - }, - { - "zip": "78884", - "city": "Utopia", - "county": "Uvalde", - "pop": 1134 - }, - { - "zip": "75936", - "city": "Chester", - "county": "Tyler", - "pop": 1128 - }, - { - "zip": "76486", - "city": "Perrin", - "county": "Jack", - "pop": 1125 - }, - { - "zip": "75478", - "city": "Saltillo", - "county": "Hopkins", - "pop": 1120 - }, - { - "zip": "78004", - "city": "Bergheim", - "county": "Kendall", - "pop": 1118 - }, - { - "zip": "78623", - "city": "Fischer", - "county": "Comal", - "pop": 1113 - }, - { - "zip": "78954", - "city": "Round Top", - "county": "Fayette", - "pop": 1110 - }, - { - "zip": "79358", - "city": "Ropesville", - "county": "Hockley", - "pop": 1109 - }, - { - "zip": "78850", - "city": "D Hanis", - "county": "Medina", - "pop": 1109 - }, - { - "zip": "76690", - "city": "Walnut Springs", - "county": "Bosque", - "pop": 1101 - }, - { - "zip": "75944", - "city": "Etoile", - "county": "Nacogdoches", - "pop": 1100 - }, - { - "zip": "78870", - "city": "Knippa", - "county": "Uvalde", - "pop": 1099 - }, - { - "zip": "77580", - "city": "Mont Belvieu", - "county": "Chambers", - "pop": 1099 - }, - { - "zip": "76525", - "city": "Evant", - "county": "Coryell", - "pop": 1098 - }, - { - "zip": "77613", - "city": "China", - "county": "Jefferson", - "pop": 1097 - }, - { - "zip": "76239", - "city": "Forestburg", - "county": "Montague", - "pop": 1087 - }, - { - "zip": "77615", - "city": "Evadale", - "county": "Jefferson", - "pop": 1084 - }, - { - "zip": "76934", - "city": "Carlsbad", - "county": "Tom Green", - "pop": 1084 - }, - { - "zip": "79563", - "city": "Tye", - "county": "Taylor", - "pop": 1074 - }, - { - "zip": "79225", - "city": "Chillicothe", - "county": "Hardeman", - "pop": 1069 - }, - { - "zip": "77519", - "city": "Batson", - "county": "Hardin", - "pop": 1066 - }, - { - "zip": "77853", - "city": "Dime Box", - "county": "Lee", - "pop": 1059 - }, - { - "zip": "77660", - "city": "Spurger", - "county": "Tyler", - "pop": 1057 - }, - { - "zip": "79778", - "city": "Rankin", - "county": "Upton", - "pop": 1056 - }, - { - "zip": "79366", - "city": "Ransom Canyon", - "county": "Lubbock", - "pop": 1056 - }, - { - "zip": "75476", - "city": "Ravenna", - "county": "Fannin", - "pop": 1056 - }, - { - "zip": "75420", - "city": "Brashear", - "county": "Hopkins", - "pop": 1052 - }, - { - "zip": "77538", - "city": "Devers", - "county": "Liberty", - "pop": 1042 - }, - { - "zip": "75439", - "city": "Ector", - "county": "Fannin", - "pop": 1035 - }, - { - "zip": "75489", - "city": "Tom Bean", - "county": "Grayson", - "pop": 1032 - }, - { - "zip": "76561", - "city": "Oglesby", - "county": "Coryell", - "pop": 1030 - }, - { - "zip": "76538", - "city": "Jonesboro", - "county": "Coryell", - "pop": 1025 - }, - { - "zip": "78558", - "city": "La Blanca", - "county": "Hidalgo", - "pop": 1021 - }, - { - "zip": "77663", - "city": "Village Mills", - "county": "Hardin", - "pop": 1014 - }, - { - "zip": "78549", - "city": "Hargill", - "county": "Hidalgo", - "pop": 1010 - }, - { - "zip": "76455", - "city": "Gustine", - "county": "Comanche", - "pop": 1009 - }, - { - "zip": "78632", - "city": "Harwood", - "county": "Gonzales", - "pop": 1003 - }, - { - "zip": "75560", - "city": "Douglassville", - "county": "Cass", - "pop": 1002 - }, - { - "zip": "77442", - "city": "Garwood", - "county": "Colorado", - "pop": 996 - }, - { - "zip": "75959", - "city": "Milam", - "county": "Sabine", - "pop": 994 - }, - { - "zip": "76228", - "city": "Bellevue", - "county": "Clay", - "pop": 994 - }, - { - "zip": "75438", - "city": "Dodd City", - "county": "Fannin", - "pop": 992 - }, - { - "zip": "79345", - "city": "Meadow", - "county": "Terry", - "pop": 990 - }, - { - "zip": "77597", - "city": "Wallisville", - "county": "Chambers", - "pop": 986 - }, - { - "zip": "77585", - "city": "Saratoga", - "county": "Hardin", - "pop": 986 - }, - { - "zip": "76890", - "city": "Zephyr", - "county": "Brown", - "pop": 982 - }, - { - "zip": "79312", - "city": "Amherst", - "county": "Lamb", - "pop": 978 - }, - { - "zip": "78058", - "city": "Mountain Home", - "county": "Kerr", - "pop": 976 - }, - { - "zip": "79541", - "city": "Ovalo", - "county": "Taylor", - "pop": 973 - }, - { - "zip": "78615", - "city": "Coupland", - "county": "Williamson", - "pop": 971 - }, - { - "zip": "78830", - "city": "Big Wells", - "county": "Dimmit", - "pop": 966 - }, - { - "zip": "79039", - "city": "Groom", - "county": "Carson", - "pop": 965 - }, - { - "zip": "76475", - "city": "Strawn", - "county": "Palo Pinto", - "pop": 956 - }, - { - "zip": "76402", - "city": "Stephenville", - "county": "Erath", - "pop": 953 - }, - { - "zip": "75435", - "city": "Deport", - "county": "Lamar", - "pop": 944 - }, - { - "zip": "75468", - "city": "Pattonville", - "county": "Lamar", - "pop": 939 - }, - { - "zip": "77533", - "city": "Daisetta", - "county": "Liberty", - "pop": 938 - }, - { - "zip": "78330", - "city": "Agua Dulce", - "county": "Nueces", - "pop": 934 - }, - { - "zip": "76483", - "city": "Throckmorton", - "county": "Throckmorton", - "pop": 932 - }, - { - "zip": "76484", - "city": "Palo Pinto", - "county": "Palo Pinto", - "pop": 916 - }, - { - "zip": "79010", - "city": "Boys Ranch", - "county": "Oldham", - "pop": 910 - }, - { - "zip": "76070", - "city": "Nemo", - "county": "Somervell", - "pop": 895 - }, - { - "zip": "75937", - "city": "Chireno", - "county": "Nacogdoches", - "pop": 891 - }, - { - "zip": "77010", - "city": "Houston", - "county": "Harris", - "pop": 890 - }, - { - "zip": "75411", - "city": "Arthur City", - "county": "Lamar", - "pop": 889 - }, - { - "zip": "78742", - "city": "Austin", - "county": "Travis", - "pop": 887 - }, - { - "zip": "77982", - "city": "Port O Connor", - "county": "Calhoun", - "pop": 884 - }, - { - "zip": "78712", - "city": "Austin", - "county": "Travis", - "pop": 880 - }, - { - "zip": "78663", - "city": "Round Mountain", - "county": "Blanco", - "pop": 873 - }, - { - "zip": "78005", - "city": "Bigfoot", - "county": "Frio", - "pop": 870 - }, - { - "zip": "79244", - "city": "Matador", - "county": "Motley", - "pop": 870 - }, - { - "zip": "76621", - "city": "Abbott", - "county": "Hill", - "pop": 867 - }, - { - "zip": "79097", - "city": "White Deer", - "county": "Carson", - "pop": 863 - }, - { - "zip": "76427", - "city": "Bryson", - "county": "Jack", - "pop": 859 - }, - { - "zip": "79526", - "city": "Hermleigh", - "county": "Scurry", - "pop": 837 - }, - { - "zip": "79532", - "city": "Loraine", - "county": "Mitchell", - "pop": 826 - }, - { - "zip": "79789", - "city": "Wink", - "county": "Winkler", - "pop": 824 - }, - { - "zip": "79848", - "city": "Sanderson", - "county": "Terrell", - "pop": 823 - }, - { - "zip": "79257", - "city": "Silverton", - "county": "Briscoe", - "pop": 822 - }, - { - "zip": "76864", - "city": "Mullin", - "county": "Mills", - "pop": 821 - }, - { - "zip": "77990", - "city": "Tivoli", - "county": "Refugio", - "pop": 811 - }, - { - "zip": "76681", - "city": "Richland", - "county": "Navarro", - "pop": 801 - }, - { - "zip": "75850", - "city": "Leona", - "county": "Leon", - "pop": 796 - }, - { - "zip": "77971", - "city": "Lolita", - "county": "Jackson", - "pop": 792 - }, - { - "zip": "77857", - "city": "Gause", - "county": "Milam", - "pop": 792 - }, - { - "zip": "75247", - "city": "Dallas", - "county": "Dallas", - "pop": 792 - }, - { - "zip": "77475", - "city": "Sheridan", - "county": "Colorado", - "pop": 790 - }, - { - "zip": "77629", - "city": "Nome", - "county": "Jefferson", - "pop": 786 - }, - { - "zip": "76251", - "city": "Montague", - "county": "Montague", - "pop": 779 - }, - { - "zip": "75976", - "city": "Wells", - "county": "Cherokee", - "pop": 778 - }, - { - "zip": "78419", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 778 - }, - { - "zip": "79367", - "city": "Smyer", - "county": "Hockley", - "pop": 777 - }, - { - "zip": "75784", - "city": "Reklaw", - "county": "Cherokee", - "pop": 774 - }, - { - "zip": "78067", - "city": "San Ygnacio", - "county": "Zapata", - "pop": 772 - }, - { - "zip": "76872", - "city": "Rochelle", - "county": "Mcculloch", - "pop": 770 - }, - { - "zip": "79063", - "city": "Nazareth", - "county": "Castro", - "pop": 768 - }, - { - "zip": "75669", - "city": "Long Branch", - "county": "Panola", - "pop": 762 - }, - { - "zip": "75566", - "city": "Marietta", - "county": "Cass", - "pop": 756 - }, - { - "zip": "76832", - "city": "Cherokee", - "county": "San Saba", - "pop": 728 - }, - { - "zip": "78877", - "city": "Quemado", - "county": "Maverick", - "pop": 724 - }, - { - "zip": "79046", - "city": "Higgins", - "county": "Lipscomb", - "pop": 712 - }, - { - "zip": "79852", - "city": "Terlingua", - "county": "Brewster", - "pop": 709 - }, - { - "zip": "78671", - "city": "Stonewall", - "county": "Gillespie", - "pop": 706 - }, - { - "zip": "78953", - "city": "Rosanky", - "county": "Bastrop", - "pop": 701 - }, - { - "zip": "77978", - "city": "Point Comfort", - "county": "Calhoun", - "pop": 696 - }, - { - "zip": "76631", - "city": "Bynum", - "county": "Hill", - "pop": 692 - }, - { - "zip": "78843", - "city": "Laughlin A F B", - "county": "Val Verde", - "pop": 689 - }, - { - "zip": "79788", - "city": "Wickett", - "county": "Ward", - "pop": 685 - }, - { - "zip": "75550", - "city": "Annona", - "county": "Red River", - "pop": 681 - }, - { - "zip": "79544", - "city": "Rochester", - "county": "Haskell", - "pop": 676 - }, - { - "zip": "79054", - "city": "Lefors", - "county": "Gray", - "pop": 676 - }, - { - "zip": "78592", - "city": "Santa Maria", - "county": "Cameron", - "pop": 676 - }, - { - "zip": "79059", - "city": "Miami", - "county": "Roberts", - "pop": 671 - }, - { - "zip": "77661", - "city": "Stowell", - "county": "Chambers", - "pop": 671 - }, - { - "zip": "78561", - "city": "Lasara", - "county": "Willacy", - "pop": 669 - }, - { - "zip": "75421", - "city": "Brookston", - "county": "Lamar", - "pop": 666 - }, - { - "zip": "79255", - "city": "Quitaque", - "county": "Briscoe", - "pop": 664 - }, - { - "zip": "76871", - "city": "Richland Springs", - "county": "San Saba", - "pop": 657 - }, - { - "zip": "75960", - "city": "Moscow", - "county": "Polk", - "pop": 653 - }, - { - "zip": "78358", - "city": "Fulton", - "county": "Aransas", - "pop": 653 - }, - { - "zip": "78161", - "city": "Sutherland Springs", - "county": "Wilson", - "pop": 651 - }, - { - "zip": "77623", - "city": "High Island", - "county": "Galveston", - "pop": 648 - }, - { - "zip": "79044", - "city": "Hartley", - "county": "Hartley", - "pop": 646 - }, - { - "zip": "75488", - "city": "Telephone", - "county": "Fannin", - "pop": 645 - }, - { - "zip": "75448", - "city": "Klondike", - "county": "Delta", - "pop": 643 - }, - { - "zip": "79547", - "city": "Rule", - "county": "Haskell", - "pop": 642 - }, - { - "zip": "75838", - "city": "Donie", - "county": "Freestone", - "pop": 639 - }, - { - "zip": "78146", - "city": "Pettus", - "county": "Bee", - "pop": 637 - }, - { - "zip": "78948", - "city": "Lincoln", - "county": "Lee", - "pop": 636 - }, - { - "zip": "75164", - "city": "Josephine", - "county": "Collin", - "pop": 633 - }, - { - "zip": "79087", - "city": "Texline", - "county": "Dallam", - "pop": 629 - }, - { - "zip": "78548", - "city": "Grulla", - "county": "Starr", - "pop": 627 - }, - { - "zip": "75493", - "city": "Winfield", - "county": "Titus", - "pop": 626 - }, - { - "zip": "79506", - "city": "Blackwell", - "county": "Nolan", - "pop": 626 - }, - { - "zip": "79379", - "city": "Whiteface", - "county": "Cochran", - "pop": 622 - }, - { - "zip": "78349", - "city": "Concepcion", - "county": "Duval", - "pop": 617 - }, - { - "zip": "79561", - "city": "Trent", - "county": "Taylor", - "pop": 615 - }, - { - "zip": "77624", - "city": "Hillister", - "county": "Tyler", - "pop": 609 - }, - { - "zip": "78535", - "city": "Combes", - "county": "Cameron", - "pop": 601 - }, - { - "zip": "78614", - "city": "Cost", - "county": "Gonzales", - "pop": 599 - }, - { - "zip": "76649", - "city": "Iredell", - "county": "Bosque", - "pop": 596 - }, - { - "zip": "76379", - "city": "Scotland", - "county": "Archer", - "pop": 590 - }, - { - "zip": "78949", - "city": "Muldoon", - "county": "Fayette", - "pop": 590 - }, - { - "zip": "79719", - "city": "Barstow", - "county": "Ward", - "pop": 589 - }, - { - "zip": "79528", - "city": "Jayton", - "county": "Kent", - "pop": 587 - }, - { - "zip": "78050", - "city": "Leming", - "county": "Atascosa", - "pop": 584 - }, - { - "zip": "78072", - "city": "Tilden", - "county": "Mcmullen", - "pop": 582 - }, - { - "zip": "75682", - "city": "New London", - "county": "Rusk", - "pop": 578 - }, - { - "zip": "76357", - "city": "Byers", - "county": "Clay", - "pop": 569 - }, - { - "zip": "77376", - "city": "Votaw", - "county": "Hardin", - "pop": 569 - }, - { - "zip": "78932", - "city": "Carmine", - "county": "Fayette", - "pop": 565 - }, - { - "zip": "78635", - "city": "Hye", - "county": "Blanco", - "pop": 564 - }, - { - "zip": "76660", - "city": "Malone", - "county": "Hill", - "pop": 561 - }, - { - "zip": "77988", - "city": "Telferner", - "county": "Victoria", - "pop": 559 - }, - { - "zip": "76377", - "city": "Petrolia", - "county": "Clay", - "pop": 555 - }, - { - "zip": "77369", - "city": "Rye", - "county": "Liberty", - "pop": 555 - }, - { - "zip": "77977", - "city": "Placedo", - "county": "Victoria", - "pop": 544 - }, - { - "zip": "78376", - "city": "Realitos", - "county": "Duval", - "pop": 544 - }, - { - "zip": "76637", - "city": "Cranfills Gap", - "county": "Bosque", - "pop": 540 - }, - { - "zip": "79530", - "city": "Lawn", - "county": "Taylor", - "pop": 538 - }, - { - "zip": "76866", - "city": "Paint Rock", - "county": "Concho", - "pop": 537 - }, - { - "zip": "77374", - "city": "Thicket", - "county": "Hardin", - "pop": 536 - }, - { - "zip": "79034", - "city": "Follett", - "county": "Lipscomb", - "pop": 535 - }, - { - "zip": "76363", - "city": "Goree", - "county": "Knox", - "pop": 534 - }, - { - "zip": "77444", - "city": "Guy", - "county": "Fort Bend", - "pop": 534 - }, - { - "zip": "79742", - "city": "Grandfalls", - "county": "Ward", - "pop": 526 - }, - { - "zip": "76875", - "city": "Rowena", - "county": "Runnels", - "pop": 525 - }, - { - "zip": "78385", - "city": "Sarita", - "county": "Kenedy", - "pop": 525 - }, - { - "zip": "78944", - "city": "Industry", - "county": "Austin", - "pop": 524 - }, - { - "zip": "78141", - "city": "Nordheim", - "county": "De Witt", - "pop": 524 - }, - { - "zip": "78066", - "city": "Rio Medina", - "county": "Medina", - "pop": 521 - }, - { - "zip": "78044", - "city": "Laredo", - "county": "Webb", - "pop": 519 - }, - { - "zip": "75101", - "city": "Bardwell", - "county": "Ellis", - "pop": 517 - }, - { - "zip": "79342", - "city": "Loop", - "county": "Gaines", - "pop": 516 - }, - { - "zip": "76435", - "city": "Carbon", - "county": "Eastland", - "pop": 512 - }, - { - "zip": "77466", - "city": "Pattison", - "county": "Waller", - "pop": 511 - }, - { - "zip": "77616", - "city": "Fred", - "county": "Tyler", - "pop": 511 - }, - { - "zip": "76464", - "city": "Moran", - "county": "Shackelford", - "pop": 505 - }, - { - "zip": "79713", - "city": "Ackerly", - "county": "Dawson", - "pop": 493 - }, - { - "zip": "77457", - "city": "Matagorda", - "county": "Matagorda", - "pop": 488 - }, - { - "zip": "76519", - "city": "Burlington", - "county": "Milam", - "pop": 487 - }, - { - "zip": "78352", - "city": "Edroy", - "county": "San Patricio", - "pop": 485 - }, - { - "zip": "79098", - "city": "Wildorado", - "county": "Oldham", - "pop": 484 - }, - { - "zip": "76598", - "city": "Gatesville", - "county": "Coryell", - "pop": 479 - }, - { - "zip": "78608", - "city": "Briggs", - "county": "Burnet", - "pop": 470 - }, - { - "zip": "78886", - "city": "Yancey", - "county": "Medina", - "pop": 469 - }, - { - "zip": "75853", - "city": "Montalba", - "county": "Anderson", - "pop": 466 - }, - { - "zip": "79080", - "city": "Skellytown", - "county": "Carson", - "pop": 461 - }, - { - "zip": "78008", - "city": "Campbellton", - "county": "Atascosa", - "pop": 461 - }, - { - "zip": "75412", - "city": "Bagwell", - "county": "Red River", - "pop": 457 - }, - { - "zip": "75492", - "city": "Windom", - "county": "Fannin", - "pop": 456 - }, - { - "zip": "78567", - "city": "Los Indios", - "county": "Cameron", - "pop": 443 - }, - { - "zip": "75153", - "city": "Powell", - "county": "Navarro", - "pop": 441 - }, - { - "zip": "78344", - "city": "Bruni", - "county": "Webb", - "pop": 436 - }, - { - "zip": "77970", - "city": "La Ward", - "county": "Jackson", - "pop": 429 - }, - { - "zip": "79842", - "city": "Marathon", - "county": "Brewster", - "pop": 425 - }, - { - "zip": "77359", - "city": "Oakhurst", - "county": "San Jacinto", - "pop": 425 - }, - { - "zip": "78351", - "city": "Driscoll", - "county": "Nueces", - "pop": 421 - }, - { - "zip": "76827", - "city": "Brookesmith", - "county": "Brown", - "pop": 418 - }, - { - "zip": "79237", - "city": "Hedley", - "county": "Donley", - "pop": 417 - }, - { - "zip": "78369", - "city": "Mirando City", - "county": "Webb", - "pop": 416 - }, - { - "zip": "76463", - "city": "Mingus", - "county": "Palo Pinto", - "pop": 412 - }, - { - "zip": "79229", - "city": "Dickens", - "county": "Dickens", - "pop": 411 - }, - { - "zip": "78243", - "city": "San Antonio", - "county": "Bexar", - "pop": 408 - }, - { - "zip": "78545", - "city": "Falcon Heights", - "county": "Starr", - "pop": 402 - }, - { - "zip": "78117", - "city": "Hobson", - "county": "Karnes", - "pop": 401 - }, - { - "zip": "79350", - "city": "New Deal", - "county": "Lubbock", - "pop": 401 - }, - { - "zip": "77991", - "city": "Vanderbilt", - "county": "Jackson", - "pop": 397 - }, - { - "zip": "76041", - "city": "Forreston", - "county": "Ellis", - "pop": 395 - }, - { - "zip": "78883", - "city": "Tarpley", - "county": "Bandera", - "pop": 395 - }, - { - "zip": "77453", - "city": "Lane City", - "county": "Wharton", - "pop": 393 - }, - { - "zip": "79533", - "city": "Lueders", - "county": "Jones", - "pop": 385 - }, - { - "zip": "78027", - "city": "Kendalia", - "county": "Kendall", - "pop": 381 - }, - { - "zip": "79024", - "city": "Darrouzett", - "county": "Lipscomb", - "pop": 380 - }, - { - "zip": "78057", - "city": "Moore", - "county": "Frio", - "pop": 378 - }, - { - "zip": "79061", - "city": "Mobeetie", - "county": "Wheeler", - "pop": 375 - }, - { - "zip": "77470", - "city": "Rock Island", - "county": "Colorado", - "pop": 374 - }, - { - "zip": "79261", - "city": "Turkey", - "county": "Hall", - "pop": 370 - }, - { - "zip": "78931", - "city": "Bleiblerville", - "county": "Austin", - "pop": 368 - }, - { - "zip": "79749", - "city": "Lenorah", - "county": "Martin", - "pop": 366 - }, - { - "zip": "78536", - "city": "Delmita", - "county": "Starr", - "pop": 363 - }, - { - "zip": "77334", - "city": "Dodge", - "county": "Walker", - "pop": 358 - }, - { - "zip": "78340", - "city": "Bayside", - "county": "Refugio", - "pop": 356 - }, - { - "zip": "78585", - "city": "Salineno", - "county": "Starr", - "pop": 356 - }, - { - "zip": "76077", - "city": "Rainbow", - "county": "Somervell", - "pop": 355 - }, - { - "zip": "77994", - "city": "Westhoff", - "county": "De Witt", - "pop": 354 - }, - { - "zip": "78590", - "city": "San Perlita", - "county": "Willacy", - "pop": 354 - }, - { - "zip": "76491", - "city": "Woodson", - "county": "Throckmorton", - "pop": 347 - }, - { - "zip": "78618", - "city": "Doss", - "county": "Gillespie", - "pop": 338 - }, - { - "zip": "77560", - "city": "Hankamer", - "county": "Chambers", - "pop": 337 - }, - { - "zip": "78342", - "city": "Ben Bolt", - "county": "Jim Wells", - "pop": 330 - }, - { - "zip": "78661", - "city": "Prairie Lea", - "county": "Caldwell", - "pop": 329 - }, - { - "zip": "79743", - "city": "Imperial", - "county": "Pecos", - "pop": 328 - }, - { - "zip": "79538", - "city": "Novice", - "county": "Coleman", - "pop": 325 - }, - { - "zip": "76238", - "city": "Era", - "county": "Cooke", - "pop": 324 - }, - { - "zip": "75470", - "city": "Petty", - "county": "Lamar", - "pop": 323 - }, - { - "zip": "79837", - "city": "Dell City", - "county": "Hudspeth", - "pop": 322 - }, - { - "zip": "79783", - "city": "Tarzan", - "county": "Martin", - "pop": 321 - }, - { - "zip": "78339", - "city": "Banquete", - "county": "Nueces", - "pop": 317 - }, - { - "zip": "77878", - "city": "Snook", - "county": "Burleson", - "pop": 317 - }, - { - "zip": "77974", - "city": "Meyersville", - "county": "De Witt", - "pop": 314 - }, - { - "zip": "78675", - "city": "Willow City", - "county": "Gillespie", - "pop": 314 - }, - { - "zip": "75481", - "city": "Sulphur Bluff", - "county": "Hopkins", - "pop": 314 - }, - { - "zip": "78116", - "city": "Gillett", - "county": "Karnes", - "pop": 313 - }, - { - "zip": "77507", - "city": "Pasadena", - "county": "Harris", - "pop": 312 - }, - { - "zip": "78943", - "city": "Glidden", - "county": "Colorado", - "pop": 311 - }, - { - "zip": "77483", - "city": "Wadsworth", - "county": "Matagorda", - "pop": 309 - }, - { - "zip": "79018", - "city": "Channing", - "county": "Hartley", - "pop": 307 - }, - { - "zip": "78938", - "city": "Ellinger", - "county": "Fayette", - "pop": 303 - }, - { - "zip": "78162", - "city": "Tuleta", - "county": "Bee", - "pop": 301 - }, - { - "zip": "77443", - "city": "Glen Flora", - "county": "Wharton", - "pop": 300 - }, - { - "zip": "79748", - "city": "Knott", - "county": "Howard", - "pop": 298 - }, - { - "zip": "79777", - "city": "Pyote", - "county": "Ward", - "pop": 293 - }, - { - "zip": "76858", - "city": "Melvin", - "county": "Mcculloch", - "pop": 292 - }, - { - "zip": "76445", - "city": "Desdemona", - "county": "Eastland", - "pop": 292 - }, - { - "zip": "79565", - "city": "Westbrook", - "county": "Mitchell", - "pop": 292 - }, - { - "zip": "76253", - "city": "Myra", - "county": "Cooke", - "pop": 291 - }, - { - "zip": "75977", - "city": "Wiergate", - "county": "Newton", - "pop": 291 - }, - { - "zip": "79256", - "city": "Roaring Springs", - "county": "Motley", - "pop": 290 - }, - { - "zip": "76845", - "city": "Gouldbusk", - "county": "Coleman", - "pop": 288 - }, - { - "zip": "76261", - "city": "Ringgold", - "county": "Montague", - "pop": 285 - }, - { - "zip": "78391", - "city": "Tynan", - "county": "Bee", - "pop": 283 - }, - { - "zip": "75413", - "city": "Bailey", - "county": "Fannin", - "pop": 282 - }, - { - "zip": "76676", - "city": "Penelope", - "county": "Hill", - "pop": 281 - }, - { - "zip": "76680", - "city": "Reagan", - "county": "Falls", - "pop": 279 - }, - { - "zip": "75469", - "city": "Pecan Gap", - "county": "Delta", - "pop": 275 - }, - { - "zip": "78122", - "city": "Leesville", - "county": "Gonzales", - "pop": 274 - }, - { - "zip": "78021", - "city": "Fowlerton", - "county": "La Salle", - "pop": 273 - }, - { - "zip": "76870", - "city": "Priddy", - "county": "Mills", - "pop": 270 - }, - { - "zip": "76459", - "city": "Jermyn", - "county": "Jack", - "pop": 270 - }, - { - "zip": "78563", - "city": "Linn", - "county": "Hidalgo", - "pop": 269 - }, - { - "zip": "78107", - "city": "Berclair", - "county": "Goliad", - "pop": 269 - }, - { - "zip": "79377", - "city": "Welch", - "county": "Dawson", - "pop": 269 - }, - { - "zip": "76666", - "city": "Mertens", - "county": "Hill", - "pop": 268 - }, - { - "zip": "76852", - "city": "Lohn", - "county": "Mcculloch", - "pop": 268 - }, - { - "zip": "78012", - "city": "Christine", - "county": "Atascosa", - "pop": 267 - }, - { - "zip": "77614", - "city": "Deweyville", - "county": "Newton", - "pop": 265 - }, - { - "zip": "79781", - "city": "Sheffield", - "county": "Pecos", - "pop": 263 - }, - { - "zip": "79527", - "city": "Ira", - "county": "Scurry", - "pop": 263 - }, - { - "zip": "75157", - "city": "Rosser", - "county": "Kaufman", - "pop": 261 - }, - { - "zip": "76678", - "city": "Prairie Hill", - "county": "Limestone", - "pop": 260 - }, - { - "zip": "76623", - "city": "Avalon", - "county": "Ellis", - "pop": 259 - }, - { - "zip": "78591", - "city": "Santa Elena", - "county": "Starr", - "pop": 249 - }, - { - "zip": "78075", - "city": "Whitsett", - "county": "Live Oak", - "pop": 248 - }, - { - "zip": "79566", - "city": "Wingate", - "county": "Runnels", - "pop": 247 - }, - { - "zip": "77969", - "city": "La Salle", - "county": "Jackson", - "pop": 246 - }, - { - "zip": "79505", - "city": "Benjamin", - "county": "Knox", - "pop": 244 - }, - { - "zip": "76566", - "city": "Purmela", - "county": "Coryell", - "pop": 242 - }, - { - "zip": "76842", - "city": "Fredonia", - "county": "Mason", - "pop": 242 - }, - { - "zip": "78353", - "city": "Encino", - "county": "Brooks", - "pop": 241 - }, - { - "zip": "75415", - "city": "Ben Franklin", - "county": "Delta", - "pop": 240 - }, - { - "zip": "76828", - "city": "Burkett", - "county": "Coleman", - "pop": 240 - }, - { - "zip": "78622", - "city": "Fentress", - "county": "Caldwell", - "pop": 237 - }, - { - "zip": "78402", - "city": "Corpus Christi", - "county": "Nueces", - "pop": 236 - }, - { - "zip": "76388", - "city": "Weinert", - "county": "Haskell", - "pop": 235 - }, - { - "zip": "79738", - "city": "Gail", - "county": "Borden", - "pop": 234 - }, - { - "zip": "76460", - "city": "Loving", - "county": "Young", - "pop": 233 - }, - { - "zip": "79834", - "city": "Big Bend National Park", - "county": "Brewster", - "pop": 233 - }, - { - "zip": "76268", - "city": "Southmayd", - "county": "Grayson", - "pop": 232 - }, - { - "zip": "76370", - "city": "Megargel", - "county": "Archer", - "pop": 232 - }, - { - "zip": "78837", - "city": "Comstock", - "county": "Val Verde", - "pop": 230 - }, - { - "zip": "75942", - "city": "Doucette", - "county": "Tyler", - "pop": 229 - }, - { - "zip": "78836", - "city": "Catarina", - "county": "Dimmit", - "pop": 228 - }, - { - "zip": "76436", - "city": "Carlton", - "county": "Hamilton", - "pop": 227 - }, - { - "zip": "78143", - "city": "Pandora", - "county": "Wilson", - "pop": 226 - }, - { - "zip": "77855", - "city": "Flynn", - "county": "Leon", - "pop": 224 - }, - { - "zip": "79539", - "city": "O Brien", - "county": "Haskell", - "pop": 223 - }, - { - "zip": "77368", - "city": "Romayor", - "county": "Liberty", - "pop": 223 - }, - { - "zip": "79741", - "city": "Goldsmith", - "county": "Ector", - "pop": 222 - }, - { - "zip": "76854", - "city": "London", - "county": "Kimble", - "pop": 220 - }, - { - "zip": "75934", - "city": "Camden", - "county": "Polk", - "pop": 219 - }, - { - "zip": "79236", - "city": "Guthrie", - "county": "King", - "pop": 218 - }, - { - "zip": "79082", - "city": "Springlake", - "county": "Lamb", - "pop": 218 - }, - { - "zip": "79078", - "city": "Sanford", - "county": "Hutchinson", - "pop": 217 - }, - { - "zip": "75780", - "city": "New Summerfield", - "county": "Cherokee", - "pop": 216 - }, - { - "zip": "76885", - "city": "Valley Spring", - "county": "Llano", - "pop": 216 - }, - { - "zip": "75856", - "city": "Pennington", - "county": "Trinity", - "pop": 215 - }, - { - "zip": "76882", - "city": "Talpa", - "county": "Coleman", - "pop": 214 - }, - { - "zip": "77655", - "city": "Sabine Pass", - "county": "Jefferson", - "pop": 213 - }, - { - "zip": "77458", - "city": "Midfield", - "county": "Matagorda", - "pop": 210 - }, - { - "zip": "79220", - "city": "Afton", - "county": "Dickens", - "pop": 208 - }, - { - "zip": "76862", - "city": "Millersview", - "county": "Concho", - "pop": 207 - }, - { - "zip": "75565", - "city": "Mc Leod", - "county": "Cass", - "pop": 206 - }, - { - "zip": "77987", - "city": "Sweet Home", - "county": "Lavaca", - "pop": 206 - }, - { - "zip": "79011", - "city": "Briscoe", - "county": "Wheeler", - "pop": 206 - }, - { - "zip": "77476", - "city": "Simonton", - "county": "Fort Bend", - "pop": 204 - }, - { - "zip": "79548", - "city": "Rule", - "county": "Haskell", - "pop": 203 - }, - { - "zip": "78838", - "city": "Concan", - "county": "Uvalde", - "pop": 202 - }, - { - "zip": "78564", - "city": "Lopeno", - "county": "Zapata", - "pop": 202 - }, - { - "zip": "79378", - "city": "Wellman", - "county": "Terry", - "pop": 196 - }, - { - "zip": "76686", - "city": "Tehuacana", - "county": "Limestone", - "pop": 195 - }, - { - "zip": "76955", - "city": "Vancourt", - "county": "Tom Green", - "pop": 192 - }, - { - "zip": "76481", - "city": "South Bend", - "county": "Young", - "pop": 189 - }, - { - "zip": "75764", - "city": "Gallatin", - "county": "Cherokee", - "pop": 187 - }, - { - "zip": "76650", - "city": "Irene", - "county": "Hill", - "pop": 186 - }, - { - "zip": "79003", - "city": "Allison", - "county": "Wheeler", - "pop": 185 - }, - { - "zip": "79021", - "city": "Cotton Center", - "county": "Hale", - "pop": 183 - }, - { - "zip": "76958", - "city": "Water Valley", - "county": "Tom Green", - "pop": 183 - }, - { - "zip": "79239", - "city": "Lakeview", - "county": "Hall", - "pop": 181 - }, - { - "zip": "79062", - "city": "Morse", - "county": "Hansford", - "pop": 180 - }, - { - "zip": "79535", - "city": "Maryneal", - "county": "Nolan", - "pop": 179 - }, - { - "zip": "79230", - "city": "Dodson", - "county": "Collingsworth", - "pop": 179 - }, - { - "zip": "79001", - "city": "Adrian", - "county": "Oldham", - "pop": 178 - }, - { - "zip": "77961", - "city": "Francitas", - "county": "Jackson", - "pop": 178 - }, - { - "zip": "76364", - "city": "Harrold", - "county": "Wilbarger", - "pop": 174 - }, - { - "zip": "79780", - "city": "Saragosa", - "county": "Reeves", - "pop": 173 - }, - { - "zip": "79560", - "city": "Sylvester", - "county": "Fisher", - "pop": 172 - }, - { - "zip": "76474", - "city": "Sidney", - "county": "Comanche", - "pop": 171 - }, - { - "zip": "77950", - "city": "Austwell", - "county": "Refugio", - "pop": 170 - }, - { - "zip": "78607", - "city": "Bluffton", - "county": "Llano", - "pop": 170 - }, - { - "zip": "79733", - "city": "Forsan", - "county": "Howard", - "pop": 169 - }, - { - "zip": "78007", - "city": "Calliham", - "county": "Mcmullen", - "pop": 169 - }, - { - "zip": "78142", - "city": "Normanna", - "county": "Bee", - "pop": 166 - }, - { - "zip": "79517", - "city": "Fluvanna", - "county": "Scurry", - "pop": 164 - }, - { - "zip": "79344", - "city": "Maple", - "county": "Bailey", - "pop": 161 - }, - { - "zip": "75105", - "city": "Chatfield", - "county": "Navarro", - "pop": 161 - }, - { - "zip": "79730", - "city": "Coyanosa", - "county": "Pecos", - "pop": 157 - }, - { - "zip": "79847", - "city": "Salt Flat", - "county": "Hudspeth", - "pop": 153 - }, - { - "zip": "76373", - "city": "Oklaunion", - "county": "Wilbarger", - "pop": 153 - }, - { - "zip": "78371", - "city": "Oilton", - "county": "Webb", - "pop": 153 - }, - { - "zip": "76888", - "city": "Voss", - "county": "Coleman", - "pop": 151 - }, - { - "zip": "76865", - "city": "Norton", - "county": "Runnels", - "pop": 151 - }, - { - "zip": "75450", - "city": "Lake Creek", - "county": "Delta", - "pop": 150 - }, - { - "zip": "76466", - "city": "Olden", - "county": "Eastland", - "pop": 149 - }, - { - "zip": "75475", - "city": "Randolph", - "county": "Fannin", - "pop": 148 - }, - { - "zip": "79016", - "city": "Canyon", - "county": "Randall", - "pop": 147 - }, - { - "zip": "79233", - "city": "Estelline", - "county": "Hall", - "pop": 145 - }, - { - "zip": "76654", - "city": "Leroy", - "county": "Mclennan", - "pop": 139 - }, - { - "zip": "79330", - "city": "Justiceburg", - "county": "Garza", - "pop": 139 - }, - { - "zip": "76565", - "city": "Pottsville", - "county": "Hamilton", - "pop": 138 - }, - { - "zip": "75848", - "city": "Kirvin", - "county": "Freestone", - "pop": 137 - }, - { - "zip": "78104", - "city": "Beeville", - "county": "Bee", - "pop": 136 - }, - { - "zip": "77350", - "city": "Leggett", - "county": "Polk", - "pop": 135 - }, - { - "zip": "75978", - "city": "Woden", - "county": "Nacogdoches", - "pop": 134 - }, - { - "zip": "76957", - "city": "Wall", - "county": "Tom Green", - "pop": 134 - }, - { - "zip": "76429", - "city": "Caddo", - "county": "Stephens", - "pop": 133 - }, - { - "zip": "78588", - "city": "San Isidro", - "county": "Starr", - "pop": 133 - }, - { - "zip": "77448", - "city": "Hungerford", - "county": "Wharton", - "pop": 131 - }, - { - "zip": "75779", - "city": "Neches", - "county": "Anderson", - "pop": 128 - }, - { - "zip": "75441", - "city": "Enloe", - "county": "Delta", - "pop": 128 - }, - { - "zip": "79534", - "city": "Mc Caulley", - "county": "Fisher", - "pop": 125 - }, - { - "zip": "79755", - "city": "Midkiff", - "county": "Upton", - "pop": 124 - }, - { - "zip": "77876", - "city": "Shiro", - "county": "Grimes", - "pop": 123 - }, - { - "zip": "79846", - "city": "Redford", - "county": "Presidio", - "pop": 121 - }, - { - "zip": "79785", - "city": "Toyah", - "county": "Reeves", - "pop": 121 - }, - { - "zip": "79540", - "city": "Old Glory", - "county": "Stonewall", - "pop": 121 - }, - { - "zip": "79231", - "city": "Dougherty", - "county": "Floyd", - "pop": 117 - }, - { - "zip": "78828", - "city": "Barksdale", - "county": "Edwards", - "pop": 117 - }, - { - "zip": "78145", - "city": "Pawnee", - "county": "Bee", - "pop": 116 - }, - { - "zip": "78885", - "city": "Vanderpool", - "county": "Bandera", - "pop": 115 - }, - { - "zip": "75573", - "city": "Redwater", - "county": "Bowie", - "pop": 115 - }, - { - "zip": "76884", - "city": "Valera", - "county": "Coleman", - "pop": 115 - }, - { - "zip": "79699", - "city": "Abilene", - "county": "Taylor", - "pop": 115 - }, - { - "zip": "76940", - "city": "Mereta", - "county": "Tom Green", - "pop": 113 - }, - { - "zip": "78670", - "city": "Staples", - "county": "Guadalupe", - "pop": 112 - }, - { - "zip": "75832", - "city": "Cayuga", - "county": "Anderson", - "pop": 107 - }, - { - "zip": "76930", - "city": "Barnhart", - "county": "Irion", - "pop": 107 - }, - { - "zip": "77867", - "city": "Mumford", - "county": "Robertson", - "pop": 106 - }, - { - "zip": "75562", - "city": "Kildare", - "county": "Cass", - "pop": 104 - }, - { - "zip": "77561", - "city": "Hardin", - "county": "Liberty", - "pop": 103 - }, - { - "zip": "79093", - "city": "Waka", - "county": "Ochiltree", - "pop": 102 - }, - { - "zip": "76953", - "city": "Tennyson", - "county": "Coke", - "pop": 101 - }, - { - "zip": "76452", - "city": "Energy", - "county": "Comanche", - "pop": 99 - }, - { - "zip": "77464", - "city": "Orchard", - "county": "Fort Bend", - "pop": 99 - }, - { - "zip": "79032", - "city": "Edmonson", - "county": "Hale", - "pop": 98 - }, - { - "zip": "79754", - "city": "Mentone", - "county": "Loving", - "pop": 98 - }, - { - "zip": "79053", - "city": "Lazbuddie", - "county": "Parmer", - "pop": 97 - }, - { - "zip": "77976", - "city": "Nursery", - "county": "Victoria", - "pop": 96 - }, - { - "zip": "77993", - "city": "Weesatche", - "county": "Goliad", - "pop": 95 - }, - { - "zip": "79369", - "city": "Spade", - "county": "Lamb", - "pop": 93 - }, - { - "zip": "76469", - "city": "Putnam", - "county": "Callahan", - "pop": 93 - }, - { - "zip": "79854", - "city": "Valentine", - "county": "Jeff Davis", - "pop": 90 - }, - { - "zip": "76490", - "city": "Whitt", - "county": "Parker", - "pop": 90 - }, - { - "zip": "78879", - "city": "Rio Frio", - "county": "Real", - "pop": 89 - }, - { - "zip": "75641", - "city": "Easton", - "county": "Gregg", - "pop": 89 - }, - { - "zip": "76820", - "city": "Art", - "county": "Mason", - "pop": 88 - }, - { - "zip": "77415", - "city": "Cedar Lane", - "county": "Matagorda", - "pop": 88 - }, - { - "zip": "78598", - "city": "Port Mansfield", - "county": "Willacy", - "pop": 87 - }, - { - "zip": "79503", - "city": "Avoca", - "county": "Jones", - "pop": 85 - }, - { - "zip": "78565", - "city": "Los Ebanos", - "county": "Hidalgo", - "pop": 84 - }, - { - "zip": "76887", - "city": "Voca", - "county": "Mcculloch", - "pop": 82 - }, - { - "zip": "79240", - "city": "Lelia Lake", - "county": "Donley", - "pop": 81 - }, - { - "zip": "79380", - "city": "Whitharral", - "county": "Hockley", - "pop": 80 - }, - { - "zip": "77367", - "city": "Riverside", - "county": "Walker", - "pop": 80 - }, - { - "zip": "79091", - "city": "Umbarger", - "county": "Randall", - "pop": 77 - }, - { - "zip": "77473", - "city": "San Felipe", - "county": "Austin", - "pop": 77 - }, - { - "zip": "75849", - "city": "Latexo", - "county": "Houston", - "pop": 67 - }, - { - "zip": "77617", - "city": "Gilchrist", - "county": "Galveston", - "pop": 66 - }, - { - "zip": "77960", - "city": "Fannin", - "county": "Goliad", - "pop": 65 - }, - { - "zip": "79247", - "city": "Odell", - "county": "Wilbarger", - "pop": 64 - }, - { - "zip": "76869", - "city": "Pontotoc", - "county": "Mason", - "pop": 64 - }, - { - "zip": "76873", - "city": "Rockwood", - "county": "Coleman", - "pop": 60 - }, - { - "zip": "79326", - "city": "Fieldton", - "county": "Lamb", - "pop": 59 - }, - { - "zip": "79056", - "city": "Lipscomb", - "county": "Lipscomb", - "pop": 56 - }, - { - "zip": "77436", - "city": "Egypt", - "county": "Wharton", - "pop": 54 - }, - { - "zip": "76628", - "city": "Brandon", - "county": "Hill", - "pop": 54 - }, - { - "zip": "75759", - "city": "Cuney", - "county": "Cherokee", - "pop": 54 - }, - { - "zip": "77451", - "city": "Kendleton", - "county": "Fort Bend", - "pop": 53 - }, - { - "zip": "79243", - "city": "Mcadoo", - "county": "Dickens", - "pop": 53 - }, - { - "zip": "79258", - "city": "South Plains", - "county": "Floyd", - "pop": 49 - }, - { - "zip": "75642", - "city": "Elysian Fields", - "county": "Harrison", - "pop": 48 - }, - { - "zip": "76848", - "city": "Hext", - "county": "Menard", - "pop": 48 - }, - { - "zip": "79518", - "city": "Girard", - "county": "Kent", - "pop": 48 - }, - { - "zip": "79033", - "city": "Farnsworth", - "county": "Ochiltree", - "pop": 47 - }, - { - "zip": "77432", - "city": "Danevang", - "county": "Wharton", - "pop": 47 - }, - { - "zip": "76263", - "city": "Rosston", - "county": "Cooke", - "pop": 46 - }, - { - "zip": "78125", - "city": "Mineral", - "county": "Bee", - "pop": 45 - }, - { - "zip": "77412", - "city": "Altair", - "county": "Colorado", - "pop": 44 - }, - { - "zip": "79324", - "city": "Enochs", - "county": "Bailey", - "pop": 42 - }, - { - "zip": "79519", - "city": "Goldsboro", - "county": "Coleman", - "pop": 41 - }, - { - "zip": "76685", - "city": "Satin", - "county": "Falls", - "pop": 40 - }, - { - "zip": "79314", - "city": "Bledsoe", - "county": "Cochran", - "pop": 40 - }, - { - "zip": "77468", - "city": "Pledger", - "county": "Matagorda", - "pop": 39 - }, - { - "zip": "77460", - "city": "Nada", - "county": "Colorado", - "pop": 39 - }, - { - "zip": "78677", - "city": "Wrightsboro", - "county": "Gonzales", - "pop": 39 - }, - { - "zip": "78851", - "city": "Dryden", - "county": "Terrell", - "pop": 37 - }, - { - "zip": "78150", - "city": "Universal City", - "county": "Bexar", - "pop": 37 - }, - { - "zip": "76061", - "city": "Lillian", - "county": "Johnson", - "pop": 37 - }, - { - "zip": "77326", - "city": "Ace", - "county": "Polk", - "pop": 37 - }, - { - "zip": "79537", - "city": "Nolan", - "county": "Nolan", - "pop": 35 - }, - { - "zip": "79259", - "city": "Tell", - "county": "Childress", - "pop": 35 - }, - { - "zip": "77481", - "city": "Thompsons", - "county": "Fort Bend", - "pop": 35 - }, - { - "zip": "79942", - "city": "El Paso", - "county": "El Paso", - "pop": 30 - }, - { - "zip": "78144", - "city": "Panna Maria", - "county": "Karnes", - "pop": 29 - }, - { - "zip": "76573", - "city": "Schwertner", - "county": "Williamson", - "pop": 29 - }, - { - "zip": "77440", - "city": "Elmaton", - "county": "Matagorda", - "pop": 27 - }, - { - "zip": "77973", - "city": "Mcfaddin", - "county": "Victoria", - "pop": 27 - }, - { - "zip": "79234", - "city": "Flomot", - "county": "Motley", - "pop": 26 - }, - { - "zip": "75788", - "city": "Sacul", - "county": "Nacogdoches", - "pop": 23 - }, - { - "zip": "78860", - "city": "El Indio", - "county": "Maverick", - "pop": 21 - }, - { - "zip": "78802", - "city": "Uvalde", - "county": "Uvalde", - "pop": 21 - }, - { - "zip": "79025", - "city": "Dawn", - "county": "Deaf Smith", - "pop": 20 - }, - { - "zip": "76841", - "city": "Fort Mc Kavett", - "county": "Menard", - "pop": 19 - }, - { - "zip": "79085", - "city": "Summerfield", - "county": "Castro", - "pop": 18 - }, - { - "zip": "78338", - "city": "Armstrong", - "county": "Kenedy", - "pop": 18 - }, - { - "zip": "77467", - "city": "Pierce", - "county": "Wharton", - "pop": 17 - }, - { - "zip": "76937", - "city": "Eola", - "county": "Concho", - "pop": 15 - }, - { - "zip": "79376", - "city": "Tokio", - "county": "Yoakum", - "pop": 14 - }, - { - "zip": "79094", - "city": "Wayside", - "county": "Armstrong", - "pop": 14 - }, - { - "zip": "79251", - "city": "Quail", - "county": "Collingsworth", - "pop": 13 - }, - { - "zip": "78871", - "city": "Langtry", - "county": "Val Verde", - "pop": 13 - }, - { - "zip": "76949", - "city": "Silver", - "county": "Coke", - "pop": 12 - }, - { - "zip": "79353", - "city": "Pep", - "county": "Hockley", - "pop": 10 - }, - { - "zip": "76824", - "city": "Bend", - "county": "Lampasas", - "pop": 9 - }, - { - "zip": "79920", - "city": "El Paso", - "county": "El Paso", - "pop": 8 - }, - { - "zip": "76508", - "city": "Temple", - "county": "Bell", - "pop": 7 - }, - { - "zip": "79831", - "city": "Alpine", - "county": "Brewster", - "pop": 4 - }, - { - "zip": "76939", - "city": "Knickerbocker", - "county": "Tom Green", - "pop": 0 - }, - { - "zip": "76874", - "city": "Roosevelt", - "county": "Kimble", - "pop": 0 - }, - { - "zip": "76836", - "city": "Doole", - "county": "Mcculloch", - "pop": 0 - }, - { - "zip": "76831", - "city": "Castell", - "county": "Llano", - "pop": 0 - }, - { - "zip": "77342", - "city": "Huntsville", - "county": "Walker", - "pop": 0 - }, - { - "zip": "77201", - "city": "Houston", - "county": "Harris", - "pop": 0 - }, - { - "zip": "77454", - "city": "Lissie", - "county": "Wharton", - "pop": 0 - }, - { - "zip": "77428", - "city": "Collegeport", - "county": "Matagorda", - "pop": 0 - }, - { - "zip": "76523", - "city": "Davilla", - "county": "Milam", - "pop": 0 - }, - { - "zip": "78335", - "city": "Aransas Pass", - "county": "San Patricio", - "pop": 0 - }, - { - "zip": "78951", - "city": "Oakland", - "county": "Colorado", - "pop": 0 - }, - { - "zip": "78060", - "city": "Oakville", - "county": "Live Oak", - "pop": 0 - }, - { - "zip": "78029", - "city": "Kerrville", - "county": "Kerr", - "pop": 0 - }, - { - "zip": "78001", - "city": "Artesia Wells", - "county": "La Salle", - "pop": 0 - }, - { - "zip": "75390", - "city": "Dallas", - "county": "Dallas", - "pop": 0 - }, - { - "zip": "75270", - "city": "Dallas", - "county": "Dallas", - "pop": 0 - }, - { - "zip": "75858", - "city": "Ratcliff", - "county": "Houston", - "pop": 0 - }, - { - "zip": "79770", - "city": "Orla", - "county": "Reeves", - "pop": 0 - }, - { - "zip": "79759", - "city": "Notrees", - "county": "Ector", - "pop": 0 - }, - { - "zip": "79105", - "city": "Amarillo", - "county": "Potter", - "pop": 0 - }, - { - "zip": "79058", - "city": "Masterson", - "county": "Moore", - "pop": 0 - }, - { - "zip": "79051", - "city": "Kerrick", - "county": "Dallam", - "pop": 0 - } - ] \ No newline at end of file