Skip to content

Instantly share code, notes, and snippets.

@ThomasThoren
Last active February 24, 2016 00:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThomasThoren/afb2950c18ddd2d64a4c to your computer and use it in GitHub Desktop.
Save ThomasThoren/afb2950c18ddd2d64a4c to your computer and use it in GitHub Desktop.
FiveThirtyEight NFL map reproduction

An attempt to reproduce this map from FiveThirtyEight, "The Most Televised NFL Teams": http://fivethirtyeight.com/features/which-nfl-team-are-you-stuck-watching-every-sunday/

nfl_cities.json is a manually reduced version of cities.json that only includes cities that have NFL teams.

I don't have the data behind the FiveThirtyEight map, so county-team data was manually added using QGIS. This is why the maps don't quite sync up.

Team labels are placed based on the teams' cities. This approximation was improved in Illustrator for the final product.

Labels are cluttered and off the map for the final D3 product because they're much easier to fix using Illustrator. See the final product in output.png.

Illustrator

Download SVG using SVG Crowbar. Open in Illustrator, reposition labels, change font color for floating labels and creating lines for them. See output.png for the final product.

If you notice small lines between tiles in the cross-hatched patterns (Broncos/Cowboys, etc.) in Illustrator, you can safely ignore them. They won't appear when you export the image. If you can't stand to see them, read this blog post to find out how to hide them.

.PHONY: all
.SECONDARY:
# Download .zip files
zip/tl_2015_us_county.zip:
@mkdir -p $(dir $@)
@curl -sS -o $@.download 'ftp://ftp2.census.gov/geo/tiger/TIGER2015/COUNTY/tl_2015_us_county.zip'
@mv $@.download $@
zip/ne_10m_populated_places.zip:
@# For team label placement.
@mkdir -p $(dir $@)
@curl -sS -o $@.download 'http://naciscdn.org/naturalearth/10m/cultural/ne_10m_populated_places.zip'
@mv $@.download $@
# Unzip
shp/tl_2015_us_county.shp: zip/tl_2015_us_county.zip
@mkdir -p $(dir $@)
@unzip -q -o -d $(dir $@) $<
shp/ne_10m_populated_places.shp: zip/ne_10m_populated_places.zip
@mkdir -p $(dir $@)
@rm -rf tmp && mkdir tmp
@unzip -q -o -d tmp $<
@cp tmp/* $(dir $@)
@rm -rf tmp
# Convert .shp files
shp/counties-crs.shp: shp/tl_2015_us_county.shp
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'ESRI Shapefile' \
-t_srs "EPSG:4326" \
$@ $<
shp/states.shp: shp/tl_2015_us_county.shp
@# Exclude non-continental counties and merge the rest into state shapes.
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'ESRI Shapefile' \
-t_srs "EPSG:4326" \
$@ $< \
-dialect sqlite \
-sql "SELECT ST_Union(ST_buffer(Geometry, 0.001)), STATEFP \
FROM tl_2015_us_county \
WHERE CAST(STATEFP AS INTEGER) <= 56 AND \
CAST(STATEFP AS INTEGER) != 2 AND \
CAST(STATEFP AS INTEGER) != 15 \
GROUP BY STATEFP"
# Reduce .shp files to U.S.
shp/cities.shp: shp/ne_10m_populated_places.shp
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'ESRI Shapefile' \
-t_srs "EPSG:4326" \
$@ $< \
-dialect sqlite \
-sql "SELECT Geometry, \
ADM0NAME, \
NAME, \
SCALERANK \
FROM 'ne_10m_populated_places' \
WHERE ADM0NAME = 'United States of America' AND \
SCALERANK <= 10"
# NOTE: shp/counties-data-added.shp was customized in QGIS by adding data to shp/counties-crs, based on FiveThirtyEight map.
shp/counties.shp:
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'ESRI Shapefile' \
-t_srs "EPSG:4326" \
$@ shp/counties-data-added.shp \
-dialect sqlite \
-sql "SELECT Geometry, \
team_name, \
team_color, \
GEOID \
FROM 'counties-data-added'"
# Convert SHP to GeoJSON
geojson/counties.json: shp/counties.shp
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'GeoJSON' \
$@ $<
geojson/states.json: shp/states.shp
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'GeoJSON' \
$@ $<
cities.json: shp/cities.shp
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'GeoJSON' \
$@ $<
# Convert GeoJSON to TopoJSON
topojson/counties-fullsize.json: geojson/counties.json
@mkdir -p $(dir $@)
@topojson \
--no-quantization \
--properties \
-o $@ \
-- $<
topojson/states-fullsize.json: geojson/states.json
@mkdir -p $(dir $@)
@topojson \
--no-quantization \
--properties \
-o $@ \
-- $<
# Simplify TopoJSON
counties.json: topojson/counties-fullsize.json
@mkdir -p $(dir $@)
@topojson \
--spherical \
--properties \
-s 1e-6 \
-q 1e3 \
-o $@ \
-- $<
states.json: topojson/states-fullsize.json
@mkdir -p $(dir $@)
@topojson \
--spherical \
--properties \
-s 1e-7 \
-q 1e6 \
-o $@ \
-- $<
all: counties.json \
states.json \
cities.json
Display the source blob
Display the rendered blob
Raw
{
"type": "Topology",
"objects": {
"counties": {
"type": "GeometryCollection",
"geometries": [
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31039"
},
"arcs": [
[
0,
1,
2,
3,
4,
5
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "53069"
},
"arcs": [
[
6,
7,
8,
9,
10,
-11,
11,
12,
13
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35011"
},
"arcs": [
[
14,
15,
16,
17,
18
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31109"
},
"arcs": [
[
19,
20,
21,
22,
23,
24
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31129"
},
"arcs": [
[
25,
26,
27,
28,
29
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46099"
},
"arcs": [
[
30,
31,
32,
33,
34,
35,
36
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48327"
},
"arcs": [
[
37,
38,
39,
40,
41
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06091"
},
"arcs": [
[
42,
43,
44,
45,
-46,
45,
46,
47,
-48,
47,
48,
49,
50,
51,
52,
53,
54,
55,
-56,
55,
56
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21053"
},
"arcs": [
[
57,
58,
59,
60,
61,
62,
63,
-64,
64,
65,
66
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39063"
},
"arcs": [
[
67,
68,
69,
70,
71,
72,
73
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48189"
},
"arcs": [
[
74,
75,
76,
77,
78
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01027"
},
"arcs": [
[
79,
80,
-81,
81,
82,
83,
84,
85,
86
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48011"
},
"arcs": [
[
87,
88,
89,
90,
91
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39003"
},
"arcs": [
[
92,
-72,
93,
94,
95
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13189"
},
"arcs": [
[
96,
97,
98,
99,
-100,
100,
-101,
99,
101,
102,
-103,
102,
-103,
103,
104,
105,
106,
-107,
106,
107,
108,
109,
-110,
110,
111,
112
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55111"
},
"arcs": [
[
113,
114,
115,
116,
117,
118,
119,
120,
121,
-122,
122,
123,
124,
125,
126,
127,
128
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05137"
},
"arcs": [
[
129,
130,
-131,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "41063"
},
"arcs": [
[
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42007"
},
"arcs": [
[
151,
152,
153,
154,
155,
156
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28061"
},
"arcs": [
[
157,
158,
159,
160
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29083"
},
"arcs": [
[
161,
162,
163,
164,
165,
166,
167,
168
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08109"
},
"arcs": [
[
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
-180,
179,
180,
181,
182,
-183,
182,
183,
184,
185,
186,
187,
188,
189,
189,
190,
169,
-170
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37037"
},
"arcs": [
[
191,
192,
193,
194,
195,
-196,
195,
196,
197,
-198,
198,
199,
200,
201,
202,
203,
204,
205
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49033"
},
"arcs": [
[
206,
207,
208,
209,
210,
211,
211,
212,
213,
-214,
-213,
-211,
214,
215,
216,
217,
218,
219,
220,
221,
222,
222,
223,
224,
-225,
224,
225,
226,
227,
228,
229
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40001"
},
"arcs": [
[
230,
231,
232,
233,
234,
235
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39085"
},
"arcs": [
[
236,
237,
238,
239
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "51775"
},
"arcs": [
[
240,
241,
242,
243,
-244,
243,
244,
245,
246
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "51121"
},
"arcs": [
[
[
247,
248,
249,
250,
251,
252,
253,
254,
254,
254,
255,
256,
-257,
256,
257,
258,
-259,
258,
-259,
258,
259,
260,
261,
-261,
260,
-261,
262,
263,
264,
265,
265,
266,
-267,
266,
267,
268,
269,
270,
-270,
269,
271,
272
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47065"
},
"arcs": [
[
273,
274,
275,
276,
277,
-278,
278,
279,
280,
281,
282,
283,
284,
285,
286,
-287,
286,
287,
288,
289
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35035"
},
"arcs": [
[
290,
291,
292,
293,
294,
295,
296,
297,
298
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35003"
},
"arcs": [
[
299,
300,
301,
302,
303,
304
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01091"
},
"arcs": [
[
305,
306,
307,
308,
309,
310,
311,
312,
313,
314,
-315,
314,
315,
316,
317,
318,
319
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56023"
},
"arcs": [
[
320,
321,
322,
323,
324,
325,
-208,
326
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29011"
},
"arcs": [
[
327,
328,
329,
330,
331,
332
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48057"
},
"arcs": [
[
333,
334,
335,
336,
337,
338,
339,
340,
341,
342,
343,
344,
345,
346,
347
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51735"
},
"arcs": [
[
348,
349,
350
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54075"
},
"arcs": [
[
351,
352,
353,
354,
355,
356,
357,
358,
-359,
358,
359,
360,
-361,
361,
362,
363,
364,
365,
366,
367,
368,
-369,
369,
370,
371,
372,
373,
374,
375,
376
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48077"
},
"arcs": [
[
377,
378,
379,
-380,
379,
380,
381,
382,
383,
384,
385,
386,
387,
388
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51095"
},
"arcs": [
[
[
389,
390,
391,
-392,
391,
-392,
391,
-392,
391,
392,
393,
394,
395,
-396,
396,
397,
398,
-399,
399,
399,
399,
399,
399,
400,
401,
402,
403,
-404,
404,
405,
406,
407,
-408,
408,
409,
410,
411,
412,
-413,
413
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "31101"
},
"arcs": [
[
414,
415,
416,
417,
418,
419
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31137"
},
"arcs": [
[
420,
421,
422,
423,
424,
425,
426,
427
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22019"
},
"arcs": [
[
428,
429,
-430,
429,
430,
431,
-432,
431,
432,
433,
-434,
433,
434,
435,
-436,
435,
436,
437,
438,
439,
440,
441,
-442,
441,
442,
443,
444,
444,
445,
446,
-429
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22111"
},
"arcs": [
[
447,
448,
449,
450,
451,
452,
-453,
452,
453,
454,
455,
-456,
455,
456,
-457,
456,
-457,
456,
457,
458,
459,
460
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40135"
},
"arcs": [
[
-235,
461,
462,
463,
464,
465,
466,
467,
468,
469,
-470,
470,
471
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01049"
},
"arcs": [
[
472,
473,
474,
475,
476,
477,
478,
-479,
478,
479,
480,
481,
482,
483,
484,
485
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bills",
"team_color": "#5486C1",
"GEOID": "36101"
},
"arcs": [
[
486,
487,
488,
489,
490,
491,
492,
493
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42053"
},
"arcs": [
[
494,
495,
496,
497,
498,
499,
-500,
499,
500,
501,
502
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22105"
},
"arcs": [
[
503,
504,
505,
506,
-507,
506,
-507,
506,
507,
508,
509,
510,
511,
-512,
511,
512,
513,
-514,
513,
514
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51179"
},
"arcs": [
[
515,
516,
517,
518,
-519,
519,
520,
521,
522,
523,
524,
525,
526,
527,
528,
529,
530,
531
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "26109"
},
"arcs": [
[
532,
533,
534,
535,
536,
537,
538,
538,
539,
540,
541
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "18073"
},
"arcs": [
[
542,
543,
544,
545,
546,
547,
548,
549,
550
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13025"
},
"arcs": [
[
551,
552,
-553,
553,
554,
-555,
554,
555,
556,
557,
558,
559,
-560,
559,
560,
561,
562,
563,
-564,
564,
565,
566,
567
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13171"
},
"arcs": [
[
568,
569,
570,
571,
572,
573,
-569
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18151"
},
"arcs": [
[
574,
575,
576,
577,
578
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "texans",
"team_color": "#FA5454",
"GEOID": "48361"
},
"arcs": [
[
579,
580,
581,
-582,
581,
582,
583,
584,
-440,
438,
-438,
436,
-436,
435,
-436,
-435,
-434,
433,
-434,
-433,
-432,
431,
-432,
-431,
-430,
429,
-430,
-429,
585,
586,
587,
-588,
587,
588
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39047"
},
"arcs": [
[
589,
590,
-591,
591,
592,
593,
594,
595
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "25015"
},
"arcs": [
[
596,
597,
598,
-599,
598,
-599,
598,
599,
600,
601,
602,
-602,
601,
603,
604,
605,
606,
607,
608,
-608,
609,
610,
611,
612
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21003"
},
"arcs": [
[
613,
-614,
613,
614,
615,
-616,
616,
615,
617,
618,
619,
620,
621,
622,
623,
624,
625,
626,
-627,
626,
-627,
626,
627,
628,
629,
630,
631,
632,
-633,
632,
633
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37001"
},
"arcs": [
[
634,
635,
-192,
636,
637
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20073"
},
"arcs": [
[
638,
639,
640,
641,
642,
643,
644
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "25025"
},
"arcs": [
[
645,
646,
647,
648,
649,
650,
651,
652,
653,
654,
655,
-656,
655,
656,
657,
658,
659,
660,
661,
-662,
662,
-663,
662,
663,
664,
665,
666,
-667,
666,
667,
-646
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16051"
},
"arcs": [
[
668,
669,
670,
671,
672,
673,
674,
-675,
674,
675,
676,
-677,
676,
677
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48177"
},
"arcs": [
[
678,
-679,
678,
679,
680,
-681,
680,
681,
682,
683,
684,
685,
686,
-687,
687,
688,
689,
-679
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47115"
},
"arcs": [
[
-288,
-287,
286,
-287,
-286,
690,
691,
692,
693,
694,
695,
-696,
695,
-696,
695,
696,
697,
-698,
698,
-289
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26007"
},
"arcs": [
[
699,
700,
701,
702
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21231"
},
"arcs": [
[
703,
704,
705,
706,
707,
708,
709,
-65,
63,
-64,
-63,
-62,
60,
-60,
710,
711
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47185"
},
"arcs": [
[
[
712,
-713,
713
]
],
[
[
714,
715,
716,
717,
718,
719,
720,
721,
722,
723,
724,
725,
-726,
725,
726,
727,
-728,
727,
728,
729,
-730,
730,
731,
-732,
732,
733,
734,
-735,
734,
735,
736
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48147"
},
"arcs": [
[
737,
738,
-739,
739,
740,
741,
-742,
742,
-743,
742,
-743,
743,
744,
745,
-746,
-745,
744,
746,
747,
748,
749,
750,
751,
752,
753,
754,
755,
-739,
-738
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20043"
},
"arcs": [
[
756,
757,
758,
759,
760,
761,
762,
763,
764,
765,
-766,
766,
767,
768,
769,
770,
771,
-757
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48265"
},
"arcs": [
[
772,
773,
774,
775,
776,
777,
778,
-779,
779
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12053"
},
"arcs": [
[
780,
-781,
780,
781,
782,
783,
784
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "12129"
},
"arcs": [
[
785,
786,
787,
788,
789,
790,
-791,
790,
791,
792,
793,
794,
794,
794,
795,
796,
-797,
796,
-797,
796,
-797,
796,
797,
-798,
797,
798,
799
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "dolphins",
"team_color": "#9FE5FA",
"GEOID": "12131"
},
"arcs": [
[
800,
801,
802,
803,
804,
805,
806,
807,
808,
809
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28017"
},
"arcs": [
[
810,
811,
812,
813,
814,
-815,
815,
816
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26035"
},
"arcs": [
[
817,
818,
819,
820,
821
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20157"
},
"arcs": [
[
-28,
822,
823,
824,
825
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12127"
},
"arcs": [
[
826,
827,
828,
-829,
829,
830,
831,
832,
833,
-834,
834,
835,
-836,
836,
837,
-838,
837,
838,
839,
840,
-841,
840,
841,
842
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40017"
},
"arcs": [
[
843,
844,
845,
846,
847,
848,
849,
850,
851,
852,
853,
854,
855,
-856,
855,
856
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13115"
},
"arcs": [
[
857,
858,
859,
860,
861,
862,
863,
864,
865,
866,
867,
-860,
868
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "32001"
},
"arcs": [
[
869,
870,
871,
872,
873,
-874,
873,
874,
875,
876,
877,
878,
879,
880,
881,
882,
883,
-870,
884
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31181"
},
"arcs": [
[
885,
-30,
886,
887,
888
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "17067"
},
"arcs": [
[
889,
890,
891,
892,
893,
894,
895
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46067"
},
"arcs": [
[
896,
897,
898,
899,
900,
901,
902,
903,
904,
905
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41013"
},
"arcs": [
[
906,
907,
908,
909,
910
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "50011"
},
"arcs": [
[
911,
912,
913,
914,
915,
916,
917,
918
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "26103"
},
"arcs": [
[
919,
920,
921,
922,
-542,
923,
924,
925
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants_patriots",
"team_color": "blue_red",
"GEOID": "09007"
},
"arcs": [
[
926,
927,
928,
929,
930
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37057"
},
"arcs": [
[
931,
932,
933,
934,
935,
936,
937,
938,
939,
940,
941,
-942,
941,
942,
943,
944
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17025"
},
"arcs": [
[
945,
946,
947,
948,
949,
-950,
949,
950,
951,
-952,
951,
952,
-953,
953,
954
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29103"
},
"arcs": [
[
955,
956,
957,
958,
959,
960
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29117"
},
"arcs": [
[
961,
962,
963,
964,
965,
966
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bills",
"team_color": "#5486C1",
"GEOID": "42117"
},
"arcs": [
[
967,
968,
969,
970,
971,
-490
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31043"
},
"arcs": [
[
972,
973,
974,
975,
976
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26089"
},
"arcs": [
[
977,
978,
979,
980,
981,
982,
983
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51181"
},
"arcs": [
[
984,
985,
-411,
409,
-409,
407,
986,
987,
988,
989,
990,
-991,
990,
991,
992,
-985
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48391"
},
"arcs": [
[
993,
994,
995,
-996,
995,
996,
997,
-998,
997,
998,
999,
1000,
-1001,
1000,
-1001,
1000,
-347,
345,
-345,
1001,
1002,
1003,
1004,
1005,
-1006,
1005,
1006,
-1007,
1007,
-1007,
1006,
1008,
1009,
1010,
1011,
-1012,
-1010,
1012,
1013,
-1014,
1014,
1015,
-1016,
1016,
1017
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39017"
},
"arcs": [
[
1018,
1019,
1020,
1021,
1022,
1023,
1024,
1025
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13273"
},
"arcs": [
[
1026,
1027,
1028,
1029,
1030,
1031,
1032,
-1033,
1033,
1034,
-1035,
1034,
1035,
1036,
1037,
1038,
1038,
1038,
1038,
1039,
1040,
1040,
1040,
1041
],
[
1026,
-1027,
1042
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13063"
},
"arcs": [
[
1043,
1044,
1045,
-1046,
1046,
1047,
1048,
1049
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56013"
},
"arcs": [
[
1050,
1051,
-1052,
1052,
1053,
1054,
1055,
-1056,
1055,
1056,
1057,
-1058,
1057,
1058,
1059,
1060,
1061,
-1062,
1061,
1062,
1063,
1064,
1065,
1066,
1067,
1068,
1069,
1070,
1071,
-1072,
1071,
-1072,
1071,
-1072,
1072,
1073,
1074,
1075,
1076,
-1077,
1076,
1077,
1078,
1079,
1080,
1081,
1082,
-1083,
1082,
1083,
1084,
-1085,
1084,
1085,
1086,
-1087,
1086,
1087,
1088,
1089,
1090,
1091,
1092,
1092,
1093
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18115"
},
"arcs": [
[
1094,
1095,
1096,
1097,
1098,
1099,
-1100,
1100,
1101
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13073"
},
"arcs": [
[
1102,
1103,
1104,
1105,
1106,
1107,
1108,
1109,
1110,
1111,
-108,
-107
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08115"
},
"arcs": [
[
1112,
1113,
1114,
1115
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30065"
},
"arcs": [
[
1116,
1117,
1118,
1119,
-1120,
1120,
-1121,
1119,
1121,
1122,
-1123,
1122,
-1123,
1123,
-1124,
1123,
1124,
1125,
1125,
1126,
1127,
-1128,
1127,
1128,
1129,
1130
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42043"
},
"arcs": [
[
1131,
1132,
-1133,
1132,
1133,
1134,
-1135,
1134,
1135,
1136,
1137,
-1138,
1138,
1139,
1140,
-1141,
1140,
1141,
1142,
1143,
1144,
1145,
1146,
1147,
-1148,
1147,
1148,
1149,
1150
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46101"
},
"arcs": [
[
1151,
1152,
-32,
1153
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54079"
},
"arcs": [
[
1154,
1155,
1156,
1157,
1158,
1159,
1160
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "34037"
},
"arcs": [
[
1161,
1162,
1163,
1164,
1165,
1166,
1167,
1168,
1169,
1170,
1171,
-1172,
1172
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20039"
},
"arcs": [
[
1173,
1174,
1175,
1176
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18123"
},
"arcs": [
[
1177,
1178,
1179,
1180,
1181,
1182,
1183,
1184,
1185,
-1186,
1185,
1186
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28145"
},
"arcs": [
[
1187,
1188,
1189,
1190,
1191,
1192,
1193
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31015"
},
"arcs": [
[
1194,
1195,
1196,
-1197,
1196,
1197,
1198,
1199,
1200,
1201,
1202,
1203,
1204,
1205
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27095"
},
"arcs": [
[
1206,
1207,
1208,
-1209,
1208,
1209,
1210,
1211,
1212,
1213
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38099"
},
"arcs": [
[
1214,
1215,
1216,
-1217,
1217,
1218,
1219,
-1220,
-1219,
1218,
1220,
1221,
-1222,
1222,
-1223,
1221,
1223,
1224,
1225,
1225,
1226,
-1227,
1227,
1228,
-1229,
1229,
1230,
1231,
1232,
-1233,
1232,
1233,
1234,
1235,
1236,
-1237,
1236,
-1237,
1237,
1238,
1239,
1240,
1241,
1242
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39115"
},
"arcs": [
[
1243,
1244,
1245,
1246,
1247,
1248,
1249
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39133"
},
"arcs": [
[
1250,
1251,
1252,
1253,
1254
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56041"
},
"arcs": [
[
-209,
-326,
1255,
1256
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "32013"
},
"arcs": [
[
1257,
1258,
1259,
1260,
1261,
1262,
-1263,
1263
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48247"
},
"arcs": [
[
1264,
1265,
1266,
1267,
1268,
1269,
-1270,
1269,
1270,
1271
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08017"
},
"arcs": [
[
1272,
1273,
1274,
1275,
1276
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41005"
},
"arcs": [
[
1277,
1278,
1279,
1280,
1281,
1282,
1283,
1284,
1285,
1286,
1287,
1288,
1289,
1290,
1291,
-1292,
1291,
-1292,
1291,
1292,
1293,
1294,
1295,
1296
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05113"
},
"arcs": [
[
1297,
1298,
1299,
1300,
1301,
1302
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13193"
},
"arcs": [
[
[
1303,
1304,
1305,
1306,
1307,
1308,
1309,
1310,
1311,
1312,
1313,
-1314,
1313,
1314,
1315,
1316,
1317,
1318
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "18007"
},
"arcs": [
[
1319,
-549,
1320,
1321,
1322,
1323
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47129"
},
"arcs": [
[
1324,
1325,
1326,
1327,
1328,
1329,
-1330,
1329,
1330,
1331,
-1332,
1332,
1333,
1334,
1335,
-1336,
1335,
1336,
1337,
-1338,
1337,
1338,
1339,
1340,
1341,
-1342,
1342,
1343,
-1344,
1343,
-1344,
1343,
1344
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46043"
},
"arcs": [
[
1345,
1346,
-906,
1347
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "ravens",
"team_color": "#AA54C1",
"GEOID": "24047"
},
"arcs": [
[
1348,
1349,
1350,
1351,
1352,
1353,
1354,
1355,
1356
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "17185"
},
"arcs": [
[
1357,
1358,
1359,
1360,
1361,
1362,
-1363,
1363,
-1364,
1362,
1364,
1365,
1366,
1367,
-1368,
1368,
1369,
1370,
-1371,
1370,
-1371,
1370,
-1366,
1365,
-1366,
1365,
-1366,
1371,
1372,
1373,
1374,
-1375,
1374,
1375,
1376,
-1377,
1376,
-1377,
1376,
1377
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18069"
},
"arcs": [
[
1378,
1379,
1380,
1381,
1382
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21209"
},
"arcs": [
[
1383,
-1384,
1384,
1385,
1385,
1386,
1387,
-1388,
1387,
-1388,
1387,
1388,
1389,
1390,
-1391,
1390,
-1391,
1391,
1392,
-1393,
1393,
1394,
1395,
1396
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "19053"
},
"arcs": [
[
1397,
1398,
1399,
1400,
1401
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18169"
},
"arcs": [
[
1402,
1402,
1403,
1404,
1405,
1406,
-1383,
1407,
1408
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18003"
},
"arcs": [
[
1409,
1410,
1411,
1412,
1413,
1414,
-1380,
1415,
1416
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18099"
},
"arcs": [
[
1417,
1418,
1419,
1420,
1421
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31171"
},
"arcs": [
[
1422,
1423,
1424,
1425,
1426
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38085"
},
"arcs": [
[
1427,
1428,
-1429,
1428,
1429,
1430,
1431,
1432,
-1433,
1432,
-1433,
1432,
1433,
1434,
1434,
1435,
1436,
-1437,
1436,
1437,
1438,
1439,
1440,
1441,
1442,
1442,
1442,
1443,
1444,
-1445,
1444,
1445,
-1446,
1445,
1446,
1447,
1448,
1449,
1450,
-1451,
1451,
-1452,
1451,
1452,
1453,
-1454,
1453,
-1454,
1453,
1454,
1455,
1456,
1457,
1457,
1458,
-1459,
1458,
1459,
1460,
-1461,
1461,
1462,
-1463,
1463
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48127"
},
"arcs": [
[
1464,
1465,
1466,
1467,
1468
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27045"
},
"arcs": [
[
1469,
1470,
1471,
1472,
1473,
1474
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "45023"
},
"arcs": [
[
1475,
1476,
1477,
1478,
1479,
1480,
1481
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27073"
},
"arcs": [
[
1482,
1483,
-1484,
1483,
-1484,
1483,
1484,
1485,
1486,
1487,
-1488,
1487,
1488,
1489,
-1490,
1489,
1490,
-1491,
1490,
-1491,
1490,
1491,
1492,
1493,
1494,
1495,
1496
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49005"
},
"arcs": [
[
1497,
1498,
-230,
228,
-228,
226,
-226,
-225,
224,
-225,
-224,
222,
222,
-222,
-221,
1499,
1500,
-1501,
1500,
1501,
1502,
-1503,
1502,
1503,
1504,
-1505,
1505,
1506,
1507,
1508,
1509,
-1510,
1509,
1510
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "55093"
},
"arcs": [
[
1511,
1512,
1513,
1514,
1515,
1516,
-1517,
1516,
1517,
1518,
1519
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13049"
},
"arcs": [
[
-556,
1520,
1521,
-1522,
1521,
1522,
1523,
-1524,
1523,
1524,
1525,
1526,
1527,
-1528,
1527,
1528,
1529,
-1530,
1529,
1530,
1531,
1532,
1533,
1533,
1534,
1535,
1536,
1537
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13233"
},
"arcs": [
[
1538,
1539,
1540,
1541,
1542,
1543,
-866
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17113"
},
"arcs": [
[
1544,
1545,
1546,
-1547,
1547,
1548,
1549,
1550,
1551,
1552
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "23001"
},
"arcs": [
[
1553,
1554,
1555,
1556,
-1557,
1556,
1557,
1558,
1559,
1560,
1561,
1562,
1563,
1564,
1565,
1566
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16055"
},
"arcs": [
[
1567,
1568,
1569,
1570
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "32003"
},
"arcs": [
[
1571,
1572,
1573,
1574,
1575,
1576,
1577,
1578,
1579,
1580,
1581,
1582,
1583,
1584,
1585,
-1586,
1586,
1587,
1588,
1589,
1590
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20147"
},
"arcs": [
[
1591,
1592,
1593,
1594,
1595
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31089"
},
"arcs": [
[
-1204,
1202,
-1202,
1200,
-1200,
1198,
-1198,
-1197,
1196,
1596,
1597,
1598,
1599,
1600,
1601
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29101"
},
"arcs": [
[
1602,
1603,
-1604,
1604,
1605,
-162,
1606
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55063"
},
"arcs": [
[
1607,
1608,
1609,
1610,
1611,
1612,
1613,
1614,
1615,
1616
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22021"
},
"arcs": [
[
1617,
1618,
1619,
1620,
1621,
1622,
-1623,
1623,
1622,
1624,
1625,
1626,
1627,
1628,
1629,
-1630,
1629,
1630,
1631,
1632,
1633,
1634,
1635
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21061"
},
"arcs": [
[
1636,
1637,
-1638,
1638,
1639,
1640,
1641,
1642,
1643,
1644,
1645,
1646
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17005"
},
"arcs": [
[
1647,
1648,
1649,
1650
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17009"
},
"arcs": [
[
1651,
1652,
1653,
1654,
1655,
1656,
1657,
1658
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27085"
},
"arcs": [
[
1659,
1660,
1661,
1662,
1663
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "55033"
},
"arcs": [
[
1664,
1665,
1666,
1667,
-1514,
1668
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08027"
},
"arcs": [
[
177,
1669,
1670,
1671,
-1672,
1672,
1673,
1674,
1675,
-1674,
1676,
1677,
1678,
1679,
-1680,
1680,
-184,
-183,
182,
-183,
-182,
180,
-180,
179,
-180,
-179,
-178
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "29123"
},
"arcs": [
[
1681,
1682,
1683,
1684,
1685,
-1686,
1685,
1686,
1687
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48353"
},
"arcs": [
[
1688,
1689,
1690,
1691,
1692
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42127"
},
"arcs": [
[
1693,
1694,
1695,
1696,
1697,
1698,
1699,
-1700,
1699,
1700,
1701,
1702,
-1703,
1702,
1703,
1704,
1705,
1705,
1706,
1707,
1707,
1708,
1709,
-1710,
1709,
1710,
1711,
1712,
-1713,
1713,
-1714,
1713,
1714
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "36091"
},
"arcs": [
[
1715,
1716,
1717,
1718,
1719,
-1720,
1720,
-1721,
1720,
1721,
1722,
1723,
1724,
1725,
1726,
1727,
1728,
1729,
1730,
1731,
1732
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48041"
},
"arcs": [
[
1733,
1734,
-1735,
1735,
1736,
1737,
-1738,
1737,
1738,
1739,
1740,
-1739,
1741,
1742,
1743,
1744,
1745,
-1746,
1746,
1747,
1748,
-1749,
1748,
1749,
1750,
-1751,
1750,
1751,
1751,
1752,
1753,
-1754,
1753,
1754,
1755,
-1756,
1755,
1756
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40095"
},
"arcs": [
[
1757,
1758,
1759,
1760,
1761,
1762,
-1763,
1762,
1763,
1764,
1765,
-1766,
1765,
1766,
1767,
-1768,
1767,
1768,
1769,
1770,
1771,
1772
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "24001"
},
"arcs": [
[
1773,
1774,
1775,
-1776,
1775,
1776,
-1777,
1776,
1777,
1778,
1778,
1779,
1780,
1781,
-1782,
1782,
1783,
1784,
-1785,
1785,
1784,
1786,
-1787,
1786,
1787,
-1788,
1788,
1789,
1790,
1791,
1792,
1793,
1794,
-1795,
1794,
1795,
1796,
1797,
1798,
-1799,
1798,
1799,
1800
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54103"
},
"arcs": [
[
1801,
1802,
1803,
-1804,
1803,
1804,
1805,
-1806,
1805,
1806,
1807,
-1808,
1807,
1808,
1809,
1810,
1811,
1812,
-1813,
1812,
1813,
1814,
1814,
1815,
1816,
-1817,
1816,
1817,
1818,
1819,
1820,
-1821,
1821,
1822,
1823,
-1824,
1824
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55053"
},
"arcs": [
[
1825,
1826,
1827,
1828,
1829,
1830,
-1831,
1830,
1831,
-1613,
1832
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41007"
},
"arcs": [
[
1833,
1834,
1835,
-14,
12,
-12,
10,
1836,
1837,
1838
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "53041"
},
"arcs": [
[
1839,
1840,
1841,
1842,
1843,
1844,
1845,
1846,
1847,
1848,
1849,
1850,
1851,
1852,
1853,
-8,
1854
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bills",
"team_color": "#5486C1",
"GEOID": "36003"
},
"arcs": [
[
1855,
1856,
1857,
1858,
-1859,
1858,
-1859,
1858,
1859,
-492,
1860,
1861,
1862
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19031"
},
"arcs": [
[
1863,
1864,
1865,
1866,
1867,
1868
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18117"
},
"arcs": [
[
1869,
1870,
1871,
1872,
1873
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13089"
},
"arcs": [
[
1874,
1875,
-1876,
1876,
1877,
-1878,
1877,
-1878,
1877,
1878,
1879,
-1880,
1880,
-1044,
1881,
1882,
1883
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13227"
},
"arcs": [
[
1884,
1885,
1886,
1887
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30015"
},
"arcs": [
[
1888,
1889,
1890,
1891,
1892,
1893,
-1894,
1893,
1894,
1895,
-1896,
1896,
1897,
-1898,
1897,
-1898,
1897,
1898,
1899,
1900,
-1901,
-1900,
1899,
1901,
-1902,
1901,
1902,
-1903,
1902,
1903,
1904,
1905,
-1906,
1905,
1906,
-1907,
1906,
1907,
-1908,
1907,
1908,
1909,
-1910,
1909,
1910,
1911,
1912,
1913,
-1914,
1913,
1914,
1915,
1915,
1916,
1917,
1918,
1919,
1920,
1921,
1922
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31017"
},
"arcs": [
[
1923,
1924,
1925,
1926,
-1927,
1927,
1928,
1928,
1929
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47013"
},
"arcs": [
[
1930,
1931,
1932,
1933,
-1934,
1933,
1934,
1935,
-1936,
1936,
1937,
-1938,
1937,
1938,
1939,
-1940,
1939,
1940,
1941,
1942,
1943,
-1944,
1943,
1944,
1945,
-1946,
1946,
1947,
1948,
1948,
1949
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37069"
},
"arcs": [
[
1950,
1951,
1952,
-1953,
1952,
-1953,
1952,
1953,
1954,
-1955,
1954,
-1955,
1955,
1956,
-1957,
1957,
1958,
1959,
1960,
1960,
1961,
-1951
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "24510"
},
"arcs": [
[
1962,
1963,
1964
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20111"
},
"arcs": [
[
1965,
1966,
1967,
1968,
-639,
1969
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19027"
},
"arcs": [
[
1970,
1971,
1972,
1973,
1974,
1975
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22107"
},
"arcs": [
[
1976,
1977,
-1978,
1977,
1978,
1979,
1980,
1981,
-1982,
1981,
1982,
1983,
1984,
1985,
1986,
1987,
1988,
1989,
1990,
1991,
1992,
-1992,
1993,
-1994,
1994,
1995,
1996
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47123"
},
"arcs": [
[
1997,
1998,
1999,
-2000,
2000,
2001,
-2002,
2001,
2002,
-2003,
2002,
2003,
2004,
2005,
2006,
2007,
-2008,
2007,
2008,
2009,
2010,
2011,
-2012,
2011,
2012,
2013,
-2014,
2013,
2014,
-2015,
2014,
2015,
2016,
2017,
2018,
-2019,
2019,
2020,
2021,
2022,
2023,
2024,
2025,
-2026,
2026,
2027,
-2028,
2027,
-2028,
2027,
2028,
2029,
2030
],
[
2031
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "20075"
},
"arcs": [
[
2032,
2033,
2034,
2035,
2036
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19151"
},
"arcs": [
[
2037,
2038,
2039,
2040,
2041
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16045"
},
"arcs": [
[
2042,
2043,
2044,
2045,
-2046,
2045,
2046,
2047,
2048,
2049,
2050,
-2051,
2050,
2051,
2052,
2053,
2054
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05063"
},
"arcs": [
[
2055,
2056,
2057,
2058,
2059,
2060,
-2061,
2060,
2061,
-2062,
2061,
2062,
2063,
2064,
2065,
-2066,
2066,
2067,
-2068,
2068,
2069,
2070,
-137
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05085"
},
"arcs": [
[
2071,
2072,
-2073,
2073,
2074,
-2075,
2074,
2075,
2076,
2077,
2078,
2079
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "18111"
},
"arcs": [
[
2080,
550,
-551,
-550,
-1320,
2081,
2082
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13119"
},
"arcs": [
[
2083,
2084,
2085,
2086,
2087,
2088,
2089,
2090,
2091,
2092,
-2093,
2093,
-2094,
2093,
2094,
2095,
2096
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "dolphins",
"team_color": "#9FE5FA",
"GEOID": "12051"
},
"arcs": [
[
2097,
2098,
2099,
-2100,
2100,
2101,
2102
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13265"
},
"arcs": [
[
2103,
2104,
2105,
-2106,
2105,
2106,
2107,
-2108,
2107,
2108,
2109,
2110,
2110,
2111,
2112,
2113,
2114,
2115,
2116,
2117,
-2118,
2118,
2119,
2120,
2121,
-2122,
2121,
-2122,
2121,
-2122,
2121,
-2122,
2122,
-97
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "texans",
"team_color": "#FA5454",
"GEOID": "48245"
},
"arcs": [
[
-589,
-588,
587,
-588,
-587,
2123,
2124,
2125,
2126,
2127,
2128,
-2129,
2129,
2130,
-2131,
2130,
2131,
-2132,
2131,
2132,
2133,
2133,
2134,
2135,
2136,
-580
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30059"
},
"arcs": [
[
2137,
2138,
-2139,
2138,
2139,
2140,
-2141,
2141,
2142,
-2143,
2142,
2143,
2144,
-2145,
2144,
2145,
2146,
-2147,
2147,
2148,
2148,
2148,
2149,
2150,
-2151,
2151,
2152,
2153,
2154,
2155,
2156,
2157,
2158,
2158,
2159,
2160,
-2161,
2160,
2161
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "08067"
},
"arcs": [
[
2162,
2163,
2164,
2165,
2166
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48027"
},
"arcs": [
[
2167,
2168,
-2169,
2169,
2170,
2171,
2172,
2173,
2174,
2175
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28069"
},
"arcs": [
[
2176,
2177,
2178,
2179,
2180
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05019"
},
"arcs": [
[
2181,
2182,
2183,
2184,
2185,
2186,
-2187,
2186,
2187,
2188,
2189,
2190,
-2191,
-2190,
2189,
2191,
2192,
2193,
2194,
2195,
-2196,
2195,
2196,
2197,
2198,
-2199,
2198,
2199,
2200,
2200,
2200,
2200,
2201,
2202,
-2203,
2202,
2203,
2204,
-2205,
2204,
-2205,
2204,
-2205,
2205
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "41035"
},
"arcs": [
[
2206,
2207,
2208,
2209,
-2210,
2209,
2210,
2211,
2212,
2213,
-2214,
2213,
2214,
2215,
2216,
2217,
2218
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants",
"team_color": "#5490E9",
"GEOID": "36075"
},
"arcs": [
[
2219,
2220,
2221,
2222,
2223,
2224,
-2225,
2224,
-2225,
2224,
2225,
2226,
2227,
2228,
2229,
2230
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01019"
},
"arcs": [
[
-482,
480,
-480,
-479,
478,
-479,
-478,
-477,
476,
2231,
-867,
-1544,
-1543,
2232,
2233,
2234,
2235,
2236
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48019"
},
"arcs": [
[
2237,
2238,
-780,
778,
2239,
2240,
2241,
2242
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30087"
},
"arcs": [
[
2243,
-1129,
-1128,
1127,
-1128,
-1127,
1125,
1125,
-1125,
-1124,
1123,
-1124,
1122,
-1123,
1122,
-1123,
-1122,
-1120,
1120,
-1121,
1119,
-1120,
-1119,
2244,
2245,
2246,
2247,
2248,
2249,
2250,
2251
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "35059"
},
"arcs": [
[
2252,
2253,
2254,
2255,
2256,
2257,
2258,
2259
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "26153"
},
"arcs": [
[
2260,
2261,
2262,
2263,
-981,
2264,
2265
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jets_giants",
"team_color": "green_blue",
"GEOID": "36111"
},
"arcs": [
[
2266,
2267,
2268,
-2269,
2268,
2269,
2270,
2271,
2272,
2273,
2274,
2275,
-2276,
2275,
2276,
2277,
-2278,
2277,
-2278,
2278
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "34007"
},
"arcs": [
[
2279,
2280,
-2281,
2280,
-2281,
2280,
2281,
2282,
-2283,
2282,
2283,
2284,
-2285,
2285,
2286,
2287,
-2288,
2287,
2288
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17083"
},
"arcs": [
[
2289,
2290,
2291,
2291,
2292,
-2293,
2293,
2294,
2295,
2296,
2297,
2298,
2299,
2300,
2301,
2302,
2303
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51085"
},
"arcs": [
[
2304,
2305,
2306,
2307,
2308,
2309,
-2310,
2309,
2310,
2311,
2312,
2313,
2314,
-2315,
2315,
2316,
2317,
2318,
2319,
-2320,
2319,
-2320,
2320,
-2321,
2320,
2321,
2322,
-2323,
2323,
2324,
-2325,
2324,
-2325,
2325,
2326,
-2327,
2326,
-2327,
2326,
-2327,
2326,
-2327,
2327,
2328,
-2329,
2328,
2329,
2330,
2331,
2332,
2333
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "20199"
},
"arcs": [
[
2334,
2335,
2336,
-1273,
2337,
2338
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "26003"
},
"arcs": [
[
2339,
2340,
2341,
-2266,
2342,
-922
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05049"
},
"arcs": [
[
2343,
2344,
2345,
2346,
2347,
2348
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48215"
},
"arcs": [
[
2349,
2350,
2351,
2352,
2353,
-2354,
2353,
2354,
2355,
2356,
2357,
2357
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37155"
},
"arcs": [
[
2358,
2359,
2360,
2361,
-2362,
2361,
2362,
2363,
2364,
2365,
2366,
2367,
2368,
2369,
-2370,
2369,
2370,
2371,
-2372,
2371,
2372,
2373,
2374,
-2375,
2374,
2375,
2376,
-2377,
2376,
2377
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26123"
},
"arcs": [
[
2378,
2379,
2380,
2381,
2382,
2383
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41049"
},
"arcs": [
[
2384,
2385,
2386,
2387,
2388,
2389
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27153"
},
"arcs": [
[
2390,
2391,
2392,
2393,
2394,
2395,
2396,
2397
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05083"
},
"arcs": [
[
2398,
2399,
2400,
2401,
2402,
2403,
2404,
2405,
2406,
2407,
2408,
2409,
2410,
2411,
2412
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37109"
},
"arcs": [
[
2413,
2414,
2415,
2416,
2417,
2418,
2419,
2420,
2421,
2422,
2423,
-2424,
2423,
2424,
2425,
2426
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "05091"
},
"arcs": [
[
2427,
2428,
2429,
-2429,
2428,
2430,
2431,
2432,
2433,
2434,
-2435,
2434,
2435,
2436,
2437,
-2438,
2438,
2439,
2440,
-2441,
2441,
2442,
2443,
2444,
2445,
-2446,
2445,
2446,
2447,
2448,
2449,
2450,
2451,
2452,
2453
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12095"
},
"arcs": [
[
2454,
2455,
-2456,
2455,
-2456,
2455,
2456,
2457,
-2458,
2457,
2458,
-2459,
2458,
-2459,
2458,
2459,
2460,
2461,
2462,
-2463,
2462,
2463,
2464,
2464,
2465,
2466,
2467,
2468,
-2469,
2468,
2469
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08111"
},
"arcs": [
[
2470,
2471,
2472,
2473,
-2474,
2473,
2474,
2475,
2476,
2477,
2478,
-2163,
2479
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16041"
},
"arcs": [
[
2480,
2481,
2482,
2483,
2484,
-2485,
2484,
-2485,
2484,
2485,
2486,
-2487,
2486,
2487,
-1499,
2488,
2489,
-2490,
2490
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13045"
},
"arcs": [
[
2491,
2492,
2493,
2494,
-2495,
2495,
2496,
2497,
2498,
2499,
2500,
2501,
2502,
2503
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20161"
},
"arcs": [
[
2504,
2505,
2506,
2507,
-2508,
2507,
2508,
2509,
2510,
2511,
2512,
2513,
2514,
2515,
2516
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48413"
},
"arcs": [
[
-41,
2517,
2518,
2519,
2520
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "51167"
},
"arcs": [
[
2521,
2522,
2523,
2524,
2525,
2526,
2526,
2527,
2528,
2529,
2530,
-2531,
2531,
2532,
-2533,
2533,
-2534,
2533,
2534,
2535,
2535,
2536,
2537,
2538,
2539,
2540,
2541,
-2542,
2541,
-2542,
2541,
-2542,
2541,
-2542,
2541,
-2542,
2541,
-2542,
2542,
2543,
-2544,
2543,
-2544,
2543,
2544,
-2522
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37027"
},
"arcs": [
[
2545,
2546,
2547,
2548,
-2549,
2548,
2549,
-2550,
2549,
2550,
2551,
-2552,
2551,
2552,
2553,
2554,
2555,
-2556,
2556,
2557,
2558
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16065"
},
"arcs": [
[
2559,
2560,
-2561,
2561,
2562,
-678,
-677,
676,
-677,
-676,
-675,
674,
-675,
-674
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18173"
},
"arcs": [
[
2563,
2564,
2565,
2566,
2567,
-2568,
2567,
2568,
2569,
2570,
2571,
2572,
2573,
2574,
-2564
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21001"
},
"arcs": [
[
2575,
2576,
-2577,
2576,
2577,
-2578,
2577,
2578,
2579,
2580,
2581,
2582,
2583,
2584
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21077"
},
"arcs": [
[
2585,
2586,
2587,
2588,
-2589,
2589,
2590,
2591,
-2592,
2592,
-2586
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21097"
},
"arcs": [
[
2593,
2594,
2595,
2596,
2597,
2598,
2599,
2600,
-2601,
2600,
2601,
2602,
-2603,
2602,
2603,
-1388,
-1387,
1385,
1385,
-1385,
1383,
2604,
2605,
-2606,
2606
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "23023"
},
"arcs": [
[
2607,
2608,
2609,
2610,
2611,
2612,
2613,
-2614,
2613,
2614,
-1559,
-1558,
-1557,
1556,
-1557,
-1556
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30097"
},
"arcs": [
[
-2153,
2615,
2616,
2617,
2618
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48181"
},
"arcs": [
[
-1773,
1771,
-1771,
2619,
737,
738,
-756,
2620,
2621,
2622,
2623
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42059"
},
"arcs": [
[
2624,
2625,
-2626,
2625,
2626,
2627,
2628,
2629,
-2630,
2629,
-2630,
2629,
2630,
2631,
2632,
2633,
2634,
2635,
-1803,
2636
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20051"
},
"arcs": [
[
2637,
2638,
2639,
2640
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01065"
},
"arcs": [
[
2641,
2642,
2643,
-310,
-309,
308,
2644,
2645,
-2646,
2645,
2646,
2647,
-2648,
2647,
2648,
2649,
-2649,
2650,
-2651,
2650,
2651,
2652,
2653,
2654,
2655,
-2656,
2656,
2657,
2658,
-2659,
2658,
2659,
2660,
-2661,
2660,
2661
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01105"
},
"arcs": [
[
2662,
2663,
2664,
2665,
2666,
-2667,
2666,
2667,
-311,
-2644
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01033"
},
"arcs": [
[
2668,
2669,
2669,
2670,
2671,
2672,
2673
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20151"
},
"arcs": [
[
2674,
2675,
2676,
2677,
2678,
2679
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21017"
},
"arcs": [
[
2598,
2680,
2681,
2682,
2683,
-2684,
2683,
2684,
2685,
-2686,
2685,
-2686,
2685,
-2686,
2685,
2686,
-2687,
2687,
2688,
2689,
2690,
2691,
2692,
-1389,
-1388,
1387,
-1388,
1387,
-1388,
1387,
-2604,
-2603,
2602,
-2603,
-2602,
-2601,
2600,
-2601,
-2600,
-2599
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47149"
},
"arcs": [
[
2693,
2694,
2695,
-2696,
2695,
2696,
2697,
2698,
2699,
2700,
2700,
2701,
2702,
2703,
2704,
2705,
-2706,
2706,
2707,
-2708,
2707,
2708,
2709,
-2710,
2709,
2710,
2711,
2712,
2713,
2714,
2715,
-2716,
2715,
2716,
2717,
2718,
2719,
-2694
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13075"
},
"arcs": [
[
2720,
2721,
-2722,
2722,
2723,
2724,
2725,
2726,
2727,
-2728,
2727,
2728,
2729,
2730,
-2731,
2730,
2731,
2732,
2733
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20101"
},
"arcs": [
[
2734,
2735,
2736,
2737
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40059"
},
"arcs": [
[
2738,
2739,
2740,
2741,
2742,
2743,
2744
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17147"
},
"arcs": [
[
2745,
-1550,
2746,
2747,
2748,
-2749,
2749,
2750
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48107"
},
"arcs": [
[
2751,
2752,
2753,
2754
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01063"
},
"arcs": [
[
2755,
2756,
2756,
2756,
2757,
2758,
-2759,
2758,
-2759,
2758,
-2759,
2758,
2759,
-2760,
2759,
2760,
2761,
-2762,
2761,
-2762,
2761,
2762,
2763,
-2764,
2763,
2764,
-2765,
2764,
2765,
-2662,
-2661,
2660,
-2661,
-2660,
-2659,
2658,
-2659,
-2658,
-2657,
2655,
-2656,
-2655,
2653,
-2653,
2651,
-2651,
2650,
-2651,
2648,
2649,
-2649,
-2648,
2647,
-2648,
-2647,
-2646,
2645,
-2646,
-2645,
-309,
307,
-307,
2766,
2767,
2768,
-2769,
2769,
2770
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16033"
},
"arcs": [
[
2771,
2772,
2773,
-672,
2774,
2775,
2776,
2777,
2778,
2779,
2780,
2781,
-2782,
2781,
-2782,
2781,
2782,
2783,
2784,
2785,
-2786,
2785,
2786
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "19109"
},
"arcs": [
[
2787,
2788,
2789,
2790,
2791,
2792,
2793
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38013"
},
"arcs": [
[
2794,
2795,
2796,
2797,
2798,
2798,
2799,
2800,
-2801,
2800,
-2801,
2800,
-2801,
2800,
2801,
2802,
2803,
2804,
2805
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37063"
},
"arcs": [
[
2806,
2807,
2808,
-194,
2809
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "19085"
},
"arcs": [
[
2810,
2811,
2812,
2813,
2814,
2815,
2816
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31103"
},
"arcs": [
[
2817,
2818,
2819,
-1205,
2820,
2821,
2822,
-1930,
1928,
1928,
-1928,
1926
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19187"
},
"arcs": [
[
-2039,
2823,
2824,
2825,
2826,
2827,
2828
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17151"
},
"arcs": [
[
2829,
2830,
2831,
2832,
2833,
-2834,
2834
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47159"
},
"arcs": [
[
2835,
2836,
2837,
-2838,
2838,
2839,
2840,
2841,
2842,
2843,
2844,
2844,
2845,
2846,
-2847,
2846,
2847,
2848,
2848,
2849,
2850,
2850,
2851,
2852,
2853
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "51089"
},
"arcs": [
[
2854,
2855,
2856,
-2857,
2856,
2857,
2858,
2859,
2860,
-2861,
2861,
2862,
2863,
2864,
-2855,
2854,
-2855
],
[
2865,
2866
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51510"
},
"arcs": [
[
2867,
2868,
2869,
2870,
2871,
-2872,
2872,
2867,
2867
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19101"
},
"arcs": [
[
2873,
2874,
2875,
2876,
2877
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30049"
},
"arcs": [
[
2878,
2879,
2880,
2881,
2882,
2883,
2884,
-2885,
2884,
2885,
2886,
2886,
2886,
2887,
2888,
2889,
-2890,
2889,
2890,
-2891,
2890,
2891,
2892,
-2893,
2892,
2893,
2894,
2895,
-2896,
2895,
-2896,
2895,
2896,
-2897,
2896,
2897,
-2898,
2897,
2898,
-2141,
-2140,
-2139,
2138,
-2139,
-2138,
2899,
2900,
2901,
2902,
2903,
2904,
2905,
2906,
-2907,
2907
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49013"
},
"arcs": [
[
2908,
2909,
2910,
2911,
2912,
2913,
2914,
2915,
2916,
2917,
2918,
2919,
-2920,
2919,
2920,
2921,
2922,
2923
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40003"
},
"arcs": [
[
2924,
2925,
2926,
2927,
2928,
2929
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48119"
},
"arcs": [
[
2930,
-2931,
2930,
-2931,
2930,
-2931,
2930,
-2931,
2930,
2931,
-2932,
2931,
2932,
-2933,
2932,
2933,
2934,
-2935,
2934,
-2935,
2934,
2935,
2936,
-2937,
2937,
-753,
-752,
2938,
-2939,
2938,
-2939,
2938,
2939,
2940,
-2941,
2940,
2941,
2942,
-2943,
2942,
-2943,
2942,
2943,
2944,
-2945,
2944,
-2945
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47169"
},
"arcs": [
[
2945,
2946,
-2836,
2947,
2948,
2949,
-2946,
2950,
2950
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21193"
},
"arcs": [
[
2951,
2952,
2953,
2954,
2955,
-2956,
2955,
2956,
2957,
2958,
-2959,
2958,
2959,
2960,
2961,
-2962,
2961,
2962,
2963,
2964,
2965,
2966,
2967,
-2968,
2968,
2967,
2969,
2970,
2971,
2972,
2973,
2974,
-2975,
2974,
2975,
2976,
2977,
2978,
2979,
2980,
-2981,
2980,
2981,
2982,
-2983,
2982,
2983,
2984,
2985,
-2986,
2985,
2986,
2987,
-2988,
2988,
-2989,
2988,
2989,
2990,
2991
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46039"
},
"arcs": [
[
2992,
2993,
-1496,
2994,
2995,
2996,
2997
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "41029"
},
"arcs": [
[
-2208,
2998,
2999,
3000,
3001
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48507"
},
"arcs": [
[
3002,
3003,
-1469,
3004,
3005
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "31007"
},
"arcs": [
[
3006,
3007,
3008,
3009,
3010,
3011
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19121"
},
"arcs": [
[
3012,
3013,
3014,
3015,
3016
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "dolphins",
"team_color": "#9FE5FA",
"GEOID": "12011"
},
"arcs": [
[
3017,
3018,
3019,
-2102,
3020
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13279"
},
"arcs": [
[
3021,
3022,
-3023,
3023,
-3024,
3023,
-3024,
3023,
3024,
3025,
-3026,
3026,
3027,
3027,
3028,
3029,
3030,
3031
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26151"
},
"arcs": [
[
3032,
3033,
3034,
3035,
3036
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48397"
},
"arcs": [
[
3037,
3038,
3039,
3040
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26163"
},
"arcs": [
[
3041,
3042,
3043,
3044,
-3045,
3044,
3045,
3046,
3047
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27105"
},
"arcs": [
[
3048,
3049,
3050,
3051,
3052,
3053
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27001"
},
"arcs": [
[
3054,
3055,
3056,
3057,
3058,
3059,
1208,
-1209,
1208,
-1209,
-1208,
3060
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38071"
},
"arcs": [
[
3061,
-1243,
3062,
3063,
-3064,
3063,
-3064,
3063,
3064,
3065,
3065,
3065,
3066,
3067,
3068,
3069,
3070,
-3071,
3070,
3071,
3072,
-3073,
3072,
3073,
3074,
3075,
3076,
3077,
3078,
3079,
3080,
-3081,
3080,
3081,
3082
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37145"
},
"arcs": [
[
3083,
3084,
-2807,
3085,
3086
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20195"
},
"arcs": [
[
3087,
-2641,
3088,
3089
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28151"
},
"arcs": [
[
3090,
3091,
3092,
3093,
3094,
3095,
3096,
3097,
-3097,
3096,
3098,
3099,
3100,
3101,
3102,
3103,
3104,
3105,
3106,
-3105,
3107,
3108
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48133"
},
"arcs": [
[
3109,
3110,
3111,
3112,
3113,
3114,
3115,
3116
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28055"
},
"arcs": [
[
3117,
3118,
3119,
3120,
3121,
-3122,
3122,
3123,
3124,
3125,
3126,
3127,
3128,
3129,
3094,
3130,
3131,
-3095,
-3094
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48123"
},
"arcs": [
[
3132,
3133,
-687,
-686,
3134,
3135
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48005"
},
"arcs": [
[
3136,
3137,
-3138,
3138,
3139,
3140,
3141,
-3142,
3141,
3142,
-3143,
3142,
3143,
3144,
-3145,
3144,
-3145,
3144,
-3145,
3144,
3145,
3146,
-3147,
3146,
3147,
3148,
3149,
3149,
3150,
-3151,
3150,
3151,
3152,
-3153,
3152,
3153,
3154,
3155,
3156,
3157,
-3158,
3157,
-3158,
3157,
3158,
3159,
-3160,
3159,
-3160,
3159,
3160,
3161,
3162,
3163,
3164,
3165,
-3166,
3166,
3167,
-3168,
3167,
-3168,
3167,
3168,
3169
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45081"
},
"arcs": [
[
3170,
3171,
3172,
-3173,
3172,
3173,
3174,
3175,
3176,
3177,
3178,
3179,
3180,
3181,
3182,
-3183,
3182,
3183
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29125"
},
"arcs": [
[
3184,
3185,
3186,
3187,
3188,
3189,
3190
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05001"
},
"arcs": [
[
3191,
3192,
3193,
3194,
3195,
-3196,
3195,
3196,
3197,
3198,
3199,
3200,
3201,
3202,
3203,
3204,
3205,
3206,
3207,
3208,
3209,
3210,
3211,
-3212,
3211,
-3212,
3211,
3212,
3213,
-3214,
3213,
3214,
3215,
3216,
3217,
3218,
-2078,
3219
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29109"
},
"arcs": [
[
3220,
3221,
3222,
3223,
3224,
3225,
3226
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51540"
},
"arcs": [
[
3227,
-3228,
3227,
3228,
3228,
3229,
3230,
-3231,
3230,
3231,
-3232,
3231,
3232,
-3233,
3232,
3233
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17011"
},
"arcs": [
[
3234,
3235,
3236,
3237,
3238,
3239,
3240
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39145"
},
"arcs": [
[
3241,
3242,
3243,
3244,
3245,
3246,
3247,
3248,
3249,
3250
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "37115"
},
"arcs": [
[
3251,
3252,
3253,
3254,
3255,
3256,
3257,
3258,
3259,
3260,
3261,
3262,
3263,
3264,
3265,
3266
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16053"
},
"arcs": [
[
3267,
3268,
3269,
3270,
3271,
3272
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39163"
},
"arcs": [
[
3273,
3274,
3275,
-3276,
3276,
3277,
3278,
3279,
3280,
-3274
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48309"
},
"arcs": [
[
3281,
3282,
3283,
3284,
3285,
3286,
-2169,
-2168,
3287,
3288
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16037"
},
"arcs": [
[
3289,
3290,
3291,
3292,
3293,
3294,
3295,
3296,
3297,
-3298,
3297,
3298,
3299,
3300,
3301,
3302,
-3303,
3302,
-3303,
3302,
3303,
3304,
3305,
3306,
-3307,
3306,
3307,
3308,
-3309,
3308,
3309,
3310,
3311,
3312,
-3313,
3313,
3314,
3315,
3316,
3317,
3318,
3319,
3320,
3321,
3322,
3323,
3324,
3325,
3326,
-3327,
3326,
-3327,
3326,
3327,
3328,
-3329,
3328,
3329,
3330,
-3331,
3330,
-3331,
3330,
3331,
3332,
3333,
3334,
3335,
-3336,
3335,
3336,
3337,
3338,
-3339,
3339,
3340,
3341,
-3290
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "19089"
},
"arcs": [
[
3342,
-1472,
3343,
3344,
3345
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "dolphins",
"team_color": "#9FE5FA",
"GEOID": "12099"
},
"arcs": [
[
3346,
-3021,
-2101,
2099,
3347
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13181"
},
"arcs": [
[
3348,
3349,
3350,
3351,
3352,
3353,
1106,
1107,
-1108,
-1107,
1105,
-1105,
1103,
-1103,
106,
-107,
-106,
104,
3354,
3355,
3356,
-3357,
3357
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01013"
},
"arcs": [
[
3358,
3359,
3360,
3361,
3362,
3363,
3364,
-3365,
3364,
3365
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47165"
},
"arcs": [
[
3366,
3367,
-623,
3368,
2950,
2950,
2945,
-2950,
3369,
3370,
-3371,
3370,
3371,
3372,
3373,
3374,
-3373,
3375,
3376,
3377,
3378,
3379,
3380,
3381,
3381,
3382,
3383,
-3384,
3383,
3384
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51097"
},
"arcs": [
[
3385,
-3386,
3385,
-3386,
3386,
3387,
-3388,
3387,
3388,
-3389,
3388,
3389,
3390,
3391,
3392,
3393,
3394,
3395,
3396,
-3397,
3396,
3397,
3398,
3399,
3400,
3401,
3402,
-3403,
3402,
3403,
-397,
395,
3404,
3405,
3406,
3407,
3408,
-3409,
3408,
3409,
3410,
-3411,
3410,
3411,
3412,
3413,
3414,
-3415,
3414,
3415,
3416,
-3417,
3416,
-3417,
3416,
3417,
-3418,
3417
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05015"
},
"arcs": [
[
3418,
3419,
3420,
3421,
3422,
3423,
3424,
3425,
-3426,
3425,
-3426,
3425,
3426,
3427,
3428
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51820"
},
"arcs": [
[
3429,
-3430,
3429,
3430,
-3431,
3430,
3431,
3432,
-3433,
3432,
3433,
-3434,
3433,
-3434,
3433,
3434
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41051"
},
"arcs": [
[
3435,
3436,
3437,
3438,
-3439,
3438,
-3439,
3439,
-1278,
3440
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47061"
},
"arcs": [
[
3441,
3442,
3443,
-3444,
3444,
3445,
3446,
-698,
-697,
-696,
695,
-696,
695,
-696,
-695,
-694,
693,
3447
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27057"
},
"arcs": [
[
3448,
3449,
3450,
3451,
3452
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38081"
},
"arcs": [
[
3453,
3454,
3455,
3456
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "36089"
},
"arcs": [
[
3457,
3458,
3459,
3460,
3461,
3462,
3463
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "29179"
},
"arcs": [
[
3464,
3465,
3466,
3467,
3468,
3469,
-3470,
3469,
3470,
3471,
3472
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06067"
},
"arcs": [
[
3473,
-3474,
3474,
3475,
3476,
3477,
3478,
3479,
3480,
-3481,
3480,
3481,
3482,
3483,
3484,
3485,
3486,
3487,
3488,
3489
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "39125"
},
"arcs": [
[
3490,
3491,
3492,
-1412
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18179"
},
"arcs": [
[
3493,
3494,
3495,
3496,
3497,
3498,
3499,
-1381,
-1415
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "51063"
},
"arcs": [
[
-253,
3500,
3501,
3502,
3503,
3504,
3505,
-3506,
3506,
3507,
3508,
3509,
-3510,
3509,
258,
-259,
258,
-259,
-258,
-257,
256,
-257,
-256,
254,
254,
254,
-254
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "06083"
},
"arcs": [
[
[
3510,
3511
]
],
[
[
3512
]
],
[
[
3513,
3514,
3515,
3516,
3517,
3518,
3519,
3520,
-3521,
3520,
3521,
3522,
3523,
3524,
-3525,
3524,
3525,
3526,
3527,
3528,
-3529,
3528,
3529,
3530,
-3531,
3530,
3531,
3532,
3533
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54005"
},
"arcs": [
[
3534,
3535,
3536,
3537,
3538,
3539,
3540,
3541,
3542,
-3543,
3542,
3543,
3544,
-3545,
3544,
3545,
3546,
3547,
-3548,
3547,
3548,
3549,
3550,
3551,
3552,
3553,
3554,
-3555,
3554,
3555,
3556,
3557,
3558,
-3559,
3559,
3560,
3561,
3562,
-3563,
3563
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28009"
},
"arcs": [
[
3564,
3565,
3566,
-1188,
3567
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21055"
},
"arcs": [
[
3568,
3569,
-3570,
3570,
3571,
3572,
3573,
3574,
3575,
3576,
3577,
3578,
3579,
-3580,
3579,
3580,
-3581,
3581,
3582,
3583,
3584,
3585,
-3586,
3586,
3587,
-3588,
3587,
-3588,
3587,
3588
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "19147"
},
"arcs": [
[
3589,
-2794,
-2042,
3590
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "19159"
},
"arcs": [
[
3591,
-1401,
3592,
3593,
3594
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37151"
},
"arcs": [
[
3595,
-637,
-206,
3596,
3597,
-933
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "ravens",
"team_color": "#AA54C1",
"GEOID": "24015"
},
"arcs": [
[
3598,
3599,
3600,
-3601,
3600,
-3601,
3600,
3601,
3602,
3603,
3604,
3605,
3606
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "18171"
},
"arcs": [
[
-1323,
3607,
3608,
3609,
3610
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31077"
},
"arcs": [
[
3611,
3612,
3613,
3614,
3615
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31095"
},
"arcs": [
[
3616,
3617,
3618,
3619
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31151"
},
"arcs": [
[
3620,
-24,
3621,
-3617,
3622
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21119"
},
"arcs": [
[
3623,
-3624,
3623,
3624,
-3625,
3624,
3625,
3626,
3627,
3628,
3629,
3629,
3630,
3631,
-3632,
3631,
-3632,
3631,
3632,
3633,
3634,
3635,
3635,
3636,
3637,
3638,
3639,
-3640,
3639,
3640,
-2967,
-2966,
2964,
2963,
-2963,
-2962,
2961,
-2962,
-2961,
3641,
3642
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19045"
},
"arcs": [
[
3643,
3644,
3645,
3646,
3647,
3648,
3649,
3650,
3650,
3651,
3652,
-3653,
3652,
3653,
3654,
3655,
-1866,
3656,
3657
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27063"
},
"arcs": [
[
3658,
3659,
3660,
3661,
3662,
-3050
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27039"
},
"arcs": [
[
3663,
3664,
3665,
3666
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27047"
},
"arcs": [
[
3667,
3668,
3669,
3670,
3671,
3672
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06009"
},
"arcs": [
[
3673,
3674,
3675,
3675,
3676,
3677,
3678,
-3679,
3679,
3680,
3681,
-3682,
3682,
3683,
3684,
3685,
3686,
-3687,
3686,
3687,
3688,
3689
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "25001"
},
"arcs": [
[
3690,
3691,
3692,
3693,
3694,
3695,
3696,
3697,
3698
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51119"
},
"arcs": [
[
-3398,
-3397,
3396,
-3397,
-3396,
-3395,
3699,
3700,
3701,
3702,
3703,
3704,
3705,
3706,
3707,
-3399,
3398,
-3399,
3398,
-3399,
3398,
-3399,
3398,
-3399
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42065"
},
"arcs": [
[
499,
-500,
-499,
-498,
3708,
3709,
3710,
3711,
3712,
3713,
3714,
3715,
3716,
-3717,
3717
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "18089"
},
"arcs": [
[
3718,
3719,
-3720,
3719,
3720,
-544,
-543,
-551,
-2081,
3721,
3722,
3723
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47003"
},
"arcs": [
[
-2711,
-2710,
2709,
-2710,
-2709,
-2708,
2707,
-2708,
-2707,
2705,
3724,
3725,
3726,
3727,
3728,
-3729,
3728,
-3729,
3728,
3729,
3730,
3731,
3732,
3733,
3734,
-3735,
3734,
-3735,
3735,
3736,
3737
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47027"
},
"arcs": [
[
3738,
3739,
3740,
3741,
3742,
3743,
3744,
3745,
3746,
3747,
3747,
3748,
3749,
-3750,
3750,
3751,
3752,
-3739
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17029"
},
"arcs": [
[
3753,
3754,
3755,
3756,
3757,
3758
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47097"
},
"arcs": [
[
3759,
3760,
3761,
-3762,
3761,
3762,
3763,
3764,
-3765,
3764,
3765,
3766,
-3767,
3767,
3768,
-3769,
3768,
3769,
3770,
3771,
3772,
3772,
3772,
3772,
3773,
3774,
3774,
3774,
3774,
3774,
3775,
3776,
3777,
-3778,
3777,
3778,
3779,
-3780,
3780,
3781,
3782,
3783,
3784
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "41001"
},
"arcs": [
[
-150,
3785,
3786,
3787,
3788,
3789,
3790,
3791,
3791,
3792,
3793,
3794,
3795,
3796,
3796,
3796,
3796,
3797,
3798,
3799
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bills",
"team_color": "#5486C1",
"GEOID": "36097"
},
"arcs": [
[
-488,
3800,
3801,
3802,
3803
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26159"
},
"arcs": [
[
3804,
3805,
3806,
3807,
3808,
3809,
3810
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17131"
},
"arcs": [
[
3811,
3812,
3813,
3814,
3815,
3816
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21127"
},
"arcs": [
[
3817,
3818,
3819,
-3820,
3819,
3820,
3821,
3822,
3823,
3824,
3825,
-3826,
3826,
3827,
3828,
-3829,
3828,
3829,
3830,
-3831,
3830,
3831,
3832,
-3833,
3832,
3833,
3834,
3835,
3836,
-3837,
3836,
-3837,
3836,
3837,
-3838,
3838,
3839,
-3840,
3839
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21175"
},
"arcs": [
[
3840,
-3841,
3840,
-3841,
3840,
3841,
3842,
-3843,
3842,
-3843,
3842,
3843,
3844,
3845,
-3846,
3845,
3846,
3847,
-3848,
3847,
-3827,
3825,
3848,
3849,
3850,
-3851,
3851,
-3852,
3851,
3852,
-3853,
3852,
3853,
3854,
-3855,
3854,
3855,
-3856,
3855,
-3856,
3855,
3856,
3857,
3858,
-3859,
3858,
3859,
3860,
-3861,
3860,
3861
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21177"
},
"arcs": [
[
3862,
3863,
3864,
-3865,
3865,
3866,
3867,
3868,
-3869,
3869,
3870,
3871,
3872,
-3872,
3871,
3873,
-3874,
3873,
3874,
3875,
3876,
3877,
3878,
-3879,
3878,
3879,
3879,
3880,
3881,
3882,
-3883,
3882,
3883,
-3884,
3883,
3884,
-3885,
3884,
3885,
3886,
-3887,
3886,
3887,
-3888,
3887,
-3888,
3887,
3888,
3889,
-3890,
3889,
-3863
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17049"
},
"arcs": [
[
3890,
3891,
3892,
-947,
3893
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47105"
},
"arcs": [
[
[
-1998,
1997,
3894
]
],
[
[
2031
]
],
[
[
3895,
3896,
3897,
3898,
2005,
-2006,
-2005,
-2004,
-2003,
2002,
-2003,
-2002,
2001,
-2002,
-2001,
1999,
-2000,
-1999,
1998,
-1999,
3899,
3900,
1999,
3901,
3902,
3903
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46025"
},
"arcs": [
[
3904,
3905,
3906,
3907,
3908,
-3909,
3908,
-3909,
3908,
3909,
3910,
3911
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jags",
"team_color": "#54AAC1",
"GEOID": "12041"
},
"arcs": [
[
3912,
3913,
3914,
3915,
3916,
-3917,
3916,
3917,
3918,
3919,
3920,
-3921,
3921,
3922,
3923,
3924
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18157"
},
"arcs": [
[
-3608,
-1322,
3925,
3926,
3927,
3928,
3929
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42109"
},
"arcs": [
[
3930,
3931,
-3932,
3932,
3933,
-3934,
3933,
-3934,
3933,
-3934,
3934,
3935,
3936,
3937,
3938,
3939,
3940
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48277"
},
"arcs": [
[
749,
-750,
3941,
3942,
3943,
3944,
3945,
3946,
3947,
-3948,
3947,
3948,
3949,
-2945,
2944,
-2945,
2944,
-2945,
-2944,
-2943,
2942,
-2943,
2942,
-2943,
-2942,
-2941,
2940,
-2941,
-2940,
-2939,
2938,
-2939,
2938,
-2939,
751,
-752,
-751,
-750
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "dolphins",
"team_color": "#9FE5FA",
"GEOID": "12086"
},
"arcs": [
[
3950,
3951,
3952,
-3953,
3953,
3954,
-3955,
3954,
-3955,
3955,
3956,
3957,
-3958,
-3957,
3956,
-3957,
3958,
-3959,
3958,
3959,
-3960,
3960,
3961,
3962,
3963,
3964,
3965,
-3966,
3965,
-3963,
3962,
-3966,
3965,
-3966,
3966,
3967,
3968,
3969,
-3019
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "31057"
},
"arcs": [
[
3970,
3971,
3972,
3973,
3974
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48289"
},
"arcs": [
[
3975,
-3976,
3976,
-3977,
3977,
3978,
3979,
3980,
-3981,
3980,
3981,
3982,
3983,
-3984,
3983,
3984,
-3985,
3984,
3985,
3986,
3987,
3988,
3989,
3990,
-3991,
3990,
3991,
3992,
-3993,
3992,
3993,
3994,
3995,
-3976
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08097"
},
"arcs": [
[
3996,
3997,
3998,
3999,
-4000,
4000,
4001,
4002,
-4003,
4002,
-4003,
4002,
4003,
4004,
4005,
4006,
4007,
4008,
-4009,
4008,
4009
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38035"
},
"arcs": [
[
-1241,
-1240,
1239,
-1240,
1239,
4010,
4011,
4012,
4013,
4014,
4015
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "18091"
},
"arcs": [
[
4016,
4017,
4018,
4019,
-4020,
4020
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18057"
},
"arcs": [
[
4021,
4022,
4023,
4024,
4025,
4026
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "51595"
},
"arcs": [
[
4027,
-4028,
4028,
4029
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40081"
},
"arcs": [
[
4030,
4031,
4032,
4033,
4034,
4035,
4036
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "20071"
},
"arcs": [
[
-1274,
-2337,
4037,
-2033,
4038,
4039
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13145"
},
"arcs": [
[
4040,
4041,
4042,
4043,
4044,
4045,
4046,
4047,
4048
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13251"
},
"arcs": [
[
4049,
4050,
-4051,
4050,
4051,
4052,
-4053,
4052,
4053,
4054,
4055,
4056,
4057,
4058,
-4059,
4058,
4059,
-4060,
4059,
4060,
4061,
4062,
4063,
4064,
4065,
4066,
4067,
-4068,
4067,
4068,
4069,
-4070,
4069,
4070,
4071,
-4072,
4071,
4072,
4073,
4074
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48433"
},
"arcs": [
[
4075,
4076,
4077,
4078,
4079
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39069"
},
"arcs": [
[
4080,
4081,
4082,
4083,
-74,
4084,
4085
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "33009"
},
"arcs": [
[
4086,
4087,
-4088,
4087,
4088,
4089,
4090,
4091,
4092,
4093,
4094,
4095,
4096,
4097,
4098,
-4099,
4098,
4099,
-4100,
4100,
4101,
4102,
4103,
4104,
-4105,
4104,
-4105,
4104,
4105,
4106,
-4107,
4106,
4107
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29145"
},
"arcs": [
[
4108,
4109,
-3226,
4110,
4111,
4112,
4113
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18129"
},
"arcs": [
[
4114,
4115,
4116,
4117,
4118,
4119,
4120,
4121,
4122,
4123,
4124,
4125,
-4126,
4126,
4127,
4128,
4129,
4130,
4131,
-4132,
4132
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48311"
},
"arcs": [
[
4133,
4134,
4135,
4136
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "17035"
},
"arcs": [
[
-3756,
4137,
4138,
-3892,
4139
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13297"
},
"arcs": [
[
4140,
4141,
4142,
-4143,
4143,
4144,
-4145,
4144,
-4145,
4144,
4145,
4146,
-4147,
4147,
4148,
4149,
4150,
4151,
4152
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27121"
},
"arcs": [
[
4153,
4154,
4155,
4156,
4157
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51157"
},
"arcs": [
[
4158,
4159,
-4160,
4160,
4161,
4162,
4163,
4164,
4165,
4166,
-4167,
4166,
-4167,
4166,
4167
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51009"
},
"arcs": [
[
4168,
4169,
-4170,
4169,
4170,
4171,
4172,
-4173,
4172,
4173,
4174,
-4175,
4175,
4176,
4177,
4178,
-4179,
4178,
4179,
4180,
4181
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "06111"
},
"arcs": [
[
[
4182
]
],
[
[
-3512,
4183
]
],
[
[
-3533,
4184,
4185,
4186
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "17033"
},
"arcs": [
[
4187,
4188,
4189,
4190,
4191,
4192,
4193,
4194,
-4195,
4195,
4196,
-4197,
4196,
4197,
4198,
4199,
4200
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08093"
},
"arcs": [
[
4201,
4202,
4203,
4204,
4205,
4206,
4207,
4208,
4209,
4210,
-4211,
4211,
4212,
-4213,
4212,
4213,
4214,
-4215,
4214,
4215,
4216,
4216,
4217,
4218,
4219
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "06037"
},
"arcs": [
[
[
4220
]
],
[
[
4221
]
],
[
[
4222,
-4223,
4222,
4223,
4224,
4225,
4226,
4227,
4228,
-4186
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "04027"
},
"arcs": [
[
4229,
4230,
4231,
4232,
4233,
4234
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13129"
},
"arcs": [
[
4235,
4236,
4237,
4238,
-4239,
4238,
4239,
4240,
-4241,
4241,
4242,
-1887,
4243,
-862,
861,
-862,
-861,
-860,
-859
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19025"
},
"arcs": [
[
-2040,
-2829,
4244,
-1972,
4245
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12055"
},
"arcs": [
[
4246,
4247,
4248,
-4249,
4248,
4249,
4250,
-4251,
4250,
4251,
-4252,
4251,
4252,
-4253,
4252,
4253,
4254,
-4255,
4254,
4255,
4256,
-4257,
4257,
4258,
4259,
4260,
4261
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "51580"
},
"arcs": [
[
4262,
4263
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "50017"
},
"arcs": [
[
4264,
-4108,
-4107,
4106,
-4107,
-4106,
-4105,
4104,
-4105,
4104,
-4105,
-4104,
4265,
4266,
4267,
4268,
4269,
4270,
4271,
4272
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20113"
},
"arcs": [
[
4273,
4274,
4275,
4276,
4277,
4278
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cardinals",
"team_color": "#C15454",
"GEOID": "04021"
},
"arcs": [
[
4279,
4280,
4281,
4282,
-4283,
4282,
4283,
4284,
-4285,
4284,
4285,
4286,
4287,
4288,
4289,
4289,
4290,
4291,
-4292,
4292,
4293,
4294,
4295,
4296,
-4296,
4295,
-4296,
4295,
-4296,
4297
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39051"
},
"arcs": [
[
4298,
4299,
4300,
-4082,
4301
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08003"
},
"arcs": [
[
-187,
4302,
4303,
4304,
4305,
4306,
4307
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12017"
},
"arcs": [
[
4308,
4309,
4310,
4311,
4312,
4313,
4314,
4315,
-785
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47041"
},
"arcs": [
[
2848,
2848,
-2848,
-2847,
2846,
-2847,
-2846,
2844,
2844,
-2844,
4316,
4317,
4318,
-737,
736,
-737,
-736,
-735,
734,
-735,
-734,
-733,
731,
-732,
-731,
729,
4319,
4320,
-4321,
4321,
4322,
4323,
4324,
4324,
4324
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42031"
},
"arcs": [
[
-501,
-500,
-3718,
3716,
4325,
4326,
4327,
4328,
-4329,
4328,
4329,
4330,
4331,
4332,
4333,
-4334,
4333,
4334,
4335,
4336,
4337,
4338
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46097"
},
"arcs": [
[
4339,
4340,
4341,
4342,
4343
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46073"
},
"arcs": [
[
4344,
4345,
4346,
4347,
4348,
4349
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18031"
},
"arcs": [
[
4350,
4351,
4352,
4353,
4354,
4355,
4356,
4357
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18037"
},
"arcs": [
[
4358,
4359,
4360,
4361,
-1872,
4362,
-1178,
4363,
-2566,
4364
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51057"
},
"arcs": [
[
-3388,
4365,
4366,
-4367,
4367,
4368,
-4369,
4369,
4370,
-4371,
4370,
4371,
4372,
4373,
4374,
-3700,
3394,
-3395,
-3394,
3392,
-3392,
3390,
-3390,
-3389,
3388,
-3389
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "45089"
},
"arcs": [
[
4375,
4376,
4377,
-4378,
4377,
4378,
4379,
4379,
4380,
4381,
-4382,
4382,
4383,
4384,
4385,
-4386,
4386,
4387,
4388,
4389
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "36031"
},
"arcs": [
[
4390,
4391,
-4392,
4391,
4392,
4393,
4394,
4395,
4396,
4397,
4398,
-4399,
4398,
4399,
4400,
4401,
4402,
4403,
4404,
4405,
4406,
-4407,
4406,
4407
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "19195"
},
"arcs": [
[
-3671,
4408,
4409,
4410,
4411
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "51027"
},
"arcs": [
[
4412,
4413,
4414,
4415,
4416,
-4417,
-4416,
4417,
4418,
4419,
2521,
-2545,
-2544,
2543,
-2544,
2543,
-2544,
-2543,
2541,
-2542,
2541,
-2542,
2541,
-2542,
2541,
4420,
4421,
-4422,
4421,
-4422,
4421,
4422,
-4413
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "51005"
},
"arcs": [
[
4423,
4424,
-4425,
4425,
4426,
4427,
4428,
4429,
-4430,
4429,
-4430,
4429,
4430,
4431,
4432,
4433,
4434,
4435,
4436,
-4437,
4436,
4437
],
[
-4263,
4263
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28087"
},
"arcs": [
[
4438,
4439,
4440,
4441,
4442,
4443,
4444,
4445,
-4446,
4445,
4446,
4447,
4448,
4449,
4450,
-4451,
4450,
-4451,
4450,
-4451,
4450,
-4451,
4450,
4451,
4452,
4453
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18143"
},
"arcs": [
[
4454,
4455,
4456,
4457,
-4458,
4457,
4458,
4459,
4460,
-4461,
4460,
4461,
4462,
-4463,
4462
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08099"
},
"arcs": [
[
-4039,
-2037,
4463,
4464,
4465,
4466
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48435"
},
"arcs": [
[
4467,
4468,
4469,
4470,
-2518
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40101"
},
"arcs": [
[
4471,
4472,
4473,
-4474,
4473,
4474,
4475,
-4476,
4475,
4476,
4477,
-471,
469,
-470,
-469,
4478,
4479,
4480,
4481,
4482,
4483,
4484
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29043"
},
"arcs": [
[
-3223,
4485,
4486,
4487,
4488,
4489
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28073"
},
"arcs": [
[
4490,
4491,
4492,
4493,
4494
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18137"
},
"arcs": [
[
-4353,
-4352,
4495,
4496,
-1095,
4497,
4498,
4499,
-4354
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38057"
},
"arcs": [
[
4500,
4501,
4502,
-4503,
4502,
4503,
4504,
4505,
4506,
4507,
4508,
4509,
-4501
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13147"
},
"arcs": [
[
4510,
4511,
4512,
4513,
4514,
-2087,
-2086
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22049"
},
"arcs": [
[
4515,
4516,
-1618,
4517,
4518,
-4519,
4518,
4519
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51133"
},
"arcs": [
[
4520,
4521,
4522,
-4523,
4522,
4523,
4524,
4525,
4526,
4527,
-4528,
4527,
4528,
4529
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "texans",
"team_color": "#FA5454",
"GEOID": "48157"
},
"arcs": [
[
4530,
4531,
-4532,
4532,
4533,
4534,
4535,
4536,
4537,
-4538,
4537,
4538,
4539,
-4540,
4539,
4540,
4541,
4542,
4543,
4543,
4544,
4545,
4546,
4547,
-4548,
4548
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55047"
},
"arcs": [
[
4549,
4550,
4551,
4552,
4553,
4554,
4555,
-4556,
4555,
4556
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30073"
},
"arcs": [
[
4557,
4558,
4559,
4560,
4561,
4562,
-4563,
4562,
-4563,
4562,
4563,
4564,
-1919,
4565,
4566,
4567,
4568,
4569,
4570,
4571,
-4572,
4571,
4572,
4573,
4574,
-4575,
4574
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55127"
},
"arcs": [
[
4575,
4576,
4577,
4578,
4579,
4580,
4581,
4582
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "32021"
},
"arcs": [
[
-881,
4583,
4584,
4585,
4586,
-4587,
4587
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17057"
},
"arcs": [
[
4588,
4589,
4590,
4591,
4592,
4593,
4594,
4595
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jets_giants",
"team_color": "green_blue",
"GEOID": "36103"
},
"arcs": [
[
-930,
-929,
4596,
4597,
4598,
4599,
4600,
4601,
4602,
4603
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "18161"
},
"arcs": [
[
4604,
4605,
-1019,
4606,
4607
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "29119"
},
"arcs": [
[
-4113,
-4112,
4608,
4609,
4610,
4611
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "31157"
},
"arcs": [
[
4612,
4613,
-3007,
4614
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35047"
},
"arcs": [
[
4615,
4616,
-4617,
4617,
4618,
4619,
4620,
4621,
4622,
4623,
4624
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01081"
},
"arcs": [
[
-4049,
-4048,
4625,
4626,
4627,
4628,
4629,
4630
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48367"
},
"arcs": [
[
4631,
4632,
4633,
4634,
4635,
4636
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38021"
},
"arcs": [
[
4637,
-3457,
4638,
4639,
4640,
4641
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38003"
},
"arcs": [
[
4642,
4643,
4644,
4645,
4646,
4647
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27143"
},
"arcs": [
[
-1663,
4648,
4649,
4650,
4651,
4651,
4652,
4653,
-4654,
4653,
-4654,
4653,
4654,
-4655,
4655,
4656,
-4657,
4656,
4657,
4658,
4659,
4660,
4661,
4662,
4663
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13293"
},
"arcs": [
[
[
-573,
4664,
4665,
4666,
4667,
-4668,
4667,
4668,
4669,
4670,
4671,
4672,
4673,
-4674,
4673,
4674,
4675
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06097"
},
"arcs": [
[
4676,
4677,
4678,
4679,
4680,
4681,
4682,
4683,
4684,
4685,
4686,
4687,
4688,
4689,
4690,
-4691,
4690,
4691
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26033"
},
"arcs": [
[
4692,
4693,
4694,
4695
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16019"
},
"arcs": [
[
-669,
-2563,
4696,
4697,
4697,
4697,
4698,
4699,
4700,
-322,
4701,
4702
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13013"
},
"arcs": [
[
4703,
4704,
4705,
-4706,
4705,
-4706,
4705,
-4706,
4705,
-4706,
4705,
4706,
4707,
4708,
-4143,
4142,
-4143,
-4142,
4709,
-4704
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13183"
},
"arcs": [
[
4710,
4711,
4712,
-4713,
4712,
4713,
4714,
4715,
4716,
4717,
4718,
4719,
4720,
4721,
-4722,
4721,
4722,
4723,
4724
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48271"
},
"arcs": [
[
4725,
4726,
4727,
-3006,
4728,
4729
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40115"
},
"arcs": [
[
4730,
-4114,
-4612,
4731,
4732,
4733,
4734
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42033"
},
"arcs": [
[
4735,
4736,
4737,
4738,
4739,
4740,
-4741,
4740,
4741,
4742,
-4743,
4742,
4743,
4744,
-4745,
4744,
4745,
4746,
4747,
4748,
-3714
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26037"
},
"arcs": [
[
4749,
4750,
4751,
4752,
4753,
4754,
-4750
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17135"
},
"arcs": [
[
4755,
4756,
4757,
4758,
-1651,
4759,
4760
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28003"
},
"arcs": [
[
4761,
4762,
4763,
4764,
4765
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28071"
},
"arcs": [
[
-1193,
4766,
4767,
4768,
4769,
4770,
4771,
4772,
-4773,
4772,
4773
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22043"
},
"arcs": [
[
4774,
4775,
4776,
4777,
-4778,
4777,
4778,
4779,
-4780,
4779,
4780,
4781,
4782,
-4783,
4782,
-4783,
4782,
4783,
-4784,
4784,
4785,
4786,
4787,
4788,
-4775
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29005"
},
"arcs": [
[
4789,
4790,
4791,
4792,
4793,
4794,
4795,
4796
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17115"
},
"arcs": [
[
4797,
4798,
4799,
4800,
-2751,
4801,
4802,
4803,
4804,
4805
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26149"
},
"arcs": [
[
4806,
4807,
4808,
4809,
4810
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17055"
},
"arcs": [
[
4811,
4812,
4813,
4814,
4815,
4816,
4817,
4817,
4818,
4819,
4820,
-4821,
4820
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30033"
},
"arcs": [
[
4821,
4822,
4822,
4823,
-4824,
4823,
4824,
4825,
-4826,
4825,
4826,
4827,
4828,
4829,
-4830,
4829,
4830,
4831,
4832,
4833,
4834,
-4835,
4834,
4835,
4836,
4837,
4838,
4839,
-2248,
2246,
-2246,
4840,
4841,
-4842,
4841,
4842,
4843,
-4844,
4843,
4844,
4845,
4846,
-4847,
4846,
4847,
-4848,
4847,
4848,
4849,
-4850,
4850,
4851,
-4852,
4851,
-4852,
4851,
4852,
-4853,
4852,
4853,
4854,
-4855,
4854,
4855,
-4856,
4855,
4856,
-4857,
4856,
4857,
4858,
-4859,
4858,
-4859,
4858,
4859,
4860,
-4861,
4860,
4861
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31001"
},
"arcs": [
[
4862,
4863,
4864,
-886,
4865
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27109"
},
"arcs": [
[
4866,
4867,
4868,
-1474,
4869,
-3665
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jets_giants",
"team_color": "green_blue",
"GEOID": "34039"
},
"arcs": [
[
4870,
4871,
4871,
4872,
4873,
4874,
4875,
4876,
4877,
4878,
-4879,
4879,
4880,
-4881,
4881,
4882,
4883,
4884,
4885
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "01097"
},
"arcs": [
[
4886,
4887,
4888,
4889,
4890,
-4891,
4890,
4891,
4892,
4893,
4894
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46087"
},
"arcs": [
[
-4342,
4895,
-37,
4896,
-899,
4897
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01057"
},
"arcs": [
[
4898,
4899,
4900,
4901,
4902
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01017"
},
"arcs": [
[
4903,
4904,
-4043,
4041,
-4041,
-4631,
4905
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37131"
},
"arcs": [
[
4906,
4907,
-4908,
4907,
-4908,
4907,
4908,
4909,
-4910,
4909,
4910,
4911,
4912,
4913,
4914,
4915,
4916,
4917,
4918,
4919,
-4920,
4919,
4920,
4921,
4922,
4923,
4924,
4925,
4926
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08081"
},
"arcs": [
[
4927,
4928,
4929,
4930,
4931,
4932
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21087"
},
"arcs": [
[
4933,
4934,
-4935,
4934,
4935,
4936,
4937,
-2585,
4938,
4939
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18047"
},
"arcs": [
[
4940,
4941,
-4607,
-1026,
4942,
-4496,
4351,
-4352,
-4351
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37013"
},
"arcs": [
[
4943,
4944,
4945,
4946,
4947,
4948,
4949,
4950,
4951,
4952,
4953,
4954,
4955,
-4956,
4955,
4956
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38015"
},
"arcs": [
[
4957,
4958,
4959,
4960,
4961,
4962,
4963,
4964
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37159"
},
"arcs": [
[
4965,
-936,
-935,
4966,
4967,
4968
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "26071"
},
"arcs": [
[
4969,
4970,
4971,
-925,
4972,
4973,
4974,
-4975,
4974,
4975,
4976,
4977,
4978,
4979,
4980,
4981,
4981,
4982,
4983,
4984,
4985
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27067"
},
"arcs": [
[
-4156,
4986,
4987,
4988,
4989,
4990
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21237"
},
"arcs": [
[
-3861,
3860,
-3861,
-3860,
-3859,
3858,
-3859,
-3858,
4991,
4992,
4993,
-4994,
4994,
4995,
4996
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48149"
},
"arcs": [
[
4997,
4998,
4999,
5000,
5001,
5002,
5003,
5004,
5005,
-684,
-683,
682,
5006
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "46081"
},
"arcs": [
[
5007,
5008,
-5009,
5008,
5009,
-5010,
5009,
5010,
-5011,
5010,
-5011,
5010,
5011,
-5012,
-5011,
5012,
5013,
-5014,
5013,
5014,
5015,
5016,
5017,
5018
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "23029"
},
"arcs": [
[
5019,
5020,
5021,
5022,
5023,
5024,
-5024,
5023,
5025,
5026,
5027,
5028,
5029
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48045"
},
"arcs": [
[
5030,
5031,
5032,
5033,
5034,
-90
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "26131"
},
"arcs": [
[
5035,
5036,
5037,
5038,
-4970,
5039
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28015"
},
"arcs": [
[
5040,
5041,
5042,
-5043,
5042,
5043,
5044,
5045,
5046,
5047,
5048,
-5049,
5048,
-5049,
5049
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41003"
},
"arcs": [
[
5050,
5051,
5052,
5053,
5054,
5055,
5056,
5057
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27133"
},
"arcs": [
[
5058,
-3053,
5059,
-33
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42063"
},
"arcs": [
[
-3715,
-4749,
5060,
5061,
5062,
5063,
5064,
5065,
5066,
-5067,
5066,
5067,
-5068,
5067,
5068,
5069,
5069,
5070,
5071
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22061"
},
"arcs": [
[
5072,
5073,
5074,
-5075,
5074,
5075,
-458,
-457,
456,
-457,
456,
-457,
-456,
455,
-456,
-455,
5076,
-4516
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "42099"
},
"arcs": [
[
-1151,
-1150,
-1149,
-1148,
1147,
-1148,
-1147,
-1146,
5077,
5078,
-5079,
5079,
5080,
-5081,
5081,
5082,
-5083,
5083,
5084,
5085,
-5086,
5086,
5087,
5088,
5089,
5090,
5091,
5092,
5093,
1149,
1150
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "46137"
},
"arcs": [
[
5094,
5095,
5096,
5097,
5098,
5099,
5100,
5101,
5102,
5103,
5104,
5105,
-5106,
5106
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48203"
},
"arcs": [
[
5107,
5108,
-5109,
5109,
5110,
-5111,
5110,
-5111,
5110,
5111,
-5112,
5111,
5112,
5113,
5114,
5115,
5116,
-5117,
5116,
5117,
5118,
-5119,
5118,
5119,
-5120,
5119,
5120,
5121,
5122,
-5123,
5122,
5123
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "26013"
},
"arcs": [
[
-926,
-4972,
5124
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40131"
},
"arcs": [
[
5125,
5126,
5127,
5128,
5129,
5130,
5131,
5132
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29019"
},
"arcs": [
[
5133,
5134,
5135,
5136,
-5137,
5136,
-5137,
5136,
5137,
5138,
-5139,
5139,
-5140,
5138,
5140,
5141,
-5142,
5142,
5143,
-5144,
5143,
5144,
5145,
5146,
5147,
5148,
-5149,
5148,
5149
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40015"
},
"arcs": [
[
5150,
5151,
-844,
5152,
5153,
5154,
5155,
5156
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08059"
},
"arcs": [
[
[
5157,
5158,
5159,
-5160,
5160,
5161,
-5162,
5161,
5162,
5163,
5164,
5165,
5166,
5167,
-5168,
5167,
5168,
5169,
-5170,
5170,
5171,
5172,
-5173,
5172,
5173,
5174,
-5175,
5174,
5175,
5176,
-4208,
5177
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54011"
},
"arcs": [
[
5178,
5179,
5180,
-1161,
5181,
5182,
5183,
5184,
5185,
5186
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48383"
},
"arcs": [
[
5187,
5188,
5189,
5190,
5191,
5192
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05141"
},
"arcs": [
[
5193,
-139,
5194,
5195,
5196,
5197
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08117"
},
"arcs": [
[
5198,
5199,
5200,
5201,
5202,
5203,
5204,
5205,
-5206,
5205,
-5206,
5206,
5207,
5208,
5209,
-5210,
5209,
5210,
-4206,
4204,
-4204,
-4203,
5211,
5212,
5213,
5214,
5215,
5216,
-5217,
5216,
5217
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20035"
},
"arcs": [
[
5218,
5219,
5220,
5221,
5222,
5223
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05071"
},
"arcs": [
[
5224,
5225,
5226,
-2402,
2400,
-2400,
-2399,
2398,
5227
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "36041"
},
"arcs": [
[
-3459,
5228,
-4402,
4400,
-4400,
-4399,
4398,
-4399,
-4398,
5229,
-1716,
5230,
5231
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "51045"
},
"arcs": [
[
5232,
5233,
5234,
-4431,
-4430,
4429,
-4430,
4429,
-4430,
-4429,
-4428,
4427,
5235,
5236,
5237,
5238,
-251,
249,
-249,
5239
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48083"
},
"arcs": [
[
5240,
5241,
5242,
5243,
5244,
5245,
5246,
5247,
5248,
5249,
5250,
-5251,
5250,
5251,
5252,
5253,
5254,
5255
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cardinals",
"team_color": "#C15454",
"GEOID": "04017"
},
"arcs": [
[
5256,
5257,
5258,
5259,
-5260,
5259,
5260,
5261,
5262
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28085"
},
"arcs": [
[
5263,
5264,
5265,
5266,
5267,
5268,
5269,
-5264
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48357"
},
"arcs": [
[
5270,
5271,
5272,
5273,
5274
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48103"
},
"arcs": [
[
5275,
5276,
5277,
5278,
5279,
-5280,
5279,
-5280,
5279,
-5280,
5279,
5280,
5281,
-5282,
5281,
5282,
5282,
5283,
5284,
5285,
5286,
-5287,
5286,
5287,
-5288,
5287,
5288,
-5289,
5288,
-5289,
5288,
-5289,
5288,
-5289,
5288,
5289,
5290,
5291,
5292,
-5293,
5292,
5293,
5294,
-5295,
5294,
5295,
5296,
5297
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56003"
},
"arcs": [
[
5298,
5299,
5300,
5301,
5301,
5302,
5303,
-5304,
5303,
5304,
5305,
5306,
5307,
5308,
5309,
-5310,
5309,
5310,
5311,
5312,
5313,
5314,
5315,
5316,
5317,
5318,
5319,
5320,
5321,
5322
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47081"
},
"arcs": [
[
5323,
5324,
5325,
5326,
5327,
5328,
5329,
-5330,
5329,
-5330,
5330,
5331,
5332,
-5333,
5332,
5333,
5334
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28143"
},
"arcs": [
[
5335,
5336,
5337,
5338,
5339,
5340,
-5341,
5340,
5341,
5342,
-5343,
5342,
-5343,
5342,
5343,
5344,
5345,
5346,
5347,
5348,
5349,
5350,
5351,
5352,
-5353,
5353,
-5351,
5354,
5355,
5356,
5357,
-5357,
5358,
5359,
5360,
5361,
-5360,
5362
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29081"
},
"arcs": [
[
-3593,
-1400,
5363,
5364,
5365,
5366,
5367
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18005"
},
"arcs": [
[
5368,
5369,
-4356,
5370,
5371,
5372,
5373
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13223"
},
"arcs": [
[
5374,
5375,
5376,
-2492,
5377,
-1540
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39015"
},
"arcs": [
[
5378,
5379,
5380,
5381,
-5382,
5382,
5383,
5384,
5385
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47141"
},
"arcs": [
[
5386,
5387,
-5388,
5387,
5388,
5389,
5390,
717,
-718,
-717,
715,
-715,
-737,
736,
-4319,
4317,
-4317,
-2843,
-2842,
5391,
5392,
5392,
5393,
5394,
5395
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38101"
},
"arcs": [
[
-2797,
5396,
5397,
5398,
5399,
5400,
-5401,
5400,
5401
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "25027"
},
"arcs": [
[
5402,
-5403,
-601,
5403,
5403,
-600,
5404,
-5405,
5404,
5405,
5406,
5407,
5408,
5409,
5410,
5411,
5412,
5413,
5414,
5415,
-5416,
5415,
-5416,
5415,
-5416,
5415,
5416,
5417,
5418,
-5419,
5418,
5419,
5420,
-5421,
5420,
-5421,
5420,
-5421,
5420,
-5421,
5420,
-5421,
5421,
5422,
5423,
5424,
-606,
-605,
-604,
-602
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39091"
},
"arcs": [
[
5425,
5426,
5427,
5428,
-5429,
5428,
5429,
5430,
5431
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "06031"
},
"arcs": [
[
5432,
5433,
5434,
5435,
-5436,
5435,
-5436,
5435,
5436,
5437,
5438,
5439
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "06073"
},
"arcs": [
[
5440,
5441,
5442,
5443,
5444,
5445,
5446
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13079"
},
"arcs": [
[
-4666,
5447,
5448,
5449,
5450,
5451,
-5452,
5452,
5453,
-5454,
5453,
-5454,
5453,
-5454,
5454,
5455,
-5456,
5455,
5456
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29037"
},
"arcs": [
[
5457,
-1607,
-169,
5458,
5459,
-5460,
5459,
5460,
5461,
5462
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jets_giants",
"team_color": "green_blue",
"GEOID": "36027"
},
"arcs": [
[
5463,
5464,
-5465,
5465,
5466,
5467,
5468,
5469,
-5470,
5470,
-2274,
2272,
-2272
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48477"
},
"arcs": [
[
-1744,
1742,
-1742,
1738,
-1741,
5471,
5472,
-5473,
5472,
5473,
5474,
-5475,
5475,
-5476,
5475,
5476,
-5477,
5476,
5477,
5478,
5479,
5480,
5481,
5482,
-5483,
5482,
5483,
-5484,
5483,
5484,
5485,
5486,
-5487,
5487,
-5003,
-5002,
5000,
-5000,
5488,
5489,
-5490,
5489,
5490,
5491,
5492,
-5493,
5492,
5493,
5494,
-5495,
5494,
-5495,
5494,
5495
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08101"
},
"arcs": [
[
5496,
5497,
5498,
5499,
-5500,
5500,
5501,
5502,
-5503,
5502,
-1672,
-1671,
5503
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29067"
},
"arcs": [
[
5504,
5505,
5506,
5507,
5508,
-4488,
5509
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38009"
},
"arcs": [
[
5510,
5511,
5512,
5513,
5514
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37051"
},
"arcs": [
[
5515,
5516,
5516,
5517,
5518,
-5519,
5518,
5519,
5520,
-5521,
5520,
5521,
5522,
2367,
-2368,
-2367,
2365,
-2365,
5523,
5524,
-5525,
5524,
5525,
5526,
5527,
5528,
5529,
5530,
5531,
5532
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56017"
},
"arcs": [
[
5533,
5534,
-1066
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26001"
},
"arcs": [
[
-701,
5535,
5536,
5537
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06061"
},
"arcs": [
[
5538,
5539,
5540,
5541,
5542,
5543,
5544,
5545,
5546,
-3474,
-3490,
5547,
5548,
5549,
5550,
5551,
5552,
-5553,
5552,
5553
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05129"
},
"arcs": [
[
5554,
5555,
5556,
5557,
-140,
-5194,
5558,
5559,
-5555
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48305"
},
"arcs": [
[
5560,
5561,
5562,
5563,
5564
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants",
"team_color": "#5490E9",
"GEOID": "36077"
},
"arcs": [
[
5565,
5566,
5567,
5568,
5569,
5570,
5571,
5572,
5573,
-5574,
5573,
5574,
5575,
-5576,
5575,
5576,
5577,
5578,
5579,
-5580,
5579,
5580,
5581,
-5582,
5581,
-5582,
5581,
-5582,
5581,
5582,
5583,
-5584,
5583,
5584,
5585,
5586,
5587,
5587,
5587,
5588,
-5589,
5588,
5589,
5590,
5590,
5591,
5592,
-5593,
5592,
5593,
5594,
-5595,
5594,
-5595,
5594,
-5595,
5594,
5595,
5596
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37153"
},
"arcs": [
[
5597,
5598,
5599,
5600,
5601,
-5602,
5601,
-5602,
5601,
-5602,
5601,
5602,
5603,
5604,
5605,
5606,
5607,
5607,
5608,
5609,
-5610,
5609,
5610,
5611,
5612,
5613,
5614,
5615,
5616,
5617,
-5598
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37093"
},
"arcs": [
[
5618,
5526,
-5527,
-5526,
-5525,
5524,
-5525,
-5524,
-2364,
5619,
-5604
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31131"
},
"arcs": [
[
5620,
5621,
5622,
5623,
-4791,
-4790,
4789,
5624,
5625,
-22
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42023"
},
"arcs": [
[
5626,
5627,
5628,
4737,
-4738,
-4737,
5629
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45035"
},
"arcs": [
[
5630,
5631,
5632,
5633,
5634,
5635,
5636,
5637,
5638,
5639,
-5640,
5639,
5640,
5641,
-5642,
5642,
5643,
5644,
-5645,
5644,
5645,
5646,
-5647,
5646,
5647,
5648,
5649,
-5650,
5649,
-5650,
5649,
5650,
5651,
-5652,
5651,
5652,
5653,
-5654,
5653,
5654,
-5631
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27161"
},
"arcs": [
[
5655,
5656,
5657,
-3668,
5658,
5659
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46015"
},
"arcs": [
[
5660,
-4347,
5661,
5662,
5663,
-5664,
5664,
5665,
5666
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47177"
},
"arcs": [
[
5667,
-4321,
-4320,
-730,
-729,
5668,
5669,
-5670,
5669,
5670,
5671,
5672,
-5673,
5672,
5673,
5674,
-3446,
-3445,
3443,
5675,
5676,
-5677,
5676,
5677
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "17023"
},
"arcs": [
[
-3755,
5678,
5679,
5680,
4188,
-4189,
-4188,
5681,
-4138
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21201"
},
"arcs": [
[
5682,
5683,
-5684,
5683,
5684,
5685,
-5686,
5685,
-5686,
5686,
-5687,
5686,
5687,
5688,
5689,
-5690,
5689,
-5690,
5689,
5690,
-2597
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47095"
},
"arcs": [
[
5691,
5692,
5693,
5694,
5695,
5696,
5697,
5698,
5699,
5700,
5701
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "45015"
},
"arcs": [
[
5702,
5703,
-5704,
5703,
5704,
5705,
5706,
-5707,
5707,
5708,
5709,
-5710,
-5709,
5708,
5710,
-4389,
-4388,
5711,
5712,
-5713,
5712,
5713,
5714,
5714,
5715,
5716,
5717,
5718,
-5719,
5718,
5719,
5720,
-5642,
5641,
5721,
-5639,
5637,
-5637
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05051"
},
"arcs": [
[
5722,
5723,
5724,
5725,
5726,
5727,
5728
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20139"
},
"arcs": [
[
5729,
5730,
5731,
5732,
5733,
-1968
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39155"
},
"arcs": [
[
5734,
5735,
5736,
5737,
5738,
-1252
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48333"
},
"arcs": [
[
5739,
5740,
5741,
5742,
5743,
5744,
-5745,
5745,
5746,
-5747,
5747,
5748,
5749,
-5750,
5750,
5751,
5752,
5753,
-5753,
5754,
5755,
5756,
5757,
5757,
5758,
5759,
5760,
5761,
5762
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48359"
},
"arcs": [
[
5763,
5764,
5765,
5766
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42019"
},
"arcs": [
[
5767,
5768,
-4338,
-4336,
5769,
5770,
-153,
5771
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16049"
},
"arcs": [
[
5772,
5773,
5774,
5774,
5775,
5776,
5777,
5778,
5779,
5780,
5781,
5782,
5783,
5784,
-5785,
5784,
5785,
5786,
-5787,
5786,
5787,
5788,
-5789,
5788,
5789,
5790,
-5791,
5790,
5791,
5792,
5793,
5794,
5795,
-148,
146,
-146,
5796,
5797,
5798,
5799,
5800,
5801,
5802,
5803,
5804,
5804,
5805,
5806,
-5807,
5806,
5807,
-5773
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20115"
},
"arcs": [
[
5808,
5809,
5810,
5811,
5812,
-4276
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51029"
},
"arcs": [
[
5813,
5814,
5815,
5816,
-5817,
5817,
5818,
-5819,
5819,
5820,
5821,
5822,
-5823,
5823,
5824,
-5825,
5824,
5825,
5826,
-5827,
5826,
5827,
5828,
-5829,
5828,
-5829,
5828,
5829,
5830,
-5831,
5831,
-5832,
5831,
-5832,
5831,
-5832,
5832,
5833,
5834,
-5835,
5835,
-5836,
5835,
5836,
-5837,
5836,
5837
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37025"
},
"arcs": [
[
5838,
-4968,
5839,
5840,
-5841,
5841,
5842
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29225"
},
"arcs": [
[
5843,
5844,
5845,
-5510,
-4487,
5846
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49011"
},
"arcs": [
[
5847,
5848,
5849,
5850,
5851,
5852,
-5853,
5852,
5853
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27033"
},
"arcs": [
[
5854,
5855,
5856,
-3659,
-3049,
5857
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12093"
},
"arcs": [
[
5858,
5859,
5860,
5861,
5862,
-5863,
5863,
5864,
-5865,
5864,
5865,
-4257,
-4256,
-4255,
4254,
-4255,
-4254,
-4253,
4252,
-4253,
-4252,
4251,
-4252,
-4251,
4250,
-4251,
-4250,
-4249,
4248,
-4249,
-4248
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13291"
},
"arcs": [
[
5866,
5867,
5868,
5869,
5870,
5871,
5872,
5873,
5874,
-5875,
5875,
5876,
5877,
5878,
-5879,
5878,
5879,
-5880,
5879,
5880,
5881
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19013"
},
"arcs": [
[
5882,
5883,
5884,
5885,
5886,
5887
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48403"
},
"arcs": [
[
5888,
5889,
-5890,
5889,
5890,
5891,
5892,
-5893,
5892,
5893,
5894,
5895,
5896,
5897,
5898,
5899,
-5900,
5900
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39131"
},
"arcs": [
[
5901,
5902,
5903,
-3251,
5904
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01125"
},
"arcs": [
[
5905,
-4901,
5906,
5907,
-5908,
5908,
-5909,
5908,
-5909,
5908,
5909,
5910,
5911,
-2642,
-2766
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01131"
},
"arcs": [
[
5912,
5913,
5913,
5914,
5915,
-5916,
5915,
5916,
5917,
-3360,
5918,
5919,
5920,
-313
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28097"
},
"arcs": [
[
5921,
5922,
5923,
-5924,
5923,
5924,
5925,
-5926,
5925,
-5926,
5926,
5927,
-5041,
5928
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31099"
},
"arcs": [
[
5929,
-4866,
5930,
-425
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31087"
},
"arcs": [
[
5931,
5932,
5933,
-3971
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "10003"
},
"arcs": [
[
5934,
5935,
5936,
5937,
5938,
5938,
5939,
5940,
5941,
5942,
5943,
-5944,
5943,
-5944,
5943,
5944,
5945,
-3599,
5946
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16081"
},
"arcs": [
[
5947,
5948,
5949,
5950,
-5951,
5950,
5951,
5952,
-5953,
5952,
5953,
5954,
4699,
-4700,
-4699,
4697,
4697,
4697,
-4697,
-2562,
2560
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17161"
},
"arcs": [
[
-3649,
-3648,
3647,
5955,
5956,
5957,
5957,
5958,
-5959,
5958,
5959,
5960,
5961,
-3812,
5962,
5963
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51073"
},
"arcs": [
[
-399,
-398,
-3404,
-3403,
3402,
-3403,
-3402,
3400,
-3400,
-3399,
3398,
-3399,
3398,
-3399,
3398,
-3399,
3398,
-3399,
3398,
-3708,
3706,
-3706,
5964,
5965
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "05133"
},
"arcs": [
[
-1301,
5966,
5967,
-5968,
5967,
5968,
5969,
-5970,
5969,
5970,
5971,
-5972,
5971,
-5972,
5971,
5972,
5973,
-5974,
5973,
-5974,
5973,
5974,
5975,
5976,
5977,
5978,
-5979,
5978,
-5979,
5979,
5980,
-5981,
5981,
5982,
5983,
-5984,
5983,
5984,
5985,
5986,
-5987,
5986,
5987,
-5988,
-5987,
5988,
5989
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18017"
},
"arcs": [
[
5990,
5991,
5992,
5993,
5994,
5995
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16077"
},
"arcs": [
[
5996,
5997,
5998,
5999,
6000,
6001,
6002,
6003,
6004,
6005
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18015"
},
"arcs": [
[
6006,
6007,
-6008,
6007,
6008,
6009,
6010,
-5995,
6011,
6012,
-3927
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42101"
},
"arcs": [
[
6013,
6014,
6015,
6016,
6017,
6018,
6019,
6020,
-6021,
6021,
6022,
6023,
6024,
6025,
-2280,
-2289,
6026,
6027,
-6014
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56043"
},
"arcs": [
[
6028,
-5322,
6029,
6030,
-1067,
-5535
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37029"
},
"arcs": [
[
6031,
6032,
6033,
6034,
6035,
6036,
6037,
6038,
6039,
-6040,
6040,
6041,
6042,
6043,
-6044,
6044,
6045,
-6046,
6046
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants",
"team_color": "#5490E9",
"GEOID": "36109"
},
"arcs": [
[
6047,
6048,
6049,
6050,
-3803,
6051,
6052,
6053
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05069"
},
"arcs": [
[
6054,
-2079,
-3219,
3217,
-3217,
3215,
-3215,
-3214,
3213,
-3214,
-3213,
-3212,
3211,
-3212,
3211,
-3212,
6055,
6056,
6057,
6058,
6059,
6060,
6061,
-6062,
6061,
6062,
6063
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05079"
},
"arcs": [
[
-3211,
-3210,
6064,
6065,
6066,
-6060,
6058,
-6058,
6056,
-6056
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55123"
},
"arcs": [
[
6067,
6068,
-114,
6069,
6070,
6071,
6072,
-1615
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "29093"
},
"arcs": [
[
6073,
6074,
6075,
6076,
6077,
6078,
-6079,
6079,
-1688,
6080,
-3466
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48223"
},
"arcs": [
[
2930,
6081,
6082,
6083,
6084,
-2937,
-2936,
-2935,
2934,
-2935,
2934,
-2935,
-2934,
-2933,
2932,
-2933,
-2932,
2931,
-2932,
-2931,
2930,
-2931,
2930,
-2931,
2930,
-2931,
2930,
-2931
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "36001"
},
"arcs": [
[
-1729,
1727,
-1727,
6085,
6086,
-6087,
6086,
6087,
6088,
6089,
6090,
6091,
6092,
6093,
6094,
6095,
-6096,
6096,
-1730
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48225"
},
"arcs": [
[
-3983,
6097,
6098,
6099,
-6100,
6099,
6100,
-6101,
6100,
6101,
6102,
-6103,
6102,
6103,
-3138,
-3137,
-3170,
6104,
6105,
6106,
6107,
6108,
6109,
-6110,
6109,
6110,
-3988,
3986,
-3986,
-3985,
3984,
-3985,
-3984,
3983,
-3984
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "39111"
},
"arcs": [
[
6111,
-1825,
1823,
-1824,
-1823,
6112,
6113,
-6114,
6114,
6115,
6116
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20165"
},
"arcs": [
[
-2640,
6117,
6118,
6119
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18107"
},
"arcs": [
[
-3929,
6120,
6121,
6122,
6123,
6124,
6125
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "20187"
},
"arcs": [
[
6126,
-4464,
-2036,
6127,
6128,
6129
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21129"
},
"arcs": [
[
-4995,
4993,
6130,
6131,
-6132,
6132,
6133,
6134,
6135,
6136,
6137,
6138,
6139,
6140
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27071"
},
"arcs": [
[
6141,
6142,
6143,
6144,
6145,
6146
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48029"
},
"arcs": [
[
-2241,
6147,
6148,
-6149,
6148,
6149,
6150,
6151,
-6152,
6152,
-6153,
6151,
6153,
6154,
6155,
6156,
-6157,
6156,
6157,
-6158,
6157,
6158,
6159,
-6160,
6159,
6160,
-6161,
6160,
-6161,
6160,
6161,
6162,
6163,
6164,
6165,
6166,
-2242
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08013"
},
"arcs": [
[
[
6167,
-6168,
6168
]
],
[
[
6169,
6170,
6171,
-6168,
6172,
6173,
-6174,
6174,
-5160,
-5159,
6175,
6176
],
[
6177,
-6178,
6178
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47089"
},
"arcs": [
[
6179,
6180,
6181,
6182,
-6183,
6182,
6183,
6184,
6185,
-6186,
6185,
-6186,
6185,
-6186,
6185,
6186,
6187,
6188,
6189,
-6190,
6189,
6190,
6191,
-6192,
6191,
6192,
6193,
-6194,
6194,
6195,
6196,
-6197,
6196,
6197,
-6198,
6197,
6198,
6199,
6199,
6200,
-6201,
6200,
6201,
-6202,
6202,
6203,
6204
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40097"
},
"arcs": [
[
6205,
6206,
6207,
6208,
-5127
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27165"
},
"arcs": [
[
6209,
6210,
6211,
-5857
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16013"
},
"arcs": [
[
6212,
3289,
-3342,
3340,
-3340,
3338,
6213,
6214,
6215,
-6216,
6215,
6216,
6217,
-5997,
6218,
6219,
6220,
6221,
6222,
6223,
6224,
6225,
-6226,
6225,
6226,
6227,
6228,
-6229,
6228,
6229,
6230,
6231,
6232,
6233
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22053"
},
"arcs": [
[
6234,
6235,
6236,
6237,
-6238,
6237,
6238,
6239,
-6240,
6239,
6240,
-6241,
6240,
6241,
6242,
6243,
6244,
6245,
-6246,
6245,
6246,
6247,
-446,
444,
444,
-444
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46119"
},
"arcs": [
[
6248,
6249,
6250,
6251,
6252,
6253
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08031"
},
"arcs": [
[
[
-5165,
6254,
6255,
-6256,
6255,
-6256,
6255,
-6256,
6255,
6256,
6257,
6257,
6258,
6259,
6260,
6261,
6262,
-6260,
6263,
6264,
-6265,
6264,
6265,
6266,
6267,
-6268,
6267,
6268,
-6269,
6268,
-6269,
6268,
6269,
6270,
-6271,
6271,
6272,
6273,
-6274,
6273,
6274,
-6275,
6274,
-6275,
6275,
6276,
-6277,
6276,
-5170,
-5169,
-5168,
5167,
-5168,
-5167,
-5166
],
[
6277
],
[
-6272,
-6269,
6278
],
[
6277
]
],
[
[
6277
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40029"
},
"arcs": [
[
6279,
6280,
6281,
6282,
6283
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30011"
},
"arcs": [
[
6284,
6285,
6286,
6287,
6288,
6289
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48461"
},
"arcs": [
[
-5277,
6290,
6291,
-5193,
6292
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18051"
},
"arcs": [
[
-1361,
6293,
6294,
6295,
6296,
6297,
6298,
-6299,
6299,
6300,
-6301,
6300,
6301,
2563,
-2575,
6302,
-4116,
-4115,
6303,
-1369,
1367,
-1368,
-1367,
-1366,
-1365,
-1363,
1363,
-1364,
1362,
-1363,
-1362
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "31105"
},
"arcs": [
[
6304,
6305,
6306,
6307,
-3010
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17093"
},
"arcs": [
[
6308,
6309,
6310,
6311,
6312
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "11001"
},
"arcs": [
[
6313,
-2871,
-2870,
6314,
6315,
6316,
6317,
6318
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08085"
},
"arcs": [
[
6319,
6320,
6321,
6322,
6323,
6324
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27171"
},
"arcs": [
[
6325,
6326,
-6327,
6326,
6327,
-6328,
6328,
-6329,
6329,
6330,
-6331,
6331,
6332,
6333,
6334,
6335,
6336,
6337,
6338,
-1661,
6339
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55059"
},
"arcs": [
[
6340,
6341,
6342,
-4578,
6343,
6344,
6345
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08037"
},
"arcs": [
[
6346,
6347,
-5218,
-5217,
5216,
-5217,
5215,
-5215,
5213,
-5213,
6348,
6349,
-4000,
-3999,
6350
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06075"
},
"arcs": [
[
[
6351,
6352,
-6353,
6352,
6353,
6354,
-6355,
6355,
6356,
6357,
6358
]
],
[
[
6359
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08113"
},
"arcs": [
[
6360,
-6323,
6361,
-2471,
6362,
6363,
6363,
6363,
6364
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jags",
"team_color": "#54AAC1",
"GEOID": "12109"
},
"arcs": [
[
6365,
6366,
6367,
6367,
6368,
6369,
6370,
6371
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28019"
},
"arcs": [
[
6372,
-6373,
6372,
6373,
6374,
6375,
6376,
-5927,
5925,
-5926,
5925,
-5926,
-5925,
-5924,
5923,
-5924
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29079"
},
"arcs": [
[
-5365,
6377,
6378,
6379,
-962,
6380
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26085"
},
"arcs": [
[
6381,
6382,
6383,
-2380,
6384
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26139"
},
"arcs": [
[
6385,
6386,
6387,
6388,
6389,
-6390,
6390
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17031"
},
"arcs": [
[
6391,
6392,
6393,
-3724,
6394,
6395,
6396,
6397,
6398
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "17059"
},
"arcs": [
[
6399,
6400,
6401,
-4126,
-4125,
-4124,
4123,
6402,
6403,
6404
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45047"
},
"arcs": [
[
6405,
6406,
-6407,
6406,
6407,
6408,
6409,
-3171,
-3184,
-3183,
3182,
-3183,
-3182,
3181,
6410,
6411,
6412,
6413,
6414
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20059"
},
"arcs": [
[
6415,
6416,
6417,
6418,
-5733
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27027"
},
"arcs": [
[
6419,
6420,
6421,
6422,
6423,
-6424,
6424,
6425,
6426,
6427,
6428,
6429,
6429,
6430,
6431,
6432,
-6433,
6433,
6434,
-6435,
6434,
6435,
6436,
-6437,
6436,
6437
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47075"
},
"arcs": [
[
6438,
6439,
-6440,
6439,
6440,
6441,
6442,
6443,
6444,
6445,
6446,
6447,
-6448,
6447,
-3767,
-3766
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49003"
},
"arcs": [
[
6448,
6449,
6450,
6451,
6452,
6453,
6454,
-1511,
-1510,
1509,
-1510,
-1509,
1507,
-1507
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28139"
},
"arcs": [
[
6455,
-4764,
6456,
-1189,
-3567
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54051"
},
"arcs": [
[
6457,
6458,
6459,
-2637,
-1802,
-6112,
6460,
6461,
6462
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54035"
},
"arcs": [
[
6463,
6464,
6465,
6466,
6467,
6468,
6469,
6470,
-6471,
6470,
6471,
6472,
6473,
6474,
-1157,
6475,
6476,
6477,
-6478,
6477,
6478,
6479,
6480,
-6464
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16039"
},
"arcs": [
[
-3290,
-6213,
6481,
6482,
-6483,
6482,
6483,
6484,
6485,
6486,
6487,
-6488,
6488,
6489,
6490,
6491,
6492,
6493,
6494,
6495,
6496,
6497,
6498,
6499,
-6500,
6499,
-6500,
6499,
-6500,
6499,
-6500,
6499,
6500,
6501,
-6502,
6501,
6502,
6503,
6504
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "ravens",
"team_color": "#AA54C1",
"GEOID": "24005"
},
"arcs": [
[
6505,
6506,
6507,
-6508,
6507,
6508,
6509,
6510,
6511,
6512,
6513,
-1963,
-1965,
6514,
6515,
-6516,
6516,
6517,
6517,
6517,
6518,
6519,
-6520,
6519,
6520,
6521,
6522,
6522,
6522,
6523
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38005"
},
"arcs": [
[
6524,
-3082,
-3081,
3080,
-3081,
-3080,
3078,
-3078,
3076,
-3076,
3074,
-3074,
-3073,
3072,
-3073,
-3072,
-3071,
3070,
-3071,
3069,
-3069,
-3068,
6525,
6526,
6527,
6528
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "29163"
},
"arcs": [
[
6529,
6530,
6531,
6532,
6533,
6534,
6535,
-6536,
6535,
6536,
6537,
6538,
-6530
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "39087"
},
"arcs": [
[
6539,
6540,
5186,
-5187,
-5186,
6541,
6542,
6543,
6544,
6545,
3243,
-3244,
-3243
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "29201"
},
"arcs": [
[
6546,
6547,
6548,
6549,
6550,
-6551,
6550,
6551,
-6552,
6551,
6552,
-6553,
6552,
6553,
6554,
-6555,
6554,
6555,
6556
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39001"
},
"arcs": [
[
6557,
-5905,
-3250,
6558,
6559,
-6560,
6559,
6560,
6561,
-5382,
-5381
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48143"
},
"arcs": [
[
6562,
6563,
6564,
6565,
6566,
6567,
6568,
6569,
-3113
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13137"
},
"arcs": [
[
6570,
6571,
6572,
6573,
6574,
6575,
6576,
6577,
6578,
6579,
-6580,
6580,
6581,
6582,
6583,
6584,
6585
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13319"
},
"arcs": [
[
6586,
6587,
6588,
6589,
6590,
-6591,
6590,
6591,
6592,
6593,
6594,
6595,
6596
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54061"
},
"arcs": [
[
-2635,
6597,
6598,
6599,
6600,
6601,
-6602,
6601,
6602,
-1806,
-1805,
-1804,
1803,
-1804,
-2636
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39033"
},
"arcs": [
[
6603,
6604,
6605,
6606,
6607,
6608
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "dolphins",
"team_color": "#9FE5FA",
"GEOID": "12027"
},
"arcs": [
[
-4261,
6609,
6610,
6611,
6612,
6613,
6614
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants_patriots",
"team_color": "blue_red",
"GEOID": "09011"
},
"arcs": [
[
6615,
6616,
-6617,
6617,
6618,
6619,
-6620,
6619,
6620,
-4597,
928,
-929,
-928,
6621,
6622,
-6623,
6622,
6623,
6624,
-6625,
6624,
6625
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39059"
},
"arcs": [
[
6626,
6627,
6628,
6629,
6630,
6631,
6632
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26015"
},
"arcs": [
[
6633,
6634,
6635,
6636,
6637,
6638
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29209"
},
"arcs": [
[
-3224,
-4490,
6639,
-3429,
6640
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51760"
},
"arcs": [
[
6641,
6642,
6643,
6643,
6644,
-6645,
6645,
-6646,
6644,
6646,
6647,
6648,
6649,
6650,
-6651,
6650,
-6651,
6650,
6651,
6652,
6653,
-6654,
6654
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37169"
},
"arcs": [
[
6655,
-2864,
6656,
6657,
6658
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19039"
},
"arcs": [
[
-3014,
6659,
6660,
-1402,
6661
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19065"
},
"arcs": [
[
6662,
6663,
6664,
6665,
6666
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06041"
},
"arcs": [
[
-4692,
-4691,
4690,
-4691,
-4690,
4688,
-4688,
4686,
-4686,
6667,
-6355,
-6354,
-6353,
6352,
-6353,
-6352,
6668
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48381"
},
"arcs": [
[
6669,
-92,
6670,
6671,
6672
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48401"
},
"arcs": [
[
6673,
6674,
6675,
-5121,
-5120,
5119,
-5120,
6676,
6677,
6678,
-6679,
6678,
6679,
6680,
-6681,
6680,
6681,
6682,
6683
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19181"
},
"arcs": [
[
6684,
6685,
-6660,
-3013,
6686,
6687,
-6688,
6687,
-6688,
6687,
6688,
6689,
-6690
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "39161"
},
"arcs": [
[
-1413,
-3493,
6690,
-96,
6691,
6692,
6693
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12043"
},
"arcs": [
[
-5866,
-5865,
5864,
-5865,
-5864,
5862,
-2100,
-2099,
6694,
-4260,
4258,
-4258,
4256
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13199"
},
"arcs": [
[
6695,
6696,
6697,
6698,
-6699,
6699,
6700,
-6701,
6701,
-4675,
-4674,
4673,
-4674,
-4673,
6702,
-4045,
6703
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08023"
},
"arcs": [
[
-4306,
-4305,
6704,
6705,
-6706,
6705,
6706,
6707,
6708,
6709,
-6710,
6709,
6710,
6711,
6712,
6713,
6714,
6715,
6716
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48099"
},
"arcs": [
[
6717,
6718,
-3288,
-2176,
6719,
6720,
6721
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19001"
},
"arcs": [
[
6722,
-3016,
6723,
6724,
6725
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13053"
},
"arcs": [
[
6726,
6727,
-6728,
6727,
6728,
6729,
6729,
6729,
6730,
6731,
6732,
6733,
6734
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "06043"
},
"arcs": [
[
6735,
6736,
6737,
6738,
6739,
-6740,
6739,
6740,
6741,
-6742,
6741,
6742,
6743,
-6744,
6743,
6744,
6745,
6745,
6746,
-6747,
6746,
6747,
6748,
6749,
6750,
6751,
6752,
6752,
6753,
6754,
-6755,
6754,
-6755,
6754,
6755,
6756,
-6757,
6757,
6758,
-6759,
6759
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29089"
},
"arcs": [
[
6760,
6761,
-5150,
-5149,
5148,
-5149,
5148,
6762,
6763,
6764
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41047"
},
"arcs": [
[
-1293,
-1292,
1291,
-1292,
1291,
-1292,
-1291,
1289,
-1289,
-1288,
1287,
6765,
6766,
6767,
6768,
6769,
6770,
6771,
6772,
6773,
6774,
6775,
-6776,
6775,
6776,
6777,
-6778,
6777,
6778,
6779,
6779,
6780,
6781,
6782,
6783,
6784,
6785
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55079"
},
"arcs": [
[
6786,
-6390,
-6389,
6787,
6788,
-6789,
6789,
6790
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27139"
},
"arcs": [
[
6791,
6792,
6793,
6794,
-4659,
-4658,
-4657,
4656,
-4657,
-4656,
4654,
-4655,
-4654,
4653,
-4654,
4653,
-4654,
-4653,
4651,
4651,
-4651,
-4650,
6795,
-6796,
6795,
6796,
6797,
6797,
6798
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39129"
},
"arcs": [
[
6799,
6800,
6801,
6802,
6803,
6804,
-593,
6805
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51145"
},
"arcs": [
[
6806,
6807,
-6808,
6808,
6809,
6810,
6811,
6812,
6813,
6814,
6815,
6816,
6817
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08014"
},
"arcs": [
[
[
-6175,
6173,
-6174,
-6173,
6167,
-6172,
6818,
6819,
6820,
6821,
6822,
6823,
-5163,
-5162,
5161,
-5162,
-5161,
5159
],
[
6824,
-6825,
6825
],
[
6167,
-6168,
6168
]
],
[
[
6177,
-6178,
6178
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47099"
},
"arcs": [
[
6826,
6827,
6828,
6829,
6830,
-6831,
6830,
6831,
6832,
6833,
-6834,
6833,
6834
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26009"
},
"arcs": [
[
-983,
6835,
6836,
6837,
6838,
-6839,
6839
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "45069"
},
"arcs": [
[
-5613,
-5612,
6840,
-2359,
6841,
6842,
6843,
6844,
6845,
-6846,
6846,
6847,
6848,
6849
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16009"
},
"arcs": [
[
6850,
-1570,
6851,
6852,
6853,
6854,
6855
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17103"
},
"arcs": [
[
6856,
6857,
-6858,
6858,
6859,
6860,
6861,
-3236,
6862
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31127"
},
"arcs": [
[
-5625,
-4790,
-4797,
6863,
6864,
6865
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37031"
},
"arcs": [
[
6866,
6867,
6868,
6869,
6870,
-6871,
6871,
6872,
-6873,
6872,
6873,
-6874,
6873,
6874,
6875,
6876
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20149"
},
"arcs": [
[
6877,
6878,
6879,
6880,
6881,
6882,
-6883,
6882,
6883,
6884,
6885,
6886,
6887,
6888,
6889,
-2512,
2511,
-2512,
-2511,
2509,
-2509,
-2508,
2507,
-2508,
-2507
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26075"
},
"arcs": [
[
6890,
6891,
6892,
6893,
6894,
6895
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48091"
},
"arcs": [
[
6896,
6897,
6898,
-6899,
6899,
6900,
6901,
-6155,
-6154,
-6152,
6152,
-6153,
6151,
-6152,
-6151
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "25019"
},
"arcs": [
[
6902,
6903,
6904,
6905,
6906
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45009"
},
"arcs": [
[
6907,
-6908,
6907,
-6908,
6907,
6908,
6909,
6910,
-6911,
6910,
-6911,
6910,
-6911,
6910,
6911,
-6912,
6911,
6912,
6913,
6913,
6914,
6915,
-6916,
6915,
6916,
6917,
-6918,
6917,
6918,
-6919,
6918,
6919,
6920,
-6921,
6920,
6921,
-6922,
6921,
-6922,
6921,
6922,
6923,
6924,
6925,
6926,
-6909,
-6908
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48007"
},
"arcs": [
[
6927,
6928,
1003,
-1004,
-1003,
-1002,
-344,
-343,
341,
-341,
6929,
6930,
-6931,
6931,
6932,
-6928
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13019"
},
"arcs": [
[
6933,
6934,
6935,
6936,
6937,
6938,
-6939,
6938,
6939,
6940,
-6941,
6940,
6941,
6942,
-2728,
2727,
-2728,
-2727,
2725,
-2725,
2723,
-2723,
2721
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "18165"
},
"arcs": [
[
-3610,
6943,
6944,
6945,
6946,
6947
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26143"
},
"arcs": [
[
6948,
6949,
-819,
6950,
6951
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37005"
},
"arcs": [
[
6952,
6953,
6954,
6955,
6956,
6957,
-6958,
6957,
6958,
6959,
6960,
-6961,
6960,
6961,
6962,
6963,
-6964,
6963,
6964
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06035"
},
"arcs": [
[
6965,
6966,
-43,
6967,
6968,
-6969,
6968,
6969,
6970,
6971,
6972
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51610"
},
"arcs": [
[
6973,
6974
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12081"
},
"arcs": [
[
6975,
-6614,
6976,
6977,
6978,
6979
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39119"
},
"arcs": [
[
6980,
-6632,
-6631,
6981,
-1244,
6982,
6983
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08015"
},
"arcs": [
[
-4005,
6984,
-4220,
4218,
-4218,
4216,
4216,
-4216,
-4215,
4214,
-4215,
-4214,
-4213,
4212,
-4213,
-4212,
4210,
6985,
6986,
-6987,
6987,
6988,
-6989,
6988,
-6989,
6988,
6989,
-174,
-173,
6990,
6991,
-6992,
6991,
6992,
6993,
6994,
6995,
-6996,
6995,
-6996,
6995
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08025"
},
"arcs": [
[
6996,
6997,
6998,
-6999,
6998,
6999,
7000,
7001,
-5498,
7002
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08043"
},
"arcs": [
[
7003,
-5504,
-1670,
-178,
-177,
175,
-175,
-6990,
-6989,
6988,
-6989,
6988,
-6989,
-6988,
6986,
-6987,
-6986,
-4211,
-4210,
7004
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28109"
},
"arcs": [
[
7005,
7006,
7007,
7008,
7009,
7010,
7011,
-7012,
7011,
7012,
-7013,
7012,
7013,
7014,
-7015,
7014,
7015,
7016,
-7017,
7016,
-7017,
7016,
7017,
-7018,
7017,
7018,
7019,
7020,
7021,
7022,
7023,
7024,
-4494
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28111"
},
"arcs": [
[
7025,
7026,
7027,
7028,
7029,
7030
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31041"
},
"arcs": [
[
7031,
7032,
7033,
7034,
7035,
7036,
7037,
7038
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "dolphins",
"team_color": "#9FE5FA",
"GEOID": "12013"
},
"arcs": [
[
7039,
7040,
7041,
7042,
7043,
7044,
-7045,
7044,
7045,
7046,
-7047,
7046,
7047,
7048,
7049
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21117"
},
"arcs": [
[
7050,
7051,
7052,
-7053,
7053,
7054,
7055,
7056,
7057,
7058
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "19037"
},
"arcs": [
[
-3345,
7059,
-6663,
7060,
7061
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17037"
},
"arcs": [
[
7062,
7063,
7064,
-6312,
7065,
-6861,
7066
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "19081"
},
"arcs": [
[
7067,
7068,
7069,
-2792
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38089"
},
"arcs": [
[
-4509,
7070,
7071,
7072,
7073,
7074,
7075
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "26095"
},
"arcs": [
[
7076,
-4695,
7077,
-2261,
-2342
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40019"
},
"arcs": [
[
7078,
7079,
7080,
7081,
-1761,
7082,
7083
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37139"
},
"arcs": [
[
7084,
-6047,
6045,
-6046,
-6045,
6043,
-6044,
-6043,
6041,
-6041,
6039,
-6040,
-6039,
-6038,
7085,
7086,
7087,
-7088,
7087,
7088
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "35055"
},
"arcs": [
[
7089,
-6714,
-6713,
7090,
7091,
7092
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28011"
},
"arcs": [
[
7093,
-3109,
7094,
7095,
7096,
7097,
7098,
7099,
7100,
7101,
7102,
7103,
7104,
7105,
7106,
7107,
7108,
7109,
7110,
7111
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "32023"
},
"arcs": [
[
7112,
7113,
7114,
-1591,
-1590,
1589,
7115,
7116,
7117,
-4584,
-880,
7118
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47073"
},
"arcs": [
[
7119,
7120,
7121,
-7122,
7121,
7122,
7123,
7124,
7125,
7126,
7127,
7127,
7128,
7129,
7130,
7131,
-7132,
7132,
7133,
-7134,
7133,
7134,
-7135,
7134,
7135,
7136,
-7137,
7137,
7138,
-7139,
7138,
7139,
7140
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "38011"
},
"arcs": [
[
7141,
7142,
7143,
7144,
7145,
7146,
7147,
7148,
7149,
7150
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "42057"
},
"arcs": [
[
7151,
7152,
7153,
7154,
-1776,
7155
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22055"
},
"arcs": [
[
7156,
7157,
7158,
7159,
7160,
7161,
7162,
-7163,
7162,
7163,
7164,
-7165,
7164,
7165,
7166,
7167,
7168,
-7157
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48237"
},
"arcs": [
[
7169,
-386,
7170,
7171,
-4632,
7172,
7173
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17175"
},
"arcs": [
[
7174,
-3240,
7175,
7176,
7177
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40055"
},
"arcs": [
[
7178,
7179,
-7180,
7179,
-7180,
7179,
7180,
7181,
-7182,
7181,
7182,
7183,
7184,
7185,
-7186,
7185,
7186,
7187
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48211"
},
"arcs": [
[
7188,
7189,
7190,
7191,
7192
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16069"
},
"arcs": [
[
7193,
7194,
7195,
7196,
7197,
7198,
7199,
7200,
7201,
-5797,
-145,
7202,
7203,
7204,
7205,
7206
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46129"
},
"arcs": [
[
7207,
7208,
7209,
7210,
7211
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06055"
},
"arcs": [
[
7212,
7213,
-7214,
7214,
7215,
-7216,
7215,
7216,
7217,
-7218,
7217,
7218,
7219,
7220,
-7221,
7220,
7221,
4683,
-4684,
-4683,
7222,
7223
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40033"
},
"arcs": [
[
7224,
7225,
7226,
-378,
-389,
7227,
7228,
7229
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "29221"
},
"arcs": [
[
7230,
7231,
7232,
-7233,
7232,
7233,
7234,
7235,
-6079,
-6078,
7236
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants",
"team_color": "#5490E9",
"GEOID": "36011"
},
"arcs": [
[
7237,
7238,
7239,
7240,
-2231,
7241,
7242,
-6048,
7243
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48417"
},
"arcs": [
[
7244,
7245,
7246,
7247,
7248
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "texans",
"team_color": "#FA5454",
"GEOID": "48407"
},
"arcs": [
[
7249,
7250,
7251,
7252,
7253,
7254,
7255,
-7256,
7256,
7257,
-7258,
7257,
7258,
7259,
7260,
7261,
7262,
7263
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19061"
},
"arcs": [
[
7264,
7265,
7266,
7267,
7268,
7269
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51075"
},
"arcs": [
[
7270,
7271,
-2306,
-2305,
7272,
6817,
-6818,
-6817,
6815,
-6815,
6813,
-6813,
7273
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "20181"
},
"arcs": [
[
7274,
7275,
7276,
-2339,
7277
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39139"
},
"arcs": [
[
7278,
7279,
7280,
-7281,
7280,
7281,
7282,
7283,
-6606
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17001"
},
"arcs": [
[
7284,
-893,
7285,
-1659,
-1658,
7286,
7287
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39021"
},
"arcs": [
[
-5427,
7288,
7289,
7290,
7291,
7292
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "33019"
},
"arcs": [
[
-4102,
7293,
7294,
7295,
7296,
7297,
7298,
7299,
-7300,
7299,
7300,
7301
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17075"
},
"arcs": [
[
7302,
-2082,
-1324,
7303,
7304
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19157"
},
"arcs": [
[
7305,
7306,
7307,
7308,
7309
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39169"
},
"arcs": [
[
7310,
7311,
7312,
7313,
7314
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13113"
},
"arcs": [
[
-1049,
7315,
7316,
-7317,
7316,
7317,
7318,
7319,
-7320,
7319,
7320,
7321,
7322
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13141"
},
"arcs": [
[
7323,
7324,
2112,
-2113,
-2112,
2110,
2110,
-2110,
7325,
7326,
7327,
7328,
7329,
-7330,
7330,
7331,
7332,
7333,
-7334,
7333,
7334,
-7324
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48259"
},
"arcs": [
[
7335,
7336,
-6897,
-6150,
-6149,
6148,
-6149,
-6148,
-2240,
-779,
-778
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jets_giants",
"team_color": "green_blue",
"GEOID": "36039"
},
"arcs": [
[
-6091,
7337,
-2270,
-2269,
2268,
-2269,
-2268,
7338,
7339
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51137"
},
"arcs": [
[
7340,
-7341,
7340,
7341,
7342,
7343,
7344,
7345,
7346,
7347,
-7348,
7347,
-7348,
7348,
7349,
7350,
7351,
7352,
7353,
-7354,
7353,
-7354,
7353,
7354,
7355,
7356,
7357,
7358,
7359,
7360,
7361,
-7362,
7361,
7362
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "40089"
},
"arcs": [
[
7363,
-1302,
-5990,
7364,
7365,
7366,
-7367,
-7366,
7367,
7368,
-7369,
7369,
-7370,
7370,
7371,
-7372,
7371,
7372,
-7373,
7372,
7373,
7374,
-7375,
7374,
7375,
-7375,
7376,
-7377,
7377,
7378,
7379,
-7380,
7380,
-7381,
7380,
-7381,
7380,
7381,
7382,
7383,
-7383,
7382,
7384,
7385,
7386,
-7383,
7387,
-7386,
7385,
7388,
7389,
7390,
7391,
7392,
-7392,
7391,
7392,
7393,
7394,
7395,
7396
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13277"
},
"arcs": [
[
7397,
7398,
7399,
-6934,
-2722,
-2721,
7400,
7401
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31025"
},
"arcs": [
[
7402,
7403,
7404,
7405,
-5621,
-21,
7406,
7407
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46077"
},
"arcs": [
[
-3910,
-3909,
3908,
-3909,
3908,
-3909,
-3908,
7408,
7409,
7410,
-4340,
7411
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56009"
},
"arcs": [
[
7412,
7413,
7414,
7415,
7416,
7417,
7418
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "36043"
},
"arcs": [
[
7419,
3460,
-3461,
-3460,
-5232,
7420,
7421,
7422,
5567,
-5568,
-5567,
7423
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38047"
},
"arcs": [
[
7424,
7425,
7426,
7427,
7428
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "26053"
},
"arcs": [
[
7429,
-5040,
-4986,
7430,
7431,
7432,
7433,
7433,
7433,
7433,
7434,
7435,
-7436,
7435,
7436,
7437,
7437,
7438,
7439,
7440
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27005"
},
"arcs": [
[
7441,
7442,
7443,
-3452,
7444,
7445,
-6421
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01095"
},
"arcs": [
[
7446,
484,
-485,
-484,
7447,
7448,
7449,
7450,
7451,
-7452,
7452,
7453,
-7454,
7453,
7454,
7455,
7456,
7457
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47173"
},
"arcs": [
[
7458,
7459,
-7460,
7459,
7460,
7461,
7462,
7463,
7464,
7465,
-7466,
7465,
7466,
7467,
7468,
7469,
7470,
-1936,
-1935,
-1934,
1933,
-1934,
-1933
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "54057"
},
"arcs": [
[
7471,
7472,
7473,
7474,
7475,
-7476,
7475,
7476,
7477,
7478,
7479,
-1800,
-1799,
1798,
-1799,
-1798,
1796,
-1796,
-1795,
1794,
-1795,
-1794,
-1793,
1791,
-1791,
-1790
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "55003"
},
"arcs": [
[
7480,
7481,
7482,
-5036,
-7430,
7483,
7484,
7485,
7486
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17053"
},
"arcs": [
[
7487,
-7305,
7488,
7489,
-1548,
1546,
7490,
7491,
-7492,
7491,
7492
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38029"
},
"arcs": [
[
7493,
7494,
7495,
-4960,
7496,
-7428,
7497,
7498,
7499,
-1438,
-1437
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06089"
},
"arcs": [
[
7500,
7501,
-6973,
7502,
7503,
7504,
-7505,
7504,
7505,
7506,
-7507,
7506,
7507,
7508,
7509,
7510,
-7511,
7510,
-7511,
7510,
7511,
7512,
7513,
7514,
-7515,
7514,
-7515,
7514,
7515,
7516,
-7517,
7516,
7517,
7518,
-7519,
7518,
7519,
7520,
7521,
-7522,
7522,
7523,
7524,
7525,
7526,
7527,
-7528,
7527
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22113"
},
"arcs": [
[
7156,
-7169,
7528,
7529,
7530,
6246,
-6247,
-6246,
6245,
-6246,
-6245,
7531,
7532,
-7533,
7533,
7534,
-7535,
7535,
7536,
-7537,
7536
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "05121"
},
"arcs": [
[
7537,
7538,
7539,
7540,
7540,
7541,
7542,
7543,
7544,
7545,
7546,
7547,
7548,
-7549,
7548,
7549,
-2346
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55085"
},
"arcs": [
[
7550,
7551,
7552,
7553,
7554
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22035"
},
"arcs": [
[
7555,
3131,
-3132,
-3131,
-3095,
-3130,
3128,
-3128,
3126,
-3126,
7556,
7557,
7558,
-7559,
7559,
7560,
7561,
-7562,
7561,
7562,
7563,
7564,
7565,
7566,
7567,
7567,
7568
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22037"
},
"arcs": [
[
7569,
7570,
7571,
7572,
-7573,
7572,
7573,
7574,
-7575,
7575,
7576,
-7577,
7576,
7577,
7578,
7579
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22087"
},
"arcs": [
[
7580,
7581,
7582,
7583,
7584,
7585,
7586,
7587,
-7588,
7588,
7589,
7589,
7590,
7591,
7592,
7593,
7594
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "texans",
"team_color": "#FA5454",
"GEOID": "48481"
},
"arcs": [
[
7595,
-4545,
4543,
4543,
-4543,
4541,
-4541,
-4540,
4539,
-4540,
-4539,
-4538,
4537,
-4538,
-4537,
7596,
7597,
7598,
7599,
7600,
7601
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48153"
},
"arcs": [
[
7602,
-5034,
7603,
-2755,
-77
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21151"
},
"arcs": [
[
7604,
7605,
-7606,
7605,
7606,
7607,
-7608,
7608,
7609,
7610,
7611,
-7612,
7612,
7613,
7614,
7615,
7616,
7617,
7618,
7619,
7620,
7621,
-7622,
7621,
7622,
7623,
7624,
7625,
7626,
7627,
-7628,
7627,
7628,
7629,
7630,
-7631,
7630,
7631,
7632,
7633,
7634
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47009"
},
"arcs": [
[
7635,
7636,
7637,
7638,
-7639,
7638,
7639,
7640,
7641,
-7642,
7641,
7642,
7643,
2012,
-2013,
-2012,
2011,
-2012,
-2011,
2009,
-2009,
-2008,
2007,
-2008,
-2007,
-2006,
-3899,
7644,
7645,
7646,
-7647,
-7646,
7645,
7647,
7648,
7649,
7650,
7651,
7652,
7653,
7654
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30031"
},
"arcs": [
[
7655,
-7656,
7656,
7657,
-7658,
7658,
7659,
7660,
7661,
7662,
7663,
-7664,
7663,
7664,
7665,
-2155,
7666,
7667,
7668,
7669,
7670,
7671,
7672,
-7656
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "45031"
},
"arcs": [
[
-6849,
6847,
-6847,
6845,
-6846,
6844,
-6844,
-6843,
7673,
7674,
7675,
7676,
-7677,
7677,
7678,
7679,
7680,
7681,
7682,
7683,
7684,
7685,
7686,
7686,
7687
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01053"
},
"arcs": [
[
7688,
7689,
7690,
7691,
7692,
7693,
-7694,
7693,
7694,
7695,
-7696,
7696,
7697,
7698,
7699,
7700,
-7689
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13143"
},
"arcs": [
[
-5378,
-2504,
7701,
-1541
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20001"
},
"arcs": [
[
7702,
7703,
7704,
7705,
7706,
-7707,
7706,
7707
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17041"
},
"arcs": [
[
7708,
-3759,
7709,
-2749,
-2748,
7710
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51079"
},
"arcs": [
[
7711,
7712,
-7713,
7713,
-7358,
-7357,
7356,
7714,
7715,
-7716,
7715,
7716,
7717,
-7718,
7717,
7718
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55137"
},
"arcs": [
[
7719,
7720,
7721,
-4550,
7722,
7723
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05065"
},
"arcs": [
[
7724,
-2348,
7725,
7726,
7727,
-2056,
-136,
134,
-134,
-133,
-132,
-131,
130
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06053"
},
"arcs": [
[
7728,
7729,
7730,
7731,
7732,
7733,
7734,
7735,
7736,
7736,
7737,
7738,
7738,
7739,
7740,
-7741,
7740,
-7741,
7740,
7741,
7742,
-7743,
7742,
7743,
7744,
-7745,
7744,
7745,
7746,
7747,
7748,
7749,
-7750,
7749,
7750,
-5439,
-5438,
7751,
7752
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35017"
},
"arcs": [
[
7753,
-303,
7754,
7755,
-7756,
7755,
7756,
7757,
-7758,
7758,
7759
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29131"
},
"arcs": [
[
7760,
7761,
7762,
-3191,
7763,
7764,
7765
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37193"
},
"arcs": [
[
-6961,
-6960,
-6959,
-6958,
6957,
-6958,
-6957,
6955,
-6955,
7766,
7767,
-7768,
7767,
7768,
7769,
7770,
7771,
7772,
7773,
-2553,
-2552,
2551,
-2552,
-2551,
-2550,
2549,
-2550,
-2549,
2548,
-2549,
-2548,
7774,
7775,
7776,
-7777,
7776,
7777,
7778,
7779
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29165"
},
"arcs": [
[
7780,
7781,
7782,
7783,
7784,
7785,
7786,
7787,
7788,
7789
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29021"
},
"arcs": [
[
7790,
7791,
7792,
-7782,
7793,
7794,
7795,
-767,
765,
-766,
-765,
763,
-763,
761,
-761
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01083"
},
"arcs": [
[
7796,
7797,
7798,
7799,
7800,
7801,
7802
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18065"
},
"arcs": [
[
7803,
7804,
7805,
7806,
7807,
7808,
7809
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31143"
},
"arcs": [
[
7810,
7811,
7812,
7813,
7814,
7815,
7816,
7817
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39123"
},
"arcs": [
[
7818,
7819,
7820,
7821,
7822
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27107"
},
"arcs": [
[
7823,
7824,
-7442,
-6420,
7825,
7826,
-7827,
7826,
7827,
-7828,
7827,
7828,
7829,
7830,
-7831,
7830,
7831,
7832,
7833,
7834,
7835,
7835,
7836,
7837
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "19165"
},
"arcs": [
[
7838,
7839,
7840,
-2813,
7841
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "24013"
},
"arcs": [
[
7842,
7843,
-6524,
6522,
6522,
6522,
-6522,
7844,
7845,
7845,
7845,
7845,
7846,
7847,
7848,
-7849,
7848,
7849,
7850,
7851
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19011"
},
"arcs": [
[
-5886,
7852,
7853,
7854,
7855
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21159"
},
"arcs": [
[
7856,
7857,
-7858,
7857,
7858,
7859,
-7860,
7860,
7861,
-7862,
7861,
-7862,
7861,
-7862,
7862,
7863,
-7864,
7863,
7864,
-3824,
-3823,
3821,
-3821,
-3820,
3819,
-3820,
-3819,
7865
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27025"
},
"arcs": [
[
7866,
7867,
7868,
-7869,
7869,
7870,
7871,
7872
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21189"
},
"arcs": [
[
7873,
-2956,
-2955,
-2954,
2953,
-2954,
2953,
7874,
-7875,
7874,
7875,
7876,
7877,
7878,
6137,
-6138,
-6137,
6135,
-6135,
6133,
-6133,
6131
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bills",
"team_color": "#5486C1",
"GEOID": "42015"
},
"arcs": [
[
7879,
7880,
7881,
7882,
7883,
-7884,
7884,
7885,
-970,
-969
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54029"
},
"arcs": [
[
7886,
7887,
7888,
7889,
-156,
7890,
7891,
7892,
-7887
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29051"
},
"arcs": [
[
-5146,
7893,
7894,
-7895,
7895,
-7762,
7896
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "26021"
},
"arcs": [
[
7897,
7898,
-4017,
7899,
-6394,
7900,
-3811,
3809,
-3809
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42061"
},
"arcs": [
[
7901,
7902,
7903,
7904,
7905,
7906,
7907,
7908,
7909,
-7910,
7909,
7910,
7911,
-5091,
7912,
7152,
-7153,
-7152,
7913,
7914,
7915,
7916,
-7917,
7916,
7917,
7918,
7919,
7920,
-7921,
7920,
7921
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "31045"
},
"arcs": [
[
7922,
7923,
7924,
7925,
7926
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "51141"
},
"arcs": [
[
7927,
2854,
-2855,
2854,
-2865,
-6656,
7928,
7929,
7930,
-7931,
7930,
7931,
-3506,
-3505
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26119"
},
"arcs": [
[
7932,
7933,
-702,
7934,
7935
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26135"
},
"arcs": [
[
-5538,
7936,
7937,
-7935
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "35007"
},
"arcs": [
[
-2260,
7938,
7939,
-7091,
-6712,
7940
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17163"
},
"arcs": [
[
7941,
7942,
7943,
7944,
7945,
7946,
7947,
7948,
7949,
7950,
7951,
-7942
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17189"
},
"arcs": [
[
-7946,
7945,
-7946,
-7945,
7952,
7953,
7953,
7954,
7955,
7955,
7956,
7957,
7958,
7959,
7960,
-7947
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42009"
},
"arcs": [
[
7961,
7962,
-7963,
7963,
7964,
7965,
7914,
-7915,
-7914,
-7156,
-1775,
7966
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05127"
},
"arcs": [
[
-2406,
-2405,
7967,
7968,
-1298,
7969,
7970,
7971,
2405
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "20099"
},
"arcs": [
[
7972,
7973,
7974,
7975,
7976,
7977
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42073"
},
"arcs": [
[
7978,
-5772,
-152,
7979,
7980
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39067"
},
"arcs": [
[
7981,
7982,
7983,
-6628,
7984
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37003"
},
"arcs": [
[
-7774,
-7773,
7772,
7985,
7986,
-7987,
7987,
-2554
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "34009"
},
"arcs": [
[
7988,
7989,
-7990,
7990,
7991,
7992,
7993,
7994,
7995,
7996,
7997,
7997,
7998,
7999,
7999,
8000
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "33005"
},
"arcs": [
[
-7298,
-7297,
8001,
-5407,
8002,
8003,
8004,
-8005,
8004,
8005,
7297
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27089"
},
"arcs": [
[
1216,
8006,
8007,
8008,
8009,
8010,
1239,
-1240,
1239,
-1240,
-1239,
-1238,
1236,
-1237,
1236,
-1237,
-1236,
1234,
-1234,
-1233,
1232,
-1233,
-1232,
1230,
-1230,
1228,
-1229,
-1228,
1226,
-1227,
1225,
1225,
-1225,
-1224,
-1222,
1222,
-1223,
1221,
-1222,
-1221,
-1219,
1218,
1219,
-1220,
-1219,
-1218,
1216,
-1217
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51101"
},
"arcs": [
[
8011,
8012,
8012,
8012,
8012,
-3386,
-3418,
3417,
-3418,
3417,
-3418,
-3417,
3416,
-3417,
3416,
-3417,
-3416,
-3415,
3414,
-3415,
-3414,
3412,
-3412,
-3411,
3410,
-3411,
-3410,
-3409,
3408,
-3409,
-3408,
3406,
-3406,
3405,
-3406,
8013,
8014,
8015,
8016,
8017,
8018,
8019,
2328,
-2329,
-2328,
2326,
-2327,
2326,
-2327,
2326,
-2327,
2326,
-2327,
-2326,
2324,
-2325,
2324,
-2325,
-2324,
2322,
-2323,
-2322,
-2321,
2320,
-2321,
2319,
-2320,
2319,
-2320,
-2319,
2317
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08055"
},
"arcs": [
[
-4305,
4303,
-4303,
-186,
-185,
-1681,
1679,
-1680,
-1679,
1677,
-1677,
1673,
1675,
1674,
-1674,
-1673,
1671,
-5503,
5502,
-5503,
-5502,
8020,
8021,
8022,
8023,
-8024,
8023,
8024,
6709,
-6710,
-6709,
6707,
-6707,
-6706,
6705,
-6706,
-6705,
4304
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48255"
},
"arcs": [
[
-688,
686,
-3134,
8025,
8026,
8027,
-8028,
8027,
8028,
8029,
8030,
8031,
8032,
8033,
8034,
-8035,
8035
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47023"
},
"arcs": [
[
8036,
-8037,
8036,
-8037,
8037,
8038,
8039,
8040,
8041,
8042,
8043,
8044,
8045
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17171"
},
"arcs": [
[
8046,
8047,
8048,
8049,
8050
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49027"
},
"arcs": [
[
8051,
8052,
8053,
8054,
8055,
8056
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49029"
},
"arcs": [
[
8057,
8058,
8058,
8059,
-219,
217,
-217,
215,
-215,
210,
212,
213,
-214,
213,
-214,
213,
8060,
8061,
-8062,
8061,
8062,
-5854,
-5853,
5852,
-5853,
-5852
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48257"
},
"arcs": [
[
-3039,
8063,
8064,
8065,
8066,
8067,
8068,
-8069,
8068,
-8069,
8068,
8069,
8070,
8071,
8072,
-8073,
8072,
8073,
-8074,
8073,
-8074,
-8073,
8074,
8075,
-8076,
8075,
8076,
8077
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cardinals",
"team_color": "#C15454",
"GEOID": "04011"
},
"arcs": [
[
8078,
8079,
-8080,
8079,
-8080,
8079,
8080,
-304,
-7754,
8081,
8082,
8083
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cardinals",
"team_color": "#C15454",
"GEOID": "04013"
},
"arcs": [
[
8084,
8085,
8086,
8087,
8088,
-4298,
4295,
-4296,
4295,
-4296,
4295,
4296,
-4296,
-4295,
8089,
-4233,
8090,
8091,
8092,
8093
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26129"
},
"arcs": [
[
8094,
8095,
8096,
-6949,
-7937
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47087"
},
"arcs": [
[
8097,
3738,
-3753,
3751,
-3751,
3749,
8098,
-5396,
5394,
-5394,
5392,
5392,
-5392,
2841,
-2842,
-2841,
2839,
-2839,
2837
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "17159"
},
"arcs": [
[
-4200,
8099,
-1358,
8100,
8101,
-953,
-952,
951,
-952,
-951,
-950,
949,
-950,
-949,
8102
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01009"
},
"arcs": [
[
-7449,
8103,
8104,
8105,
8106,
8107,
-8108,
8107,
8108,
8109,
8110,
8111,
-8112,
8111,
8112,
8113,
-8114,
8113,
8114,
8115,
-8116,
8115,
8116,
8117,
8118,
-8119,
8118,
8119,
8120,
-8121,
8120,
8121,
8122,
-8123,
8122,
8123
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30051"
},
"arcs": [
[
8124,
-1920,
-4565,
8125,
8126
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48131"
},
"arcs": [
[
-4136,
8127,
8128,
8129,
-1266,
8130
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "29173"
},
"arcs": [
[
8131,
8132,
6529,
-6539,
8133,
8134
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48251"
},
"arcs": [
[
8135,
8136,
8137,
8138,
-8139,
8138,
8139,
-8140,
8140,
8141,
8142,
-4635,
8143
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13061"
},
"arcs": [
[
8144,
8145,
-8146,
8146,
8147,
8148,
8149,
8150,
8151,
8152,
-8153,
8152,
8153,
8154,
8155
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "41023"
},
"arcs": [
[
-2388,
8156,
8157,
8158,
8159,
-3795,
3793,
-3793,
3791,
3791,
-3791,
3789,
-3789,
8160,
8161,
-908,
8162
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41011"
},
"arcs": [
[
8163,
8164,
8165,
8166,
8167,
8168,
-8169,
8168,
8169,
8170
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48159"
},
"arcs": [
[
8171,
8172,
-8173,
8172,
-8173,
8172,
8173,
8174,
-8175,
8175,
8176,
8177,
-6082,
-2931
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "36113"
},
"arcs": [
[
-4397,
8178,
8179,
8179,
8180,
-8181,
8180,
8181,
8182,
8183,
-1720,
-1719,
1717,
-1717,
-5230
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51113"
},
"arcs": [
[
-4163,
-4162,
8184,
8185,
-8186,
8185,
8186,
8187,
-8188,
8187,
8188,
-7341,
-7363,
-7362,
7361,
-7362,
-7361,
7359,
-7359,
-7714,
7712,
8189,
8190,
-8191,
8190
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40005"
},
"arcs": [
[
8191,
8192,
8193,
8194,
8195,
8196,
-6284
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17129"
},
"arcs": [
[
8197,
8198,
8198,
8199,
8200,
8201,
8202,
-8203,
8202,
-8203,
8202,
8203,
8204,
8205,
8206,
8207
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13015"
},
"arcs": [
[
861,
-862,
861,
-4244,
8208,
8209,
-5375,
-1539,
-865,
863,
-863,
-862
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12069"
},
"arcs": [
[
8210,
842,
-843,
-842,
8211,
-2470,
-2469,
2468,
-2469,
-2468,
8212,
8213
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40111"
},
"arcs": [
[
8214,
8215,
-4472,
8216,
8217,
8218
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38083"
},
"arcs": [
[
8219,
8220,
8221,
-4958,
8222,
8223
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18049"
},
"arcs": [
[
-1405,
-1404,
1402,
1402,
8224,
-5992,
8225,
-1420,
8226,
-1405,
1404
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20091"
},
"arcs": [
[
8227,
-5463,
8228,
8229,
8230,
8231,
8232,
8233,
8234,
8235,
8236
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "24009"
},
"arcs": [
[
8237,
8238,
8239,
8240,
8241,
8242,
8243,
8244,
8245,
8246,
8247
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "55129"
},
"arcs": [
[
8248,
8249,
8250,
8251
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "53031"
},
"arcs": [
[
8252,
8253,
8254,
8255,
8256,
-8257,
8256,
8257,
8258,
8259,
8260,
8261,
8262,
8263,
8264
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27169"
},
"arcs": [
[
8265,
8266,
8267,
-1617,
8268,
-1475,
-4869
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28149"
},
"arcs": [
[
-7557,
-3125,
-3124,
-3123,
3121,
-3122,
-3121,
-3120,
8269,
8270,
8271,
8272,
8273,
8274,
8274,
8275,
8276,
-8277,
8276,
-8277,
8277,
8278,
-8279,
8279,
8280,
8281,
8282,
-8283,
8282,
8283,
8284,
8285,
-8286,
8285,
8286,
8287,
-8288,
8287,
-8288,
8287,
-8288,
8287,
8288,
-1985,
8289,
8290,
8291,
-1983,
-1982,
1981,
8292,
8293,
8294,
8295,
8296,
8297,
8298,
-3122,
8299,
8300,
8301,
-8302,
-8301,
8302,
8303,
3123,
8304,
8305,
8301
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29003"
},
"arcs": [
[
8306,
8307,
-7791,
-760,
-759,
8308,
8309,
-8310,
8309,
8310,
8311,
8312,
8313,
-8314,
8313,
8314
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29139"
},
"arcs": [
[
8315,
-6537,
-6536,
6535,
-6536,
-6535,
8316,
8317,
8318,
-8319,
8318,
8319,
8320
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20021"
},
"arcs": [
[
8321,
8322,
-4109,
-4731,
8323,
-7975
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37083"
},
"arcs": [
[
-4921,
-4920,
4919,
-4920,
-4919,
8324,
8325,
8326,
8327,
8328,
8329,
8330,
8331,
8332,
-8333,
8332,
8333,
-8334,
8333,
8334,
8334,
8334,
8335,
8336,
-8337,
8336,
8337,
8338,
8339,
-8340,
8339,
8340,
-8341,
8341,
8342,
8343,
8344,
-8345,
8344,
8345,
8346,
8346,
8347,
-8348,
8347,
1954,
8348
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35043"
},
"arcs": [
[
[
8349,
8350,
8351,
8352,
8353,
8354,
8355,
8356,
8357,
8358,
8359
]
],
[
[
8360,
8361
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21051"
},
"arcs": [
[
8362,
-7878,
7876,
-7876,
-7875,
7874,
-7875,
-2954,
2953,
-2954,
-2953,
-2952,
2951,
8363,
8364,
8365,
8366,
-8367,
8367,
8368,
8369,
8370,
8371,
-8372,
8371,
8372,
-8373,
8372,
8373,
8374,
8375
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42035"
},
"arcs": [
[
-4739,
-4738,
-5629,
8376,
8377,
8378,
8379,
8380,
8381,
-8382,
8381,
8382,
8383,
-8384,
8383,
8384,
8385,
-8386,
8385,
-8386,
8385,
8386,
8387,
8388,
8389,
8390,
8391,
8392,
-8393,
8393
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41043"
},
"arcs": [
[
8394,
6783,
-6784,
-6783,
6781,
-6781,
6779,
6779,
-6779,
-6778,
6777,
-6778,
-6777,
-6776,
6775,
-6776,
-6775,
6773,
-6773,
6771,
-6771,
8395,
8396,
8397,
-8398,
8398,
8399,
8399,
8400,
8401,
-8402,
8401,
8402,
8403,
-8404,
8403,
8404,
8405,
-8406,
8405,
8406,
-5055,
5053,
-5053,
5051,
-5051
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55065"
},
"arcs": [
[
8407,
8408,
8409,
8410,
8411
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40147"
},
"arcs": [
[
8412,
8413,
8414,
-5132,
8415,
8416
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54077"
},
"arcs": [
[
8417,
8418,
8419,
8420,
8421,
8421,
8421,
8422,
8423,
-8424,
8423,
8424,
8425,
-6599
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55135"
},
"arcs": [
[
8426,
8427,
8428,
-7721,
8429
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48137"
},
"arcs": [
[
8430,
-774,
8431,
8432,
-4727,
8433,
-4469
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "41037"
},
"arcs": [
[
8434,
8435,
8436,
8437,
8438,
8439,
-2218
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29153"
},
"arcs": [
[
8440,
8441,
8442,
8443,
-5508
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "texans",
"team_color": "#FA5454",
"GEOID": "48473"
},
"arcs": [
[
8444,
8445,
-8446,
8446,
8447,
8448,
8449,
8450,
-4532,
-4531,
8451,
8452,
8453,
8454,
8455,
8456,
-8457,
8457,
8458,
-8459,
8458,
8459,
8460,
-5485,
-5484,
5483,
-5484,
-5483,
5482,
-5483,
-5482,
5480,
-5480,
5478,
-5478,
-5477,
5476,
-5477,
-5476,
5475,
-5476,
5474,
8461
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01099"
},
"arcs": [
[
-5919,
-3359,
8462,
8463,
8464,
-7690,
-7689,
8465,
8466,
8467,
8468,
-5920
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "50009"
},
"arcs": [
[
8469,
8470,
8471,
8472,
8473,
8474,
-8475,
8474,
8475,
8476,
8477,
-8478,
8477,
-8478,
8477,
8478,
8479,
-4091,
8480,
8481,
8482,
8483,
8484
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51111"
},
"arcs": [
[
8485,
8486,
-8487,
8486,
8487,
8488,
-8489,
8488,
-8489,
8488,
8489,
8490,
8491,
8492,
-8493,
8493,
8494,
-8495,
8494,
8495,
8496,
8497,
-8498,
8498,
8499,
8500,
8501,
8502,
-8486
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38097"
},
"arcs": [
[
-4014,
8503,
8504,
8505,
8506,
-8507,
8506,
8507,
8508,
-8509,
8508,
-8509,
8508,
8509,
8510,
8510,
8511,
7837,
-7838,
7837,
-7838,
7837,
-7838,
-7837,
7835,
7835,
-7835,
7833,
-7833,
7831,
-7831,
7830,
-7831,
7829,
-7829,
8512,
8513
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13139"
},
"arcs": [
[
8514,
8515,
8516,
-6581,
6579,
8517,
8518,
-8519,
8518,
-8519,
8519,
4703,
8520,
8521,
8522,
8523,
-8524,
8523,
8524,
8525,
8526,
8527,
8528,
-8529,
8528,
8529,
8530,
8531
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13283"
},
"arcs": [
[
8532,
8533,
8534,
8535,
8536,
8537,
-8538,
8537,
8538,
-8539,
8538,
8539,
-8533
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13037"
},
"arcs": [
[
8540,
8541,
8542,
8543,
8544,
-1030,
8545,
8546,
8547,
8548,
-8549,
8549,
8550,
8550,
8551,
8552,
-8151
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "55125"
},
"arcs": [
[
-7432,
-7431,
-4985,
-4984,
8553,
-7552,
8554,
8555,
7431
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27007"
},
"arcs": [
[
8556,
-8009,
8557,
8558,
-6144,
8559,
8560,
-3449,
8561
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "ravens",
"team_color": "#AA54C1",
"GEOID": "24019"
},
"arcs": [
[
8562,
8563,
8564,
8565,
8566,
8567,
8568,
8569,
-8242,
8570
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42037"
},
"arcs": [
[
8571,
8572,
8573,
8574,
8575,
8576,
-8577,
8576,
8577,
8578
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39023"
},
"arcs": [
[
-7291,
8579,
8580,
8581,
8582
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48323"
},
"arcs": [
[
-4729,
3005,
-3006,
-3005,
-1468,
8583,
8584
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cardinals",
"team_color": "#C15454",
"GEOID": "04019"
},
"arcs": [
[
8585,
8586,
8587,
8588,
-4234,
-8090,
-4294
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35006"
},
"arcs": [
[
8589,
8590,
-8350,
8591,
8592,
8593,
-300
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "34005"
},
"arcs": [
[
8594,
-8595,
8594,
8595,
8596,
-8597,
8596,
-8597,
8596,
8597,
8598,
8599,
8600,
8601,
8602,
-8603,
8603,
-2285,
-2284,
-2283,
2282,
-2283,
-2282,
-2281,
2280,
-2281,
2280,
-2281,
-2280,
2279,
-6026,
-6024,
8604
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "50021"
},
"arcs": [
[
8605,
8606,
8607,
8608,
8609,
8610,
8611,
8612,
8613,
8613,
8614,
8615,
8616
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13099"
},
"arcs": [
[
8617,
8618,
8619,
8620,
8621,
8154,
-8155,
-8154,
-8153,
8152,
-8153,
-8152,
-8553
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "25007"
},
"arcs": [
[
8622,
-3694,
3692,
3691,
-3691,
8623,
6903,
8624,
-6905,
-6904,
-6903,
8625,
8626
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38049"
},
"arcs": [
[
8627,
-5514,
8628,
8629,
-8630,
8629,
8630,
-8224,
8631,
-5398
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31179"
},
"arcs": [
[
8632,
8633,
8634,
-1,
8635,
8636
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38045"
},
"arcs": [
[
8637,
-4647,
8638,
-4642,
-7426
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16023"
},
"arcs": [
[
8639,
-2775,
-671,
8640,
-6217,
-6216,
6215,
-6216,
-6215,
-6214,
-3339,
-3338,
-3337,
-3336,
3335,
-3336,
-3335
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "33007"
},
"arcs": [
[
8641,
8642,
8643,
8644,
8645,
-4094,
8646,
-4092,
-8480,
8478,
-8478,
8477,
-8478,
8477,
-8478,
8476,
-8476,
-8475,
8474,
-8475,
-8474,
8472,
-8472,
8470
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38043"
},
"arcs": [
[
-8222,
8647,
8648,
-7429,
-7497,
-4959
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48273"
},
"arcs": [
[
8649,
8650,
-8651,
8650,
8651,
8652,
-8653,
8652,
8653,
8654,
8655,
8656,
8657,
8658,
-8659,
8658,
-8659,
8658,
8659,
-8660,
8659,
8660,
-8661,
8660,
-8661,
8661,
8662
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "18127"
},
"arcs": [
[
-7900,
-4021,
4019,
-545,
-544,
543,
-3721,
-3720,
3719,
-3720,
-3719
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28101"
},
"arcs": [
[
8663,
8664,
-158,
8665
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37163"
},
"arcs": [
[
8666,
8667,
-8668,
8668,
8669,
8670,
8671,
-8672,
8671,
8672,
8673,
-8674,
8674,
8675,
-8676,
8675,
-8676,
8675,
8676,
-8677,
8676,
8677,
-5522,
-5521,
5520,
-5521,
-5520,
-5519,
5518,
-5519,
-5518,
5516,
5516,
-5516
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47127"
},
"arcs": [
[
8678,
8679,
8680,
8681,
-8682,
8682,
8683,
8684,
8685,
-8686,
8685,
8686,
8687,
-8688,
8687,
8688,
-3733,
-3732,
3730,
-3730,
-3729,
3728,
-3729,
3728,
-3729,
-3728
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12103"
},
"arcs": [
[
8689,
8690,
8691,
-8692,
8692,
8693,
8694
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17065"
},
"arcs": [
[
8695,
8696,
8697,
8698,
-4813
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05105"
},
"arcs": [
[
8699,
8700,
8701,
8702,
-5725,
8703,
8704,
8705,
8706,
8707
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "20023"
},
"arcs": [
[
-3973,
8708,
-7275,
8709
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08029"
},
"arcs": [
[
8710,
8711,
-6320,
8712,
8713,
-8714,
8713,
8714,
-8711,
8710,
-8711
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19185"
},
"arcs": [
[
8715,
8716,
8717,
8718,
-1398
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48165"
},
"arcs": [
[
8719,
8720,
8721,
8722,
8723
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "01093"
},
"arcs": [
[
8724,
8725,
8726,
8727,
-4899,
8728,
8729
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "37189"
},
"arcs": [
[
8730,
8731,
-8732,
8731,
-8732,
8732,
8733,
8734,
8735,
-8736,
8736,
8737,
-7775,
-2547,
-2546,
2545,
8738,
8739,
8740,
8741
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "51770"
},
"arcs": [
[
-242,
-241,
8742,
8743,
8744,
-8745,
8744,
8745,
8746,
8747,
8748,
8749,
241
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48317"
},
"arcs": [
[
8750,
8751,
8752,
8753,
8754
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "48037"
},
"arcs": [
[
7380,
-7381,
7379,
-7380,
-7379,
-7378,
7376,
-7377,
7374,
7375,
-7375,
7374,
-7375,
-7374,
-7373,
7372,
-7373,
-7372,
7371,
-7372,
-7371,
7369,
-7370,
7368,
-7369,
-7368,
7365,
7366,
-7367,
-7366,
7365,
8755,
8756,
8757,
8758,
-8759,
8758,
8759,
8760,
-8761,
8761,
8762,
8763,
8760,
8764,
8765,
-8766,
8765,
-8763,
8766,
8767,
8768,
-8769,
-2454,
-2453,
2452,
8769,
-8770,
8769,
8770,
8771,
8772,
8773,
-8774,
8774,
8775,
-8776,
8776,
8777,
-8778,
8777,
-8778,
8777,
8778,
8779,
-8780,
8779,
-8780,
8779,
8780,
-8781,
8780,
8781,
-8782,
8781,
8782,
8783,
8784,
8785,
8786,
7378
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49057"
},
"arcs": [
[
-1506,
1504,
-1505,
-1504,
-1503,
1502,
-1503,
-1502,
-1501,
1500,
-1501,
-1500,
220,
-221,
-220,
-8060,
8058,
8058,
-8058,
-5851,
-5850,
-6451,
-6450,
6448
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "29127"
},
"arcs": [
[
8787,
-7288,
8788,
-8132,
8789,
8790
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants",
"team_color": "#5490E9",
"GEOID": "36045"
},
"arcs": [
[
-3463,
8791,
8792,
8793,
8794,
8795,
-2220,
-7241,
8796
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19097"
},
"arcs": [
[
8797,
8798,
-3658,
8799,
-7268
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38063"
},
"arcs": [
[
-1242,
-4016,
8800,
8801,
8802,
-6526,
-3067,
3065,
3065,
3065,
-3065,
-3064,
3063,
-3064,
3063,
-3064,
-3063
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "36019"
},
"arcs": [
[
8803,
8804,
8805,
-4408,
-4407,
4406,
-4407,
-4406,
4404,
-4404,
8806
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08045"
},
"arcs": [
[
8807,
8808,
8809,
8810,
8811,
8812,
8813,
8814,
8815,
8816,
8817,
-6351,
-3998
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29177"
},
"arcs": [
[
8818,
8819,
8820,
8821,
8822,
8823,
8824,
8825,
8826,
8827
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39073"
},
"arcs": [
[
8828,
8829,
-3276,
-3275,
-3274,
8830,
-6802,
8831
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01085"
},
"arcs": [
[
8832,
-8833,
8832,
8833,
8834,
-3361,
-5918,
8835,
8836,
8837,
8838,
-8839,
8839,
8840,
8841,
8842,
8843
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13043"
},
"arcs": [
[
8844,
8845,
8846,
8847,
8848
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19113"
},
"arcs": [
[
8849,
8850,
8851,
-1864,
8852,
-7854
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06105"
},
"arcs": [
[
8853,
8854,
8855,
8855,
8856,
8857,
-8858,
8857,
8858,
8859,
8860,
8861,
-8862,
8861,
8862,
8863,
8863,
8864,
-7528,
7527,
-7528,
-7527,
7525,
-7525,
7523,
-7523,
7521,
8865,
8866,
-8867,
8866,
8867,
8868,
8869,
8870,
8871,
8872,
8873,
8874,
-8875,
8874,
8875,
-8876,
8875,
8876,
-8877,
8876,
8877,
8878,
8879,
8880,
-8881,
8880,
8881,
8882,
8883,
8884,
-8885,
8884,
8885,
8886,
-8887,
8886,
8887,
-8854
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13215"
},
"arcs": [
[
-4048,
-4047,
8888,
-6731,
6729,
6729,
6729,
-6729,
-6728,
6727,
-6728,
-6727,
8889,
-4626,
4047
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28135"
},
"arcs": [
[
8890,
8891,
8892,
8893,
8894,
8895,
8896,
-8897,
8896,
8897,
-8894,
8898,
-8899,
8898,
8899,
8900,
8901,
8902
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20005"
},
"arcs": [
[
8903,
-771,
769,
-769,
-768,
-7796,
7794,
-7794,
-7781,
8904,
8905,
8906
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48003"
},
"arcs": [
[
8907,
-8722,
-8753,
8908,
8909,
8910
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39109"
},
"arcs": [
[
8911,
-7292,
-8583,
8912,
8913
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48375"
},
"arcs": [
[
-5764,
8914,
8915,
-6670
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40133"
},
"arcs": [
[
8916,
8917,
8918,
8919,
8920,
8921,
8922,
8923,
8924,
8925,
8926,
-8927,
-8926,
8925,
8926,
-8927,
8926,
8927
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45003"
},
"arcs": [
[
-3179,
-3178,
3177,
8928,
8929,
-8930,
8929,
8930,
8931,
-8932,
8932,
8933,
8934,
8935,
-8936,
8936,
8937,
8938,
8939,
-8940,
8939,
-8940,
8939,
8940,
8941,
-8942,
8942,
8941,
8943,
8944,
8945,
-1111,
8946
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06045"
},
"arcs": [
[
8947,
-8871,
8948,
8949,
8950,
8951,
8952,
4680,
-4681,
-4680,
4678,
-4678,
8953
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "51550"
},
"arcs": [
[
8954,
8955,
8956,
8957,
8958,
-6033,
8959,
-8955
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56037"
},
"arcs": [
[
-1070,
8960,
-4929,
8961,
8962,
-1256,
-325,
8963
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48169"
},
"arcs": [
[
8964,
8965,
8966,
-5561,
-2753
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "54031"
},
"arcs": [
[
8967,
8968,
8969,
8970,
8971,
8972,
8973,
-8974,
8973,
8974,
-8975,
8974,
8975,
8976,
8977,
8978,
8979,
8980,
-8981,
8981,
8982,
8983,
-7473
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55089"
},
"arcs": [
[
8984,
8985,
8986,
-6791,
8987
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47163"
},
"arcs": [
[
8988,
8989,
8990,
8991,
8992,
8993,
-8994,
8993,
8994,
8995,
-8996,
8995,
8996,
8997,
8998,
8999,
9000,
-9001,
9000,
9001,
-9002,
9001,
9002,
9003,
-7125,
7124,
-7125,
7123,
-7123,
-7122,
7121,
-7122,
-7121,
9004
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45059"
},
"arcs": [
[
9005,
9006,
9007,
-9008,
9007,
9008,
9009,
-9010,
9009,
9010,
9011,
-9012,
9011,
9012,
-9013,
9012,
9013,
9014,
-9015,
9015,
-6409,
-6408,
-6407,
6406,
-6407,
-6406,
9016,
9017,
9018,
9019,
-9006
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56011"
},
"arcs": [
[
-6289,
9020,
-5019,
9021,
9022
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55117"
},
"arcs": [
[
9023,
9024,
9025,
9026,
-8985,
9027,
9028
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "25013"
},
"arcs": [
[
-612,
610,
-610,
607,
-609,
-608,
-607,
-606,
605,
-5425,
9029,
9030,
9031
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48055"
},
"arcs": [
[
9032,
9033,
-683,
-682,
-681,
680,
-681,
-680,
-679,
678,
-679,
9034,
-9035,
9034,
9035,
9036,
-9037,
9036,
9037,
9038,
-9039,
9038,
9039,
9040,
-9041,
9040,
9041,
9042,
9042,
9043,
9044,
-9045,
9045,
9046,
9047,
9048
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20029"
},
"arcs": [
[
9049,
-825,
9050,
9051,
9052,
9053
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "06027"
},
"arcs": [
[
9054,
9055,
9056,
9057,
9057,
9058,
9059,
-9060,
9059,
9060,
9061,
9061,
9062,
9063,
9064,
9065,
9066,
9067,
9068,
-7117,
-7116,
-1590,
-1589,
-1588,
1587,
9069,
9070,
9071,
9072,
9073,
-9074,
9073,
9074
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01037"
},
"arcs": [
[
9075,
9076,
9077,
9078,
9079,
9080,
9081,
9082,
-9083,
9082,
9083,
9084,
9085,
-85
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "19059"
},
"arcs": [
[
-3662,
9086,
9087,
9088
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21095"
},
"arcs": [
[
9089,
-9090,
9090,
9091,
9091,
9091,
9092,
2978,
-2979,
-2978,
2976,
9093,
9094,
9095,
9096,
9097,
9098,
-9099,
9098,
9099,
9100,
9101,
9102,
9103,
9104,
9105,
-9106,
9105,
9106,
9107,
9107,
9108,
9109,
9110,
-9090
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20061"
},
"arcs": [
[
9111,
-2516,
2514,
-2514,
9112,
9113,
9114,
9115,
-9116,
9115,
9116
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42011"
},
"arcs": [
[
9117,
9118,
9119,
9120,
9121,
9122,
-9123,
9123,
9124,
9125,
9126,
9127
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47019"
},
"arcs": [
[
-8999,
8997,
-8997,
-8996,
8995,
-8996,
-8995,
-8994,
8993,
-8994,
9128,
9129,
9130,
9131,
-9132,
9132,
9133,
9134,
9135
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27083"
},
"arcs": [
[
9136,
9137,
9138,
9139
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51037"
},
"arcs": [
[
9140,
9141,
-8502,
-8501,
9142,
9143,
9144,
9145,
9146,
9147,
9148,
9149,
9150
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47179"
},
"arcs": [
[
-9136,
9151,
9152,
9153,
-9154,
9154,
9155,
9003,
7125,
-7126,
-7125,
7124,
-9004,
-9003,
-9002,
9001,
-9002,
-9001,
9000,
-9001,
-9000
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "45071"
},
"arcs": [
[
9156,
9157,
-9158,
9157,
9158,
9159,
-9160,
9159,
-9160,
9159,
9160,
9161,
9162,
9163,
9164,
9165,
9166,
-3176,
3174,
-3174,
-3173,
3172,
-3173,
-3172,
-3171,
3170,
-6410,
-6409,
6408,
-9016,
9014
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "51093"
},
"arcs": [
[
9167,
9168,
9169,
9170,
-9171,
9170,
9171,
9172,
9173,
-9174,
9173,
9174,
9175,
-9176,
9175,
9176,
9177,
9177,
9178,
9179,
-9180,
9179,
9180,
-988,
-987
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41069"
},
"arcs": [
[
9181,
9182,
-2389,
-8163,
-907,
9183
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "29023"
},
"arcs": [
[
9184,
9185,
9186,
-9187,
9186,
9187,
-9188,
9187,
9188,
9189,
9189,
9189,
9190,
9191,
9192,
9193
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22047"
},
"arcs": [
[
9194,
9195,
9196,
9197,
9198,
9199,
-9200,
9200,
9201,
-9202,
9202,
9203,
9204
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28125"
},
"arcs": [
[
-3093,
9205,
9206,
9207,
-9208,
9208,
9209,
9210,
9211,
-3118
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51061"
},
"arcs": [
[
9212,
531,
-532,
-531,
9213,
9214,
-9215,
9215,
9216,
9217,
9218,
-9219,
9218,
9219,
-4160,
-4159,
9220,
9221,
-9222,
9221,
-9222,
9221,
9222,
9223,
9224
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "51750"
},
"arcs": [
[
266,
-267,
265,
265,
-265,
-264,
263,
9225,
-268,
-267
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "32005"
},
"arcs": [
[
9226,
-5542,
9227,
9228,
9229,
-9230,
9230,
9231,
9232,
9233
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "12037"
},
"arcs": [
[
789,
-789,
9234,
9235,
9236,
-9237,
9236,
9237,
9238,
9239,
9240,
-9241,
9240,
9241
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18055"
},
"arcs": [
[
9242,
9243,
9244,
9245,
9246,
9247,
9248,
9249,
9250
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18139"
},
"arcs": [
[
9251,
-7808,
9252,
-4941,
-4358,
9253
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55131"
},
"arcs": [
[
9254,
9255,
9256,
-9028,
-8988
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29105"
},
"arcs": [
[
9257,
9258,
-9259,
9258,
9259,
9260,
-9261,
9261,
9262,
9263,
-5845,
9264,
9265,
-9266,
9265,
9266
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42085"
},
"arcs": [
[
9267,
9268,
-5768,
-7979,
-5738
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "05031"
},
"arcs": [
[
9269,
9270,
9271,
9272,
9273,
9274,
9275,
9276
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29195"
},
"arcs": [
[
9277,
9278,
9279,
9280,
6764,
-6765,
-6764,
9281,
9282,
9283,
9284,
9285
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "17193"
},
"arcs": [
[
9286,
-6304,
-4133,
4131,
-4132,
-4131,
-4130,
4128,
-4128,
4126,
4125,
-4126,
4125,
6401,
6400,
-6400,
-8698,
9287
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17039"
},
"arcs": [
[
-1551,
-2746,
-4801,
9288
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "32033"
},
"arcs": [
[
9289,
9290,
9291,
9292,
-8056,
9293,
-7114,
9294,
9295,
9296,
9297,
9298,
9299,
-9300,
9299,
9300,
-9290
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27049"
},
"arcs": [
[
-1519,
-1518,
-1517,
1516,
-1517,
-1516,
9301,
9302,
-4867,
-3664,
9303,
9304,
1518
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "37173"
},
"arcs": [
[
9305,
9306,
9307,
9308,
-9309,
9308,
-9309,
9309,
9310,
9311,
9312,
9313,
9314,
9315,
9316,
9317,
-2013,
-7644,
-7643,
-7642,
7641,
-7642,
-7641,
9318,
9319,
9319,
9320,
9321,
-9322,
9321,
9322,
9323,
9324
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12101"
},
"arcs": [
[
9325,
9326,
9327,
-8690,
9328,
-783
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12119"
},
"arcs": [
[
9329,
-8214,
9330,
9331,
9332,
-9326,
-782,
-781,
780,
-781,
-4316,
4314,
-4314
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jets_giants",
"team_color": "green_blue",
"GEOID": "36059"
},
"arcs": [
[
9333,
-4602,
4600,
-4600,
9334,
9335,
9336,
9337
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38091"
},
"arcs": [
[
-8801,
-4015,
-8514,
9338,
-4644,
9339
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18163"
},
"arcs": [
[
-6303,
-2574,
-2573,
9340,
9341,
9342,
9343,
9344,
-4117
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "29071"
},
"arcs": [
[
9345,
9346,
9347,
-9348,
9348,
9349,
-7231,
9350,
9351
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "37011"
},
"arcs": [
[
8741,
-8742,
-8741,
8739,
-8739,
-2546,
-2559,
-2558,
2557,
9352,
9353,
9354,
9355,
-9356,
9356,
9357,
-9358,
9357,
9358,
-9133,
9131
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54107"
},
"arcs": [
[
9359,
9360,
-9361,
9360,
9361,
9362,
-9363,
9363,
9364,
9365,
-6465,
-6464,
9366,
9367,
-9368,
9367,
9368,
9369,
9370,
9371
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "55007"
},
"arcs": [
[
9372,
-7487,
9373,
9374
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47161"
},
"arcs": [
[
9375,
9376,
9377,
9378,
9379,
9380,
9381
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55097"
},
"arcs": [
[
9382,
-8430,
-7720,
9383,
9384
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45063"
},
"arcs": [
[
9165,
-9166,
9165,
9385,
9386,
9387,
9388,
-9389,
9389,
9390,
9390,
9391,
9392,
-8932,
-8931,
-8930,
8929,
-8930,
-8929,
-3178,
-3177,
-9167,
-9166
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "24003"
},
"arcs": [
[
-6516,
-6515,
-1964,
-1963,
1962,
-6514,
9393,
9394,
9395,
-8240,
8238,
-8238,
9396,
9397,
-9398,
9397,
9398,
9399,
9400,
9401,
-9402,
9402,
9403,
-9404,
9403
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55039"
},
"arcs": [
[
9404,
9405,
-9029,
-9257,
9406,
-4552
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54101"
},
"arcs": [
[
9407,
9408,
9409,
-9410,
9410,
-352,
-377,
375,
-375,
9411,
9412,
9413,
-9414,
9413,
9414,
9415
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55061"
},
"arcs": [
[
9416,
9417,
9418,
9419,
9420
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48369"
},
"arcs": [
[
9421,
9422,
9423,
9424,
9425
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40151"
},
"arcs": [
[
9426,
-2930,
9427,
9428,
9429,
9430,
9431,
9432,
-2741,
-2740,
9433,
9434
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21063"
},
"arcs": [
[
-3833,
3832,
-3833,
-3832,
-3831,
3830,
-3831,
-3830,
-3829,
3828,
-3829,
-3828,
-3848,
3847,
-3848,
-3847,
-3846,
3845,
-3846,
-3845,
9435,
9436,
-9437,
9436,
9437,
9438,
9439,
9440,
-9441,
9440,
-9441,
9440,
9441,
9442,
9442,
9442,
9442,
9443,
9444,
9445
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "25003"
},
"arcs": [
[
9446,
9447,
9448,
-613,
-9032,
9449,
9450,
9451
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29041"
},
"arcs": [
[
-964,
9452,
9453,
9454,
-6761,
-6765,
-9281,
9455,
9456,
-9457,
9456,
9457,
-9458,
9457,
9458,
9459,
9460,
9461
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08103"
},
"arcs": [
[
9462,
-8817,
9463,
-4932
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08087"
},
"arcs": [
[
9464,
9465,
9466,
9467
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "41045"
},
"arcs": [
[
-8161,
-3788,
9468,
9469,
9470,
-9471,
9470,
9471,
9472,
9473,
9474,
-1260,
9475
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "34023"
},
"arcs": [
[
-4879,
-4878,
4876,
-4876,
9476,
9477,
9478,
-9479,
9478,
9479,
9480,
9481,
-9482,
9481,
-9482,
9481,
-9482,
9481,
9482,
9483,
9484,
-9485,
9484,
9485
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20167"
},
"arcs": [
[
9486,
9487,
9488,
9489,
-2639
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17155"
},
"arcs": [
[
-3238,
9490,
9491
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "46055"
},
"arcs": [
[
9492,
9493,
9494,
9495,
9496,
-5106,
-5105,
5103,
-5103,
5101,
5100,
-5100,
5098,
-5098
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47111"
},
"arcs": [
[
-3740,
-3739,
-8098,
-2838,
-2837,
-2947,
-2946,
-3369,
-622,
9497
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05023"
},
"arcs": [
[
-138,
-2071,
9498,
9499,
-5195
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01109"
},
"arcs": [
[
9500,
9501,
9502,
9503,
9504,
9505,
9506,
-9507,
9506,
9507,
9508,
-9509,
9508,
9509,
9510
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16003"
},
"arcs": [
[
9511,
9512,
9513,
9514,
9515,
9516,
-9517,
9516,
9517,
-2052,
-2051,
2050,
-2051,
-2050,
9518,
-3786,
-149,
-5796
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "25005"
},
"arcs": [
[
9519,
9520,
9521,
-8623,
9522,
9523,
9524,
9525,
9526
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42107"
},
"arcs": [
[
9527,
9528,
9529,
9530,
-9128,
9126,
-9126,
9531,
-1138,
-1137,
9532,
-8574
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38103"
},
"arcs": [
[
9533,
-6528,
9534,
9535,
9536,
-8648,
-8221
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37045"
},
"arcs": [
[
9537,
9538,
-2415,
2414,
-2415,
-2414,
9539,
9540,
9541,
9542,
-9543,
9543,
9544,
9545,
-9546,
9546,
-9538
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05059"
},
"arcs": [
[
9547,
9548,
9549,
9550,
-2185,
2183,
-2183,
9551,
-5729
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "24021"
},
"arcs": [
[
9552,
-7852,
7850,
-7850,
-7849,
7848,
-7849,
-7848,
9553,
9554,
9555,
9556
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17169"
},
"arcs": [
[
9557,
9558,
9559,
-1654,
1652,
-1652,
-7286,
-892,
9560,
-4595
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "06051"
},
"arcs": [
[
9561,
9562,
-9563,
9562,
9563,
9564,
-9565,
9564,
9565,
9231,
-9232,
-9231,
9229,
9566,
-4587,
-4586,
9567,
-9068,
9568,
9569,
-9570,
9569,
9570,
9571,
9572,
9573,
9574,
9575,
9576,
9577,
9578,
9579,
9580,
9581,
9582,
-9583,
9582,
9583,
9584,
-9585,
9584,
9585
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06109"
},
"arcs": [
[
9586,
-9586,
-9585,
9584,
-9585,
-9584,
-9583,
9582,
-9583,
-9582,
9580,
-9580,
9578,
-9578,
-9577,
9576,
9587,
-6757,
6756,
-6757,
-6756,
-6755,
6754,
-6755,
6754,
-6755,
-6754,
6752,
6752,
-6752,
6750,
-6750,
6748,
-6748,
-6747,
6746,
-6747,
6745,
6745,
-6745,
-6744,
6743,
-6744,
-6743,
-6742,
6741,
-6742,
-6741,
-6740,
6739,
-6740,
-6739,
6737,
-6737,
-6736,
6735,
9588,
-3682,
-3681,
-3680,
3678,
-3679,
3677,
-3677,
3675,
3675,
-3675
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "35013"
},
"arcs": [
[
9589,
-299,
9590,
9591,
-9592,
9591,
9592,
9593,
9594
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13081"
},
"arcs": [
[
9595,
9596,
-9597,
9596,
-9597,
9596,
9597,
9598,
9599,
9600,
9601,
9602,
9603
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "05027"
},
"arcs": [
[
9604,
9605,
9606,
9607,
9608,
9609
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38039"
},
"arcs": [
[
9610,
-8802,
-9340,
-4643,
9611,
9612
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06095"
},
"arcs": [
[
9613,
9614,
9615,
9616,
9617,
-3485,
-3484,
9618,
-4685,
-4684,
-7222,
-7221,
7220,
-7221,
-7220
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19043"
},
"arcs": [
[
9619,
9620,
9621,
9622,
-7265,
9623,
-6665
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48449"
},
"arcs": [
[
-8176,
8174,
-8175,
8174,
-8175,
8174,
9624,
9625,
-9626,
9625,
9626,
-9627,
9626,
9627,
-9628,
9627,
9628,
9629,
9629,
9629,
9629,
9630,
9631,
-9632,
9631,
-9632,
9631,
9632,
9633,
-9634,
9633,
9634,
9635,
9636,
9637,
-9638,
9637,
9638,
9639,
-9640,
9639,
9640,
-9641,
9640,
9641
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "54027"
},
"arcs": [
[
-1789,
1787,
9642,
9643,
9644,
9645,
9646,
9647,
9648,
-9649,
9648,
9649,
9650,
9651,
9652,
8968,
-8969,
-8968,
-7472
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37125"
},
"arcs": [
[
-205,
9653,
9654,
9655,
9656,
9657,
-5528,
-5527,
-5619,
-5603,
-5602,
5601,
-5602,
5601,
-5602,
5601,
-5602,
-5601,
9658,
9659,
-3597
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20009"
},
"arcs": [
[
-9490,
9660,
9661,
9662,
9663,
-6118
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38087"
},
"arcs": [
[
9664,
9665,
-7074,
9666,
9667,
-7142,
9668
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22083"
},
"arcs": [
[
9669,
9670,
-7560,
7558,
9671,
9672,
-9673,
9672,
9673,
9674,
9675,
-9676,
9675,
9676,
-9677,
9676,
-9677,
9676,
9677,
9678,
-9679,
9678,
9679,
1628,
-1629,
1628,
-1629,
-1628,
1626,
-1626,
1624,
-1623,
1623,
1622,
-1623,
-1622,
9680,
9681,
9682,
-9683,
9683,
9684,
9685,
9686,
-9687,
9686,
9687
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31071"
},
"arcs": [
[
-1600,
9688,
9689,
9690
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22099"
},
"arcs": [
[
[
9691,
9692,
9693,
-9694,
9693,
9694,
9695
]
],
[
[
9696,
9697,
9698,
9699,
9700,
-9205,
-9204,
9701,
9702,
-9703,
9702,
9703,
9704,
9705,
-7167,
-7166,
-7165,
7164,
-7165,
-7164,
-7163,
7162,
-7163,
-7162
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01119"
},
"arcs": [
[
9706,
9707,
-2771,
-2770,
2768,
-2769,
-2768,
-2767,
306,
-307,
-306,
-319,
9708,
9709,
-2179
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01133"
},
"arcs": [
[
-8727,
9710,
9711,
9712,
9713,
9714,
9715
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bucs",
"team_color": "#FAC254",
"GEOID": "12117"
},
"arcs": [
[
-8212,
-841,
840,
-841,
-840,
838,
-838,
837,
-838,
-837,
835,
-2455
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28035"
},
"arcs": [
[
9716,
9717,
-7030,
9718,
-7006,
-4493
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26065"
},
"arcs": [
[
-4753,
9719,
9720,
-6892,
9721
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20177"
},
"arcs": [
[
-6882,
-6881,
6880,
-6881,
6880,
-6881,
9722,
9723,
-9724,
9723,
-9724,
9723,
-9724,
9723,
-9724,
9723,
9724,
9725,
9726,
9727,
9728,
9729,
9730,
9731,
-5731,
9732
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46061"
},
"arcs": [
[
9733,
-4343,
-4898,
-898,
9734
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27061"
},
"arcs": [
[
-8560,
-6143,
9735,
-3056,
9736,
9737,
9738,
9739,
9740,
9741,
9741,
9741,
9742,
9743,
9744
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08073"
},
"arcs": [
[
9745,
9746,
-1276,
9747,
-7003,
9748,
9749
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants",
"team_color": "#5490E9",
"GEOID": "36053"
},
"arcs": [
[
-2223,
9750,
9751,
9752,
9753,
9754,
-5566,
-5597,
9755,
9756,
9757,
9758,
-9759,
9758,
9759,
9760,
-9761,
9760,
9761
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "36115"
},
"arcs": [
[
-4396,
9762,
-8606,
-8617,
8615,
-8615,
8613,
8613,
-8613,
9763,
9764,
-1725,
1723,
-1723,
1721,
-1721,
1720,
-1721,
1719,
-8184,
8182,
-8182,
-8181,
8180,
-8181,
8179,
8179,
-8179
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18081"
},
"arcs": [
[
9765,
-5369,
9766,
9767,
9768
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48445"
},
"arcs": [
[
9769,
9770,
-5564,
9771,
-8720,
9772
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35021"
},
"arcs": [
[
9773,
9774,
9775,
-9776,
9775,
9776,
9777,
-9778,
9777,
9778,
-7939,
-2259,
9779,
-4621,
-4620
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01121"
},
"arcs": [
[
9780,
9781,
-87,
-86,
-9086,
9782,
9783,
9784,
9785,
9786,
9787,
9788,
9789
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55067"
},
"arcs": [
[
-7554,
9790,
9791,
9792,
9793,
9794,
9795
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48155"
},
"arcs": [
[
9796,
9797,
9798,
-9799,
9798,
-9799,
9799,
9800,
9801,
9802,
9803,
9804,
9805,
9806,
9807,
-9808,
-9807,
9806,
-9807,
9808,
9809,
9810,
9811,
9812,
9813,
-9814,
9813,
9814,
-9815,
9814,
9815,
9816,
-9817,
9817
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "19021"
},
"arcs": [
[
9818,
-2041,
9819,
9820
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "19129"
},
"arcs": [
[
9821,
9822,
9823,
9824,
9825,
-7405,
7403,
-7403
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48385"
},
"arcs": [
[
-773,
-2239,
9826,
-8432
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39041"
},
"arcs": [
[
9827,
9828,
9829,
9830,
9831,
9832,
9833,
9834
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37067"
},
"arcs": [
[
9835,
-6658,
9836,
944,
-945,
-944,
9837
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "32510"
},
"arcs": [
[
5539,
9838,
9839,
9840,
-9228,
-5541,
-5540
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19049"
},
"arcs": [
[
9841,
9842,
9843,
-3017,
9844
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48065"
},
"arcs": [
[
-8916,
9845,
9846,
-88
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13261"
},
"arcs": [
[
-1317,
1315,
-1315,
-1314,
9847,
9848,
9849,
-9600,
9850,
1036,
-1037,
-1036,
-1035,
1034,
-1035,
-1034,
1032,
9851,
9852,
9853,
9854,
9855
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "29223"
},
"arcs": [
[
-1687,
-1686,
1685,
-1686,
-1685,
9856,
9857,
-9185,
9858,
-3467,
-6081
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45007"
},
"arcs": [
[
9859,
9860,
9861,
9862,
9863,
9863,
9864,
9865,
9865,
9866,
9867,
9868,
-9019,
-9018,
9869,
9870,
-9871,
9871,
-4513,
-4512,
4511,
9872,
9873,
9874,
9875,
-9860
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56007"
},
"arcs": [
[
9876,
9877,
9878,
-4930,
-8961,
-1069,
9879
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30093"
},
"arcs": [
[
9880,
9881,
9882,
9883,
-9884,
9884,
9885,
9886,
9887,
9888,
9889,
-9890,
9889,
-9890,
9890,
9891,
9892,
9893,
9894,
9895,
9896,
9896,
9897
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "17177"
},
"arcs": [
[
-8410,
9898,
9899,
9900,
9901,
9902
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26087"
},
"arcs": [
[
9903,
-3036,
9904,
9905,
9906,
9907,
9908
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22027"
},
"arcs": [
[
9909,
-461,
459,
-459,
-5076,
-5075,
5074,
-5075,
-5074,
9910,
9911,
-9912,
9911,
9912,
-9913,
9912,
9913,
-9914,
9913,
9914,
-9608
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28161"
},
"arcs": [
[
-4769,
9915,
9916,
-8892,
9917,
9918,
-9919,
9918,
9919
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26079"
},
"arcs": [
[
-6839,
-6838,
9920,
9921,
9922
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22039"
},
"arcs": [
[
9923,
9924,
-9925,
9924,
9925,
9926,
9927,
-9928,
9927,
9928,
9929,
-6237,
9930,
-9931,
9930,
9931,
9932,
9932,
9933
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "47069"
},
"arcs": [
[
-6445,
-6444,
9934,
-8045,
9935,
-4765,
-6456,
-3566,
9936
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cardinals",
"team_color": "#C15454",
"GEOID": "04003"
},
"arcs": [
[
9937,
-8083,
9938,
9939,
9940,
-8587
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35023"
},
"arcs": [
[
-8082,
-7760,
9941,
9942,
-9939
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "38023"
},
"arcs": [
[
9943,
-2806,
9944,
9945
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "06071"
},
"arcs": [
[
9946,
-9070,
-1588,
-1587,
1585,
9947,
9948,
9949,
9950,
-4227,
4225,
-4225
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "08083"
},
"arcs": [
[
-2167,
9951,
9952,
9953
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28023"
},
"arcs": [
[
9954,
9955,
-159,
9956
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19125"
},
"arcs": [
[
6689,
9957,
9958,
9959,
9960,
-6685
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31055"
},
"arcs": [
[
9961,
9962,
9963,
9964,
9965,
-9966,
9966,
9967,
9968,
9969,
9970,
9971
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51600"
},
"arcs": [
[
9972,
-9973,
9972,
9973,
9974,
-9975,
9974,
-9975,
9974,
9975
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40057"
},
"arcs": [
[
9976,
9977,
9978,
-7188,
9979,
9980
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29039"
},
"arcs": [
[
9981,
9982,
9983,
-330,
-329,
9984
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13059"
},
"arcs": [
[
9985,
9986,
9987,
9988,
9989,
9990,
9991,
-4708,
9992,
9993,
-9994,
9993,
-9986
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16085"
},
"arcs": [
[
-5795,
5793,
-5793,
9994,
9995,
9996,
9997,
9997,
9998,
9999,
9999,
10000,
10001,
10002,
10003,
10004,
10005,
10006,
-3315,
-3314,
3312,
-3313,
-3312,
3310,
-3310,
-3309,
3308,
-3309,
-3308,
-3307,
3306,
-3307,
-3306,
3304,
-3304,
-3303,
3302,
-3303,
3302,
-3303,
-3302,
3300,
-3300,
10007,
10008,
10009,
-2053,
-9518,
-9517,
9516,
-9517,
-9516,
9514,
-9514,
9512,
-9512
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48275"
},
"arcs": [
[
-9818,
9816,
-9817,
-9816,
-9815,
9814,
-9815,
-9814,
9813,
-9814,
-9813,
9811,
-9811,
9809,
-9809,
9806,
-9807,
9806,
9807,
10010,
10011,
10012
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05103"
},
"arcs": [
[
10013,
10014,
10014,
10014,
10014,
10015,
-10016,
10015,
10016,
10017,
-10018,
10017,
10018,
10019,
10020,
10021,
-10022,
10021,
10022,
10023,
10024,
10025,
-10026,
10025,
10026,
-9606,
10027,
-2199,
2198,
-2199,
2197,
-2197,
-2196,
2195,
-2196,
-2195,
2193,
-2193,
10028
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "39037"
},
"arcs": [
[
10029,
10030,
10031,
10032,
-8914,
10033,
10034,
10035,
10036,
10037
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "40071"
},
"arcs": [
[
10038,
-5223,
10039,
10040,
10041
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46041"
},
"arcs": [
[
10042,
-7208,
10043,
10044,
10045,
-6253,
-6252,
6251,
10046,
10047,
-10048,
10047,
10048,
-10049,
-10048,
10049,
10050,
-10051,
10051,
-9493,
-5097
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41057"
},
"arcs": [
[
-1838,
10052,
10053,
10054,
10055,
10056,
10057,
10058
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13077"
},
"arcs": [
[
-2499,
2497,
-2497,
10059,
10060,
7321,
-7322,
-7321,
-7320,
7319,
-7320,
-7319,
10061,
-10062,
10061,
-6697,
-6696,
6695,
10062,
10063
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28127"
},
"arcs": [
[
10064,
10065,
10066,
10067,
10068,
10069,
10070,
10071,
10072,
-10073,
10072,
10073,
10074,
10074,
10075,
10076
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28131"
},
"arcs": [
[
-7029,
10077,
10078,
10079,
-7007,
-9719
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06013"
},
"arcs": [
[
-6356,
6354,
-6668,
-9619,
-3483,
-3482,
-3481,
3480,
-3481,
-3480,
10080,
10081,
-10082,
10081,
10082,
-10083,
10083,
10084,
-10085,
10084,
-10085,
10085,
10086,
-10087,
10086,
10087,
10088,
10089,
10090,
10091,
-10092,
10091,
10092
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47017"
},
"arcs": [
[
10093,
10094,
10095,
10096,
10097,
10098,
10099,
-10100,
10100,
-10101,
10099,
10101,
10102,
-10103,
10102,
-10103,
10102,
-10103,
10102,
-10103,
10102,
-10103,
10103
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51087"
},
"arcs": [
[
-2334,
2332,
-2332,
-2331,
10104,
10105,
10106,
-10107,
10107,
10108,
10109,
10106,
10110,
10111,
-10112,
10111,
10112,
-10113,
10112,
10113,
-6652,
-6651,
6650,
-6651,
6650,
-6651,
6649,
-6649,
-6648,
-6647,
-6645,
6645,
-6646,
6644,
-6645,
6643,
6643,
-6643,
-6642,
10114,
-6818,
-7273
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18119"
},
"arcs": [
[
10115,
10116,
10117,
-9244,
10118
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jets_giants",
"team_color": "green_blue",
"GEOID": "36119"
},
"arcs": [
[
10119,
10120,
-9338,
10121,
10122,
10123,
10124,
10125
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "29017"
},
"arcs": [
[
10126,
10127,
10128,
-9857,
-1684
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "54047"
},
"arcs": [
[
10129,
10130,
10131,
-10132,
10131,
10132,
-4419,
4418,
-4419,
-4418,
4415,
4416,
10133,
10134,
-10135,
10135,
10136,
10137,
-10138,
10137,
10138,
10139,
-10140,
10139,
-10140,
10139,
-10140,
10139,
10140
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54033"
},
"arcs": [
[
-1811,
-1810,
10141,
10142,
10143,
-10144,
10143,
-10144,
10143,
10144,
10145,
10146,
10147,
10148,
10149,
-10150,
10149,
10150,
-10151,
10151,
10152,
-10153,
10153,
10154,
10155,
-10156,
10156
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37077"
},
"arcs": [
[
10157,
10158,
10159,
-1959,
10160,
-2808,
-3085
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants_patriots",
"team_color": "blue_red",
"GEOID": "09009"
},
"arcs": [
[
10161,
10162,
10163,
10164,
10165,
-931,
-4604,
10166,
10167
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31139"
},
"arcs": [
[
-8637,
10168,
10169,
10170,
10171
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13023"
},
"arcs": [
[
10172,
10173,
-10174,
10174,
10175,
-10176,
10176,
10177,
10178,
10179
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13033"
},
"arcs": [
[
10180,
10181,
10182,
-8939,
8937,
-8937,
8935,
10183,
10184,
10184,
10185,
10186,
-4075,
-4074,
10187,
10188,
-10189,
10188,
-10189,
10188,
10189,
10190,
-10191,
10190,
10191,
10192,
10193,
10194,
10195
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17181"
},
"arcs": [
[
10196,
10197,
10198,
10199,
10200,
-10201,
10201,
10202,
10203,
10204,
10205,
10206
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17091"
},
"arcs": [
[
-3722,
-2083,
-7303,
-7488,
10207,
10208,
10209
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38051"
},
"arcs": [
[
-4641,
10210,
10211,
-7498,
-7427
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31141"
},
"arcs": [
[
10212,
10213,
10214,
7812,
-7813,
-7812,
-7811,
7810,
10215,
10216,
10217,
10218
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37185"
},
"arcs": [
[
10219,
-4922,
-8349,
-1955,
1954,
-1955,
1954,
-1955,
-1954,
-1953,
1952,
-1953,
1952,
-1953,
-1952,
-1951,
10220,
10221
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13197"
},
"arcs": [
[
10222,
10223,
10224,
-9853,
10225,
-6733
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46027"
},
"arcs": [
[
10226,
10227,
10228,
10229,
10230,
10231
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "10005"
},
"arcs": [
[
-7991,
7989,
10232,
-1352,
10233,
-8566,
-8565,
-8564,
10234,
10235
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13159"
},
"arcs": [
[
10236,
10237,
10238,
10239,
10240,
10241,
10242,
10243,
10244,
10245,
-10246,
10245,
10246,
10247,
-10248,
10248,
10249,
10250
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29175"
},
"arcs": [
[
10251,
10252,
10253,
-5134,
-6762,
-9455
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20015"
},
"arcs": [
[
10254,
-5812,
10255,
-644,
10256,
-5219,
10257
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48209"
},
"arcs": [
[
10258,
10259,
-10260,
10260,
9048,
-9049,
-9048,
-9047,
-9046,
9044,
-9045,
9045,
10261,
6900,
-6901,
-6900,
6898
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48325"
},
"arcs": [
[
10262,
-2243,
-2242,
2241,
-6167,
10263,
10264
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26105"
},
"arcs": [
[
-6385,
10265,
-9026,
10266,
10267
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45013"
},
"arcs": [
[
10268,
10269,
-10270,
10269,
-10270,
10269,
10270,
10271,
10272,
10273,
10274,
10275,
10276,
10277,
10278,
10279,
10280,
10281,
10282,
-10283,
10283,
10284,
10285,
-10286,
10285,
10286,
-10287,
10286,
10287,
10288,
-10289,
10288,
10289,
10290,
10291,
-10292,
10292,
10293
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46135"
},
"arcs": [
[
10294,
-10232,
10295,
10296,
10297,
-903,
901,
-901
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55105"
},
"arcs": [
[
10298,
10299,
-4582,
10300,
10301,
10302
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45077"
},
"arcs": [
[
[
10303,
10304,
10305,
10305,
10306,
10307,
10308,
10309,
-10310,
10309,
10310,
10307,
-10308,
10311,
-10312,
10311,
10312,
10313,
10314,
10315,
10316,
9859,
-9876,
-9875,
9874,
10317,
10318,
-10319,
10318,
10319
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "53013"
},
"arcs": [
[
10320,
10321,
-142,
10322
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18023"
},
"arcs": [
[
-6013,
10323,
10324,
-4026,
10325,
-6121,
-3928
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17027"
},
"arcs": [
[
10326,
-1649,
10327,
10328,
-7957,
7955,
7955,
-7955,
7953,
7953,
-7953,
7944,
7945,
-7946,
7945,
-7946,
-7945,
-7944
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16067"
},
"arcs": [
[
10329,
-6221,
10330,
10330,
10331,
10332,
10333,
-3268
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42113"
},
"arcs": [
[
-7885,
7883,
10334,
10335,
-8572,
10336
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28121"
},
"arcs": [
[
10337,
10338,
10339,
-10340,
10340,
10339,
10341,
-10342,
10341,
10342,
10343,
-10344,
10343,
10344,
10345,
-10346,
10345,
10346,
10347,
-10348,
10347,
10348,
-10349,
10348,
10349,
10350,
-10351,
10350,
-10351,
10350,
10351,
10352,
-10077,
10353,
10354,
-10355,
10354,
10355,
10356,
-10357,
10356,
-10357,
10356,
10357,
10358,
-10359,
10358,
10359,
10360,
-10361,
10360,
-10361,
10360
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48345"
},
"arcs": [
[
-5033,
10361,
10362,
10363,
-7604
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41039"
},
"arcs": [
[
10364,
10365,
-5056,
-8407,
-8406,
8405,
-8406,
-8405,
-8404,
8403,
-8404,
-8403,
-8402,
8401,
-8402,
-8401,
8399,
8399,
-8399,
8397,
10366,
10367,
10367,
10368,
10369,
-10370,
10369,
10370,
10371,
10372,
-2216,
2214,
-2214,
2213,
-2214,
10373,
10374,
10375,
10376,
-10377,
10376,
10377
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48485"
},
"arcs": [
[
10378,
10379,
10380,
7228,
-7229,
-7228,
388,
-389,
-388
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26155"
},
"arcs": [
[
10381,
10382,
10383,
10384,
-9720,
-4752
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20089"
},
"arcs": [
[
-887,
-29,
-826,
-9050,
10385,
10386
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20123"
},
"arcs": [
[
-10386,
-9054,
10387,
10388,
10389
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jags",
"team_color": "#54AAC1",
"GEOID": "12007"
},
"arcs": [
[
10390,
10391,
10392,
-10393,
10393,
10394,
10394,
10394,
10395,
10396,
-10397,
10397
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28091"
},
"arcs": [
[
10398,
10399,
-4495,
-7025,
10400,
10401
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28039"
},
"arcs": [
[
10402,
-4895,
10403,
-10078,
-7028
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "17085"
},
"arcs": [
[
10404,
-8411,
-9903,
10405,
-8798,
-7267
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18059"
},
"arcs": [
[
-7809,
-9252,
10406,
10407,
-4023,
10408
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "51620"
},
"arcs": [
[
-9174,
9173,
-9174,
-9173,
10409,
10410,
-10411,
10411
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48329"
},
"arcs": [
[
-8909,
-8752,
10412,
-6292,
10413
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20171"
},
"arcs": [
[
10414,
10415,
-2737,
10416,
10417
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30013"
},
"arcs": [
[
10418,
-1917,
1915,
1915,
-1915,
-1914,
1913,
-1914,
-1913,
10419,
-2147,
-2146,
-2145,
2144,
-2145,
-2144,
-2143,
2142,
-2143,
-2142,
2140,
-2899,
-2898,
2897,
-2898,
-2897,
2896,
-2897,
-2896,
2895,
-2896,
2895,
-2896,
-2895
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17199"
},
"arcs": [
[
-4815,
10420,
10421,
-10197,
10422
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30029"
},
"arcs": [
[
10423,
10424,
10425,
10426,
10427,
10428,
10429,
10430,
10431,
10431,
10432,
10433,
10433,
10434,
10435,
10436,
10437,
10438,
-4573,
-4572,
4571,
-4572,
-4571,
4569,
-4569,
4567,
-4567,
10439,
10440,
10441,
-2881,
2880,
-2881,
-2880,
-2879,
10442,
10443,
10444,
10445,
10446,
10447,
10448,
10449,
-10450,
10449,
10450,
10451,
10452,
10453,
10454,
10455,
10456
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "20189"
},
"arcs": [
[
-6129,
10457,
10458,
10459,
10460,
10461
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21067"
},
"arcs": [
[
-2693,
2691,
10462,
10463,
-10464,
10463,
10464,
10465,
-10466,
10466,
10467,
10468,
-10469,
-10468,
10467,
-10468,
10469,
7611,
-7612,
-7611,
-7610,
-7609,
7607,
-7608,
-7607,
7606,
-7607,
7606,
7607,
10470,
10471,
-1391,
-1390
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21091"
},
"arcs": [
[
10472,
-1184,
10473,
10474,
10475
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46013"
},
"arcs": [
[
10476,
-4639,
10477,
10478,
10479,
10480
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54001"
},
"arcs": [
[
-8425,
-8424,
8423,
-8424,
-8423,
8421,
8421,
8421,
-8421,
10481,
10482,
10483,
10484,
-10485,
10485,
-10147,
-10146,
10145,
10486,
10487,
10487,
10488,
8424
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47181"
},
"arcs": [
[
10489,
-10490,
10490,
10491,
10492,
10493,
10493,
10494,
10495,
-10496,
10495,
10496,
10497,
10498,
-6832,
-6831,
6830,
-6831,
-6830,
10499,
10500,
-10490
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "31013"
},
"arcs": [
[
-7926,
10501,
10502,
10503
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42097"
},
"arcs": [
[
10504,
10505,
-8575,
-9533,
-1136,
-1135,
1134,
-1135,
-1134,
-1133,
1132,
-1133,
-1132,
-3932,
-3931,
10506
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48469"
},
"arcs": [
[
10507,
10508,
-348,
-1001,
1000,
-1001,
1000,
-1001,
999,
-999,
-998,
997,
-998,
-997,
-996,
995,
-996,
-995,
10509,
10510,
-10511,
10510,
10511,
10512,
10513,
-3136
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51530"
},
"arcs": [
[
10514,
10515
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26147"
},
"arcs": [
[
10516,
10517,
-10518,
10518,
-9905,
-3035
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31173"
},
"arcs": [
[
10519,
-976,
10520,
10521,
10522,
-10523,
10523,
-2,
-8635
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "50015"
},
"arcs": [
[
10524,
10525,
10526,
10527,
10528,
-916,
914,
-914
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "51067"
},
"arcs": [
[
10529,
10530,
-10531,
10530,
10531,
10532,
10533,
10534,
-10535,
10534,
10535,
-10536,
10535,
10536,
10537,
10538,
10539,
10540,
10541,
10542,
-2861,
-2860,
2858,
-2858,
-2857,
2856,
-2857,
-2856,
-2855,
-7928,
-3504,
3502,
-3502
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40011"
},
"arcs": [
[
10543,
10544,
-845,
-5152,
10545,
10546
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "53037"
},
"arcs": [
[
10547,
10548,
10549,
10550,
10551,
10552,
10553,
10554,
10555,
10556,
10557,
10558,
10559,
10560,
10561,
10562,
10563,
10564,
-10565,
10565,
10566,
10567,
-10548
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18135"
},
"arcs": [
[
-10038,
10568,
-7805,
10569,
10570
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49025"
},
"arcs": [
[
10571,
10572,
10573,
10574,
10575,
10576,
10577,
10578,
10579,
10580,
10581,
10582,
10583,
10584,
10585,
10586,
-10587,
10586,
10587,
-10588,
10588,
10589,
10590,
-10590,
10591,
10592,
-10593,
10592,
10593,
10594,
10595,
10596
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54093"
},
"arcs": [
[
-10483,
-10482,
-8420,
10597,
10598,
-10599,
10598,
10599,
10600,
10601,
10602,
-10603,
10602,
10603,
10604,
-10605,
10604,
10605,
10606,
-10607,
10606,
-10607,
10607,
-10483,
10482
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55023"
},
"arcs": [
[
-6071,
10608,
10609,
10610,
10610,
10611,
9621,
-9622,
-9621,
10612
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01071"
},
"arcs": [
[
[
10613,
-486,
-485,
-7447,
-7458,
10614,
10615,
10615,
10616,
10617,
-692
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19123"
},
"arcs": [
[
10618,
-7309,
10619,
10620,
10621,
-9959
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20045"
},
"arcs": [
[
10622,
10623,
10624,
10625,
-8231,
8230,
-8231,
-8230,
-6416,
-5732,
-9732
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21059"
},
"arcs": [
[
-10476,
10626,
10627,
-10628,
10628,
10629,
10630,
10631,
10632,
-10633,
10632,
10633,
2570,
-2571,
-2570,
10634
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21197"
},
"arcs": [
[
10635,
10636,
-10637,
10636,
10637,
10638,
10639,
-10640,
10639,
10640,
10641,
-10642,
10642,
-4996,
-6141,
10643,
-10636
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29097"
},
"arcs": [
[
10644,
-332,
10645,
-3227,
-4110,
-8323
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "41061"
},
"arcs": [
[
-151,
-3800,
3798,
-3798,
3796,
3796,
3796,
3796,
-3796,
-8160,
8158,
-8158,
10646,
10647,
10648
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13151"
},
"arcs": [
[
-1881,
1879,
-1880,
-1879,
-1878,
10649,
10650,
-10651,
10650,
10651,
10652,
10653,
-10654,
10653,
10654,
-10655,
10654,
10655,
-10656,
10655,
-10656,
10655,
10656,
10657,
10658,
10659,
10660,
10661,
-10662,
10661,
10662,
10663,
10664,
10664,
10665,
-1047,
1045,
-1046,
-1045
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "38001"
},
"arcs": [
[
10666,
-1440,
10667,
10668,
10669,
10670,
10671,
10672,
-7143,
-9668,
10673
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37137"
},
"arcs": [
[
10674,
-6867,
10675,
-4953
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21083"
},
"arcs": [
[
10676,
10677,
10678,
10679,
10680,
10681,
10682,
10683
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42021"
},
"arcs": [
[
10684,
-7963,
-7962,
10685,
10686,
-5062,
5060,
-4748
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47107"
},
"arcs": [
[
10687,
-3900,
1998,
-1999,
-1998,
-2031,
2029,
-2029,
-2028,
2027,
-2028,
2027,
-2028,
-2027,
2025,
10688,
10689,
10690,
10691,
10692,
10693,
-10694,
10694,
10695,
10696,
10697
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26093"
},
"arcs": [
[
10698,
10699,
10700,
10701,
-9721,
-10385,
10702
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08001"
},
"arcs": [
[
-5165,
-5164,
-6824,
-6823,
10703,
-9467,
10704,
10705,
-6266,
-6265,
6264,
-6265,
-6264,
6259,
-6263,
6261,
-6261,
-6260,
-6259,
6257,
6257,
-6257,
-6256,
6255,
-6256,
6255,
-6256,
6255,
-6256,
-6255,
5164
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42069"
},
"arcs": [
[
10706,
-1715,
-1714,
1713,
-1714,
1712,
10707,
10708,
-10709,
10709,
10710
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40123"
},
"arcs": [
[
10711,
10712,
10713,
10714,
10715,
10716,
-8924,
-8923,
8922,
10717,
10718,
10719,
-6281,
10720,
10721,
10722
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40037"
},
"arcs": [
[
10723,
10724,
-8219,
10725,
-4033,
-4032,
4031,
10726,
10727
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "texans",
"team_color": "#FA5454",
"GEOID": "48457"
},
"arcs": [
[
-3157,
10728,
10728,
10729,
10730,
-10731,
10730,
-10731,
10731,
10732,
10733,
10734,
10735,
-10736,
10736,
10737,
10738,
-10739,
10739,
10740,
-10741,
10740,
10741,
10742,
-10743,
10742,
-10743,
10742,
-10743,
10742,
10743,
-10744,
10743,
10744,
10745,
-10746,
10745,
10746,
10747,
10748,
10749,
10750,
10751,
-10752,
10751,
10752
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47175"
},
"arcs": [
[
-728,
727,
-728,
-727,
-726,
725,
-726,
-725,
723,
-723,
721,
-721,
719,
10753,
10754,
10755,
10756,
5674,
-5675,
-5674,
-5673,
5672,
-5673,
-5672,
5670,
-5670,
5669,
-5670,
-5669
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40125"
},
"arcs": [
[
10757,
-4035,
10758,
-8928,
-8927,
8926,
-8927,
-8926,
8925,
8926,
-8927,
-8926,
-8925,
-10717,
10715,
-10715,
10713,
-10713,
10759,
10760
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants_patriots",
"team_color": "blue_red",
"GEOID": "09013"
},
"arcs": [
[
-9030,
10761,
10762,
-10763,
10762,
10763,
10763,
10764,
-6626,
-6625,
6624,
-6625,
-6624,
-6623,
6622,
10765
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35053"
},
"arcs": [
[
-301,
-8594,
10766,
10767,
10768,
10769
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13003"
},
"arcs": [
[
10770,
-6941,
-6940,
-6939,
6938,
-6939,
6937,
-6937,
10771,
10772,
10773,
-10774,
10773,
-10774,
10773,
10774,
10774,
10775,
10776
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jags",
"team_color": "#54AAC1",
"GEOID": "12031"
},
"arcs": [
[
10777,
-6372,
10778,
10779,
10780,
10781,
10782,
10783,
-10784,
10783,
10784,
10785,
10786,
10787,
10788,
10789,
-10790,
10789,
10790,
10791,
10792,
10793
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48145"
},
"arcs": [
[
10794,
10795,
10796,
2170,
-2171,
-2170,
2168,
-3287
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05149"
},
"arcs": [
[
2402,
10797,
10798,
-10799,
10799,
10800,
-10801,
10800,
-10801,
10800,
10801,
-8704,
-5724,
10802,
-7968,
-2404,
-2403
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20033"
},
"arcs": [
[
-2739,
10803,
10804,
10805,
9434,
-9435,
-9434
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21113"
},
"arcs": [
[
-10471,
-7608,
-7607,
7606,
-7607,
7606,
-7607,
-7606,
7605,
-7606,
-7605,
-7635,
10806,
10807,
10808,
10809,
10810,
10811,
10812,
10813,
10814,
10815
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21171"
},
"arcs": [
[
10816,
10817,
10818,
10819,
10820,
10821,
-10822,
10821,
10822,
-3743,
3741,
-3741,
-9498,
-621,
10823,
-10817
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40075"
},
"arcs": [
[
-5155,
10824,
10825,
10826,
10827,
-10828,
10827,
10828,
-7186,
7185,
-7186,
-7185,
7183,
-7183,
-7182,
7181,
-7182,
-7181,
-7180,
10829,
10830,
-5156,
5155,
-5156
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46079"
},
"arcs": [
[
-7411,
10831,
-1154,
-31,
-4896,
-4341
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37033"
},
"arcs": [
[
10832,
10833,
-3087,
10834,
-635,
10835,
10836,
10837,
10838
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48377"
},
"arcs": [
[
10839,
10840,
10841,
10842,
-10840
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39057"
},
"arcs": [
[
-8581,
10843,
-591,
-590,
10844,
10845,
10846
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48489"
},
"arcs": [
[
10847,
10848,
10849,
10850,
10850,
10851,
-2355,
-2354,
2353,
-2354,
-2353
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35028"
},
"arcs": [
[
10852,
10853,
8361,
8360,
10854,
-8356,
8354,
-8354
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "01003"
},
"arcs": [
[
4888,
-4889,
10855,
-10856,
10856,
10857,
-10858,
10858,
10859,
-10860,
10860,
10861,
-8467,
-8466,
7688,
-7701,
10862,
10863,
-10864,
10863,
10864,
10865,
-10866,
10865,
10866,
10867,
10868,
10869,
10870,
10871,
-4892,
-4891,
4890,
-4891,
-4890,
-4889
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19007"
},
"arcs": [
[
10872,
10873,
10874,
-8717,
10875
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51127"
},
"arcs": [
[
-8020,
8018,
-8018,
8016,
-8016,
8014,
-8014,
3405,
-3406,
-3405,
-396,
-395,
393,
-393,
-392,
391,
-392,
391,
-392,
391,
-392,
-391,
-390,
10876,
-10877,
10876,
10877,
10878,
10878,
10879,
10880,
-10881,
10880,
10881,
10882,
-10883,
10882,
-10883,
10882,
-10883,
10882,
-10883,
10882,
-10883,
10882,
10883,
-10105,
-2330,
-2329
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13263"
},
"arcs": [
[
-6703,
-4672,
4670,
-4670,
10884,
-10223,
-6732,
-8889,
-4046
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants",
"team_color": "#5490E9",
"GEOID": "36049"
},
"arcs": [
[
-3462,
-3461,
-7420,
10885,
-2221,
-8796,
8794,
-8794,
8792,
-8792
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54015"
},
"arcs": [
[
10886,
10887,
10888,
10889,
10890,
10891,
-10892,
10892,
10893
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18077"
},
"arcs": [
[
-4499,
10894,
10895,
-10896,
10896,
10897,
10898,
-10899,
10899,
-4455,
-4463,
10900
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51019"
},
"arcs": [
[
10901,
10902,
-10903,
10902,
10903,
4178,
-4179,
-4178,
-4177,
10904,
10905,
10906,
10907,
10908,
10909,
10910,
10911,
10912,
-10542,
-10541,
10539,
-10539,
10537,
-10537,
-10536,
10535,
-10536,
-10535,
10534,
10913,
-8747,
10914,
10915,
10916,
-10917,
10916,
10917,
10918,
-10919,
10918
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35033"
},
"arcs": [
[
10919,
10920,
-10921,
10921,
-7092,
-7940,
-9779,
-9778,
9777,
-9778,
-9777,
-9776,
9775,
-9776,
9774,
-9774,
-4619,
-4618,
4616,
-4617,
-4616
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31011"
},
"arcs": [
[
10922,
-10218,
10923,
-3613,
10924,
10925
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "29149"
},
"arcs": [
[
10926,
10927,
-7538,
-2345,
10928,
10929
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47083"
},
"arcs": [
[
10930,
10931,
10932,
10933,
9380,
-9381,
-9380
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42131"
},
"arcs": [
[
-10711,
10934,
-10335,
-7884,
-7883,
10935,
10936,
10937
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37107"
},
"arcs": [
[
10938,
10939,
-10940,
10939,
10940,
-10941,
10940,
10941,
10942,
10943,
10944,
10945,
10946,
10947,
-10948,
10948,
10949
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18167"
},
"arcs": [
[
-6946,
10950,
10951,
10952,
-5680,
10953
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18039"
},
"arcs": [
[
10954,
-4810,
10955,
10956,
10957,
-1418,
10958
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "51077"
},
"arcs": [
[
10959,
10960,
10961,
10962,
-10963,
10962,
10963,
10964,
10965,
10966,
10967,
10968,
-10969,
10968,
-10969,
10968,
-10969,
10968,
10969,
10970,
10971,
10972,
10973,
10974,
10975,
-10976,
10976,
-6953
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48303"
},
"arcs": [
[
-78,
-2754,
-5565,
10977
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27093"
},
"arcs": [
[
10978,
-6340,
-1660,
10979,
-4988
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39005"
},
"arcs": [
[
10980,
10981,
10982,
-7315,
10983,
10984,
10985,
-7282,
-7281,
7280,
-7281,
-7280
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31119"
},
"arcs": [
[
-10169,
10986,
-10219,
-10923,
10987
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "dolphins",
"team_color": "#9FE5FA",
"GEOID": "12085"
},
"arcs": [
[
10988,
-3348,
-5863,
-5862,
10989,
10990
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08079"
},
"arcs": [
[
169,
-170,
-191,
189,
189,
-189,
10991,
10992,
10993
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13085"
},
"arcs": [
[
10994,
10995,
-10996,
10996,
-8528,
8526,
-8526,
10997,
10998,
-1885
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13167"
},
"arcs": [
[
10999,
11000,
11001,
11002,
11003,
-11004,
11003,
11004,
11005,
-11006,
11006,
11007,
-11008,
11008,
-6594,
-6593,
11009,
11010,
11011,
11012
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05095"
},
"arcs": [
[
11013,
11014,
11015,
11016,
11017,
-3194,
3192,
-3192,
11018
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29059"
},
"arcs": [
[
11019,
-9267,
-9266,
9265,
-9266,
-9265,
-5844,
11020,
11021,
11022
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "51143"
},
"arcs": [
[
-10839,
11023,
11024,
11025,
11026,
11027,
11028,
-11029,
11028,
11029,
11030,
11031,
-11032,
11031,
-10837,
11032,
-2862,
2860,
-10543,
-10542,
10541,
-10913,
10911,
-10911,
10909,
-10909,
-10908,
11033,
11034,
-11035,
11034,
11035,
11036,
11037,
11038,
-10833
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20145"
},
"arcs": [
[
11039,
-6119,
-9664,
11040,
11041,
11042
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20209"
},
"arcs": [
[
-7785,
11043,
11044,
11045,
11046,
-8237,
-8236,
8234,
8235,
11047,
-7786
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "jags",
"team_color": "#54AAC1",
"GEOID": "12029"
},
"arcs": [
[
[
11048,
3924,
-3925,
-3924,
3922,
-3922,
3920,
-3921,
3920,
11049,
11050,
-11051,
11050,
11051,
11052,
-11053,
11052,
11053,
11054,
11055
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26157"
},
"arcs": [
[
11056,
11057,
-3037,
-9904,
11058,
11059
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20065"
},
"arcs": [
[
11060,
11061,
-3088,
11062,
11063
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22097"
},
"arcs": [
[
11064,
11065,
-9701,
-9700,
-9699,
9697,
-9697,
7160,
-7160,
-7159,
7158,
11066,
-9929,
-9928,
9927,
-9928,
-9927
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47055"
},
"arcs": [
[
11067,
11068,
-11069,
11068,
-11069,
11068,
-11069,
11069,
11070,
-11071,
11070,
11071,
11072,
11073,
11074,
-7797,
11075,
-6828
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39095"
},
"arcs": [
[
11076,
-7819,
11077,
11078,
-11079,
11078,
11079,
-4083,
-4301,
11080,
11081
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "05093"
},
"arcs": [
[
11082,
11083,
-3760,
-3785,
3783,
-3783,
3781,
-3781,
3779,
11084,
11085,
11086,
11087,
-11088,
11088,
11089,
11090,
11091,
11092,
11093,
11094,
-9271,
11095
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18043"
},
"arcs": [
[
11096,
11097,
11098,
11099,
11100,
11101
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "20129"
},
"arcs": [
[
-6130,
-10462,
11102,
11103
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21081"
},
"arcs": [
[
11104,
-7058,
-7057,
7056,
11105,
-2606,
-2605,
-1384,
11106,
11107,
-11108,
11107,
11108,
-2590,
2588
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21217"
},
"arcs": [
[
4936,
11109,
11110,
11110,
11111,
11112,
11113,
11114,
-11115,
11114,
11115,
11116,
-11117,
11117,
11118,
11119,
-2579,
-2578,
2577,
-2578,
-2577,
2576,
-2577,
-2576,
-4938,
-4937
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "37075"
},
"arcs": [
[
-9318,
-9317,
9315,
-9315,
-9314,
9313,
11120,
11121,
-2019,
-2018,
2016,
-2016,
-2015,
2014,
-2015,
-2014,
2013,
-2014
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54045"
},
"arcs": [
[
-3556,
-3555,
3554,
-3555,
-3554,
11122,
11123,
11124,
11125,
11126,
-11127,
11126,
11127,
11128,
11129,
11130,
-11131,
11130,
-11131,
11130,
11131,
11132,
-11133,
11132,
11133,
11134,
11135,
-11136,
11135,
11136,
11137,
11138,
11139,
11140,
3556
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54073"
},
"arcs": [
[
11141,
-11142,
11142,
11143,
11144,
11145,
-9363,
-9362,
-9361,
9360,
-9361,
-9360,
11146
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "51071"
},
"arcs": [
[
-5240,
-248,
11147,
11148,
11149,
11150,
11151,
11152,
-11153,
11153,
11154,
11155
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54019"
},
"arcs": [
[
11156,
11157,
11158,
-11159,
11158,
11159,
11160,
11161,
11162,
11163,
11164,
11165,
11166,
11167,
-11168,
11168,
11169,
11170,
11171,
11172,
11173
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "53061"
},
"arcs": [
[
11174,
11175,
11176,
-11177,
11176,
11177,
11178,
11178,
11179,
11180,
11181,
11182,
11183
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys_broncos",
"team_color": "orange_blue",
"GEOID": "35015"
},
"arcs": [
[
11184,
11185,
11186,
11187,
-294,
11188
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31117"
},
"arcs": [
[
11189,
-1426,
11190,
11191,
-418,
11192
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31145"
},
"arcs": [
[
11193,
11194,
-1174,
11195,
-5933
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31149"
},
"arcs": [
[
-2823,
2821,
-2821,
-1602,
11196,
-1924
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47085"
},
"arcs": [
[
-10933,
11197,
-5334,
-5333,
5332,
-5333,
-5332,
11198,
11199,
11200,
11201,
11202
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17125"
},
"arcs": [
[
11203,
11204,
8204,
-8205,
-8204,
-8203,
8202,
-8203,
8202,
-8203,
-8202,
8200,
-8200,
8198,
8198,
-8198,
11205,
11206,
-11207,
11206,
11207,
11208,
-11209,
11208,
-11209,
11208,
11209,
11210,
-11211,
11210,
9558,
-9559,
-9558,
-4594
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "51197"
},
"arcs": [
[
11211,
11212,
11213,
-10970,
-10969,
10968,
-10969,
10968,
-10969,
10968,
-10969,
-10968,
11214,
11215,
-11216,
11216,
11217,
11218,
-11212
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13303"
},
"arcs": [
[
11219,
11220,
11221,
11221,
11222,
11012,
-11013,
-11012,
11010,
-11010,
6592,
-6593,
-6592,
-6591,
6590,
-6591,
-6590,
-6589,
11223,
-7332,
11224,
-7331,
7329,
-7330,
-7329
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "53077"
},
"arcs": [
[
1848,
11225,
11226,
11226,
11227,
11228,
11229,
11230,
11230,
11231,
-10565,
10564,
-10565,
-10564,
10562,
-10562,
11232,
11233,
11234,
11235,
-1852,
1850,
-1850,
-1849
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05143"
},
"arcs": [
[
11236,
11237,
-11238,
11237,
11238,
11239,
11240,
11241,
-11242,
11242,
11243,
-233
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48213"
},
"arcs": [
[
11244,
11245,
-11246,
11245,
-11246,
11245,
11246,
11247,
11248,
11249,
-11250,
11249,
-11250,
11249,
11250,
11251,
-11252,
11252,
11253,
-11254,
11253,
11254,
11255,
8066,
-8067,
-8066,
11256
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "55035"
},
"arcs": [
[
11257,
11258,
-1826,
11259,
11260,
11261,
-1667
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47153"
},
"arcs": [
[
3445,
-5675,
-10757,
-10756,
10755,
11262,
-274,
-290,
-289,
288,
-699,
697,
-3447,
-3446
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "texans",
"team_color": "#FA5454",
"GEOID": "48471"
},
"arcs": [
[
-6106,
11263,
11264,
-11265,
11264,
11265,
11266,
11267,
-7250,
-7264,
11268,
11269,
11270,
-11271,
11270,
-11271,
11270,
11271,
11272,
-11273,
11272
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cardinals",
"team_color": "#C15454",
"GEOID": "04005"
},
"arcs": [
[
-10595,
-10594,
11273,
-5263,
-5262,
5261,
11274,
11275,
-11276,
11276,
11277,
-11278,
11277,
11278,
11279,
11280,
-11281,
11280,
-11281,
11280,
11281,
11282,
-11283,
11282,
11283,
11284,
11285,
11286,
11286,
11286,
11287,
11288,
11288,
11289,
11290,
-11291,
11291,
11292,
-11293,
11292,
11293,
11294,
11290,
11295,
11296,
-11297,
11296,
-11294,
11293,
-11294,
11297,
11298,
11299,
-11300,
11299,
-11300,
11299,
-11300,
11299,
-11300,
-11299,
11300,
11301,
11302,
-11303,
11302,
11303,
-11304,
11304,
-11305,
11305,
11306,
11307,
11308,
-11309,
11309,
11310,
11311,
11312,
11313,
11314,
11315,
11315,
11316,
11317,
-11318,
11317,
11318,
11319,
11320,
11321,
-11322,
11321,
11322,
11323,
11323,
11324,
11325,
11326
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20191"
},
"arcs": [
[
11327,
11328,
-5224,
-10039,
11329,
11330
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26127"
},
"arcs": [
[
-2379,
11331,
-8986,
-9027,
-10266
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27065"
},
"arcs": [
[
-1209,
-3060,
11332,
11333,
-1210
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39007"
},
"arcs": [
[
-238,
11334,
11335,
11336,
-5736,
11337
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06003"
},
"arcs": [
[
11338,
11339,
9233,
-9234,
-9233,
-9232,
-9566,
-9565,
9564,
-9565,
-9564,
-9563,
9562,
-9563,
-9562,
-9587,
-3674,
11340,
11341
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "texans",
"team_color": "#FA5454",
"GEOID": "48167"
},
"arcs": [
[
11342,
11343,
-11344,
11343,
11344,
11345,
-11346,
11346,
11347,
11348,
11349,
11350,
-11351,
11350,
-11351,
11350,
11351,
-11352,
-11351,
11352,
-11352,
11353,
11354,
11355,
11356,
-11344
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01011"
},
"arcs": [
[
11357,
11358,
11359,
11360,
11361,
-11362,
11362,
-9501
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17105"
},
"arcs": [
[
11363,
11364,
-10208,
-7493,
-7492,
7491,
-7492,
-7491,
-1547,
-1546,
11365
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39135"
},
"arcs": [
[
-10036,
-10035,
11366,
-1022,
1020,
-1020,
-4606,
11367,
10035
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39079"
},
"arcs": [
[
11368,
-3280,
11369,
-6540,
-3242,
-5904
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "texans",
"team_color": "#FA5454",
"GEOID": "48201"
},
"arcs": [
[
8446,
-8447,
11370,
11371,
-11372,
11371,
11372,
11373,
11374,
11375,
11376,
11377,
-11378,
11377,
11378,
11379,
-11380,
11380,
11381,
11382,
11383,
11384,
11385,
-11347,
11345,
-11346,
-11345,
-11344,
11343,
-11344,
11342,
11386,
11387,
-11388,
11387,
-11388,
11387,
11388,
-4533,
4531,
-8451,
8449,
-8449,
-8448,
-8447,
8445,
-8446
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "25017"
},
"arcs": [
[
11389,
11390,
11391,
11392,
645,
-668,
-667,
666,
-667,
-666,
664,
-664,
11393,
-660,
659,
11394,
11395,
11396,
-5417,
-5416,
5415,
-5416,
5415,
-5416,
5415,
-5416,
-5415,
5413,
-5413,
5411,
-5411,
5409,
-5409
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48115"
},
"arcs": [
[
11397,
-8754,
-8721,
-9772,
-5563
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bills",
"team_color": "#5486C1",
"GEOID": "36069"
},
"arcs": [
[
11398,
11399,
11400,
-494,
11401,
11402,
-11403,
11402,
11403,
11404,
-11405,
11404,
11405,
11406,
11407,
11408
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01001"
},
"arcs": [
[
11409,
11410,
11411,
11412,
-8844,
8842,
-8842,
-8841,
-8840,
8838,
8840,
11413,
11414,
-11415,
11414,
11415,
-11410
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20121"
},
"arcs": [
[
-8229,
-5462,
11416,
11417,
-6417
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13091"
},
"arcs": [
[
-10176,
-10175,
10173,
11418,
11419,
11420,
-11421,
11421,
11422,
11423,
11424,
-11425,
11425,
11426,
11427,
-11428,
11428,
-11429,
11428,
11429,
11430,
-11431,
11430,
11431,
-11432,
11432
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants",
"team_color": "#5490E9",
"GEOID": "36023"
},
"arcs": [
[
11433,
-9757,
11434,
11435,
11436,
-6049,
-7243
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jags",
"team_color": "#54AAC1",
"GEOID": "13039"
},
"arcs": [
[
-555,
554,
-555,
-554,
552,
11437,
11438,
11439,
11440,
11441,
11442,
-11443,
11442,
11443,
11444,
11445,
11446,
11447,
-11448,
11447,
-11448,
11447,
11448,
11449,
11450,
-1523,
-1522,
1521,
-1522,
-1521
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26161"
},
"arcs": [
[
-10702,
11451,
-3047,
11452,
11453,
-6893
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18087"
},
"arcs": [
[
-4809,
11454,
-579,
11455,
-10956
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48371"
},
"arcs": [
[
11456,
11457,
-11458,
11457,
11458,
11459,
-11460,
11459,
11460,
5296,
-5296,
-5295,
5294,
-5295,
-5294,
-5293,
5292,
-5293,
-5292,
5290,
-5290,
-5289,
5288,
-5289,
5288,
-5289,
5288,
-5289,
5288,
-5289,
-5288,
5287,
-5288,
-5287,
5286,
-5287,
-5286,
5284,
-5284,
5282,
5282,
-5282,
5281,
-5282,
-5281,
-5280,
5279,
-5280,
5279,
-5280,
5279,
-5280,
-5279,
11461,
11462,
11463,
11464,
-11465,
11464,
-11465,
11464,
11465,
11466,
11467,
11468,
11469,
11470,
-11471,
11470,
11471,
11471,
11472,
11473,
11474,
-11475,
11475,
11476,
11477,
11478
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13225"
},
"arcs": [
[
11479,
11480,
-1309,
-1308,
1306,
-1306,
-1305,
1304,
-5454,
-5453,
5451
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13311"
},
"arcs": [
[
11481,
-6586,
6584,
-6584,
6582,
-6582,
-8517,
8515,
-8515,
11482,
-5871,
-5870
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13163"
},
"arcs": [
[
11483,
11484,
11485,
-10196,
-10195,
10194,
-10195,
11486,
11487,
11488,
11489,
11000,
-11001,
-11000,
-11013,
-11223,
11221,
11221,
-11221,
11490
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55083"
},
"arcs": [
[
11491,
11492,
11493,
11494,
11495,
11496,
-9792
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48347"
},
"arcs": [
[
-6682,
11497,
11498,
-11499,
11498,
11499,
-11500,
11499,
-11500,
11499,
11500,
11501,
11502,
11503,
-11504,
11503,
-11504,
11503,
11504,
11505,
11506,
3147,
-3148,
-3147,
3146,
-3147,
-3146,
-3145,
3144,
-3145,
3144,
-3145,
3144,
-3145,
-3144,
-3143,
3142,
-3143,
-3142,
3141,
-3142,
3140,
-3140,
11507,
-11508,
11507,
11508,
11509,
-11510,
11509,
-11510,
11509,
11510,
11511,
-11512,
11511,
11512
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "giants_patriots",
"team_color": "blue_red",
"GEOID": "44009"
},
"arcs": [
[
[
11513,
11514
]
],
[
[
11515,
11516,
11517,
11518,
11519,
-4598,
-6621,
-6620,
6619,
-6620,
-6619,
11520
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "53047"
},
"arcs": [
[
11521,
11522,
-11523,
11522,
11523,
11524,
11525,
11526,
11527,
11528,
11529,
11530,
11531,
11532,
11533,
11534,
11535,
11536,
11537,
11538,
-11539,
11538,
11539,
11540,
11541
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "53063"
},
"arcs": [
[
11542,
11543,
-1571,
-6851,
11544,
11545,
11546,
-11547,
11547,
11548,
11549,
11550,
11551
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55041"
},
"arcs": [
[
-8554,
4983,
-4984,
-4983,
4981,
4981,
-4981,
11552,
11553,
-11492,
-9791,
-7553
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "55113"
},
"arcs": [
[
-9374,
-7486,
11554,
11555,
-8250
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jets_giants",
"team_color": "green_blue",
"GEOID": "34017"
},
"arcs": [
[
11556,
11557,
11558,
11559,
11560,
11561,
-4874,
11562,
11563,
11564,
11565,
11566,
11567,
-11568,
11567
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39151"
},
"arcs": [
[
-1254,
11568,
11569,
11570,
11571,
11572,
-7313,
11573
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48187"
},
"arcs": [
[
-9044,
9042,
9042,
-9042,
-9041,
9040,
-9041,
-9040,
-9039,
9038,
-9039,
-9038,
-9037,
9036,
-9037,
-9036,
-9035,
9034,
-9035,
678,
-690,
11574,
11575,
-11576,
11575,
-11576,
11576,
-6163,
-6162,
-6161,
6160,
-6161,
6160,
-6161,
-6160,
6159,
-6160,
-6159,
-6158,
6157,
-6158,
-6157,
6156,
-6157,
-6156,
-6902,
-6901,
-10262,
-9046
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "53029"
},
"arcs": [
[
11577,
11578,
-11184,
-11183,
11182,
11579,
-8255,
-8254
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "54037"
},
"arcs": [
[
11580,
11581,
-11582,
11581,
11582,
11583,
11584,
-11585,
11584,
-11585,
11585,
11586,
11587,
11588,
11589
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51153"
},
"arcs": [
[
[
11590,
11591,
-11592,
11591,
11592,
11593,
11594,
-11595,
11595,
11596,
11597,
-11598,
11598,
11599,
11600,
11601,
11602,
-519,
-518,
516,
-516,
-532,
-9213
],
[
11603,
-11604,
11603,
-11604,
11604,
11605,
11606,
11607,
11608,
-11604
]
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42029"
},
"arcs": [
[
[
-9121,
11609,
11610,
-11611,
11610,
11611,
11612,
11613,
11614,
-11615,
11614,
11615,
11616,
11617,
-11617,
11618,
11619,
11620,
-11621,
11620,
11621,
11622,
-11623,
11622,
-11623,
11622,
11623,
-11625,
-5947,
-3607,
11625,
-9123,
-9122
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "54055"
},
"arcs": [
[
11626,
11627,
11628,
11629,
11630,
11631,
11632,
11633,
-11634,
11633,
11634,
11635,
-11155,
11636,
11637,
11638,
-11639,
11639,
-10130
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47145"
},
"arcs": [
[
-2000,
-3901,
-10688,
11640,
11641,
11642,
11643,
11644,
11645,
11646,
11647,
-1342,
-1341,
-1340,
1339,
11648,
11649,
11650,
-3904,
3902,
-3902
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "53009"
},
"arcs": [
[
11651,
-8265,
8263,
-8263,
11652
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "53065"
},
"arcs": [
[
11653,
11654,
-11552,
11550,
-11550,
11548,
-11548,
11546,
11655,
11656,
11657,
11658,
11659,
11660,
-11661,
11661,
11662,
11663,
11664,
11665,
11666,
11667,
11668,
-11669,
11669
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19177"
},
"arcs": [
[
-2877,
11670,
11671,
11672,
11673,
11674
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31073"
},
"arcs": [
[
11675,
-428,
11676,
11677
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28095"
},
"arcs": [
[
11678,
-8730,
11679,
-4454,
4452,
-4452,
-4451,
4450,
-4451,
4450,
-4451,
4450,
-4451,
4450,
-4451,
-4450,
11680,
11681,
-11682,
11682,
-812,
11683,
11684,
11685
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "12033"
},
"arcs": [
[
-7700,
-7699,
7698,
11686,
11687,
11688,
11689,
-11690,
11689,
11690,
11691,
11692,
11693,
-10871,
10869,
-10869,
10867,
-10867,
-10866,
10865,
-10866,
-10865,
-10864,
10863,
-10864,
-10863
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48439"
},
"arcs": [
[
11694,
11695,
-8144,
-4634,
11696,
11697
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "24033"
},
"arcs": [
[
-6319,
11698,
11699,
11700,
-9402,
-9401,
9399,
-9399,
-9398,
9397,
-9398,
-9397,
-8248,
-8247,
8246,
11701,
11702,
11703,
11704,
11705,
-2872,
-6314
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "51169"
},
"arcs": [
[
11706,
11707,
-2533,
2532,
-2533,
-2532,
2530,
11708,
-9005,
-7120,
11709,
11710
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48239"
},
"arcs": [
[
11711,
-7599,
11712,
-336,
334,
-334,
-10509,
11713,
-11712
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40085"
},
"arcs": [
[
11714,
11715,
11716,
11717,
-11718,
11717,
11718,
-7083,
-1760,
1758,
-1758,
-2624,
11719,
11720,
11721,
11722,
-11723,
11723,
11722,
11724,
11725,
11726,
11727,
-11728,
11727,
11728,
11729
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13289"
},
"arcs": [
[
11730,
6596,
-6597,
-6596,
-10180,
-10179,
10178,
11731,
11732,
-11733,
11732,
11733,
11734,
-11735,
11734,
11735,
11736,
-11737,
11736,
11737,
11738,
-11739,
11738,
11739
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39099"
},
"arcs": [
[
-5739,
-7981,
11740,
-11569,
-1253
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01087"
},
"arcs": [
[
11741,
4628,
-4629,
-4628,
11742,
-11360,
-11359,
11358,
11743,
11744,
-11745,
11744,
11745,
-11746,
11745,
11746,
11747,
11748
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17191"
},
"arcs": [
[
-954,
952,
-8102,
11749,
-9288,
-8697,
11750,
11751
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48437"
},
"arcs": [
[
-6671,
-91,
-5035,
-7603,
-76,
11752
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29151"
},
"arcs": [
[
11753,
11754,
-3185,
-7763,
-7896,
7894
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17089"
},
"arcs": [
[
11755,
-6399,
11756,
-6313,
-7065
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06017"
},
"arcs": [
[
3473,
-5547,
5545,
-5545,
5543,
-5543,
-9227,
-9234,
11339,
-11339,
11757,
11758,
-11759,
11759,
11760,
11761,
11762,
11763,
11764,
-11765,
11764,
11765,
-3476,
3475,
-3476,
-3475,
3473,
-3474
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "45055"
},
"arcs": [
[
11766,
11767,
11768,
11769,
11770,
11771,
11772,
-11773,
11772,
-11773,
11772,
11773,
11774,
11775,
11776,
11776,
11777,
11778,
-11779,
11779,
11780,
11781,
11782,
-11783,
11782,
11783,
-7683,
11784,
11785,
-11786,
11785,
11786,
11787,
11788,
11789,
11790,
11791,
11792,
11793,
11794,
-11795,
11794,
11795
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37073"
},
"arcs": [
[
11796,
-6032,
-7085,
11797,
11798,
11799,
11800,
11800,
11801,
11802,
11803
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08089"
},
"arcs": [
[
11804,
11805,
11806,
-5500,
-5499,
-7002,
7000,
-7000,
-6999,
6998,
-6999,
-6998
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41019"
},
"arcs": [
[
11807,
-10378,
-10377,
10376,
-10377,
-10376,
10374,
-10374,
-2213,
2211,
-2211,
-2210,
2209,
-2210,
-2209,
-3002,
-3001,
3000,
11808,
11809,
-11810,
11809,
11810,
11811,
11812,
8164,
-8165,
-8164
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42089"
},
"arcs": [
[
-1713,
-1712,
11813,
11814,
11815,
1162,
-1163,
-1162,
1161,
11816,
-11817,
11816,
11817,
11818,
11819,
11820,
11821,
11822,
11823,
11824,
-10709,
-10708
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05101"
},
"arcs": [
[
-3421,
11825,
5554,
-5560,
11826,
-5226,
11827
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38019"
},
"arcs": [
[
11828,
11829,
-1215,
-3062,
11830,
11831,
-11832,
11831,
11832
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40103"
},
"arcs": [
[
-10041,
11833,
11834,
11835,
11836,
11837
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20063"
},
"arcs": [
[
11838,
11839,
-11063,
-3090,
11840,
-2738,
-10416,
11841
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22077"
},
"arcs": [
[
11842,
11843,
-9195,
-9701,
9700,
-11066,
11844,
11845,
11846,
11847,
11848,
11849,
11850,
11851,
11852,
11853,
-11854,
11854,
11855,
11856,
-11856,
11857,
11853,
11858,
7574
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31067"
},
"arcs": [
[
-3622,
-23,
11859,
11860,
11861,
11862,
-3618
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01115"
},
"arcs": [
[
-8105,
11863,
11864,
11865,
11866,
11867,
11868,
-11869,
11868,
11869,
-11870,
11870,
11871,
9789,
-9790,
-9789,
-9788,
9786,
-9786,
11872,
11873,
11874,
-8109,
-8108,
8107,
-8108,
-8107
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28123"
},
"arcs": [
[
-10351,
11875,
11876,
-11877,
11877,
-8666,
11878,
-10352
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13095"
},
"arcs": [
[
11879,
11880,
11881,
-8547,
-8546,
-1029,
11882
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18061"
},
"arcs": [
[
11883,
-11102,
11884,
11885,
11886,
11887,
11888,
11889,
11890,
11891,
11892,
11893,
11894,
-11895,
11894,
11895
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16017"
},
"arcs": [
[
11896,
11897,
11898,
11899,
11900,
11901,
11902,
11903,
-1568,
-11544,
11904
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "13047"
},
"arcs": [
[
-282,
11905,
11906,
-11907,
11906,
11907,
11908
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22059"
},
"arcs": [
[
-1635,
11909,
11910,
-11911,
11911,
11912,
-11913,
11913,
11914,
-11915,
11914,
11915,
-4784,
-4783,
4782,
-4783,
4782,
-4783,
-4782,
4780,
-4780,
4779,
-4780,
-4779,
-4778,
4777,
-4778,
-4777,
11916
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "23027"
},
"arcs": [
[
11917,
11918,
11919,
11920,
11921,
11922,
11923,
11924,
11925,
11926,
11927,
11928,
-11918
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "24027"
},
"arcs": [
[
-7847,
7845,
7845,
7845,
7845,
-7845,
-6521,
-6520,
6519,
-6520,
-6519,
6517,
6517,
6517,
-6517,
6515,
-9404,
9403,
-9404,
-9403,
9401,
-11701,
-11700,
11929,
11930,
11931,
-11932,
11931,
-11932,
11931,
11932,
11933,
-11934,
11933,
11934,
-9554
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49035"
},
"arcs": [
[
-5848,
-8063,
11935,
11936,
11937,
11938,
11939,
11940,
-11941,
11940,
11941,
11942,
11942,
11943,
11944,
11945,
11946,
11947
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants_patriots",
"team_color": "blue_red",
"GEOID": "09003"
},
"arcs": [
[
-9031,
-10766,
-6623,
-6622,
-927,
-10166,
10164,
-10164,
-10163,
10162,
11948,
11949,
11950
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants_patriots",
"team_color": "blue_red",
"GEOID": "09015"
},
"arcs": [
[
-5424,
11951,
11952,
-6617,
-6616,
-10765,
10763,
10763,
-10763,
10762,
-10763,
-10762
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "dolphins",
"team_color": "#9FE5FA",
"GEOID": "12087"
},
"arcs": [
[
[
11953
]
],
[
[
11954,
-3969,
3967,
-3967,
3965,
-3966,
3965,
-3963,
3962,
-3966,
3965,
-3966,
-3965,
-3964,
-3963,
-3962,
-3961,
3959,
-3960,
-3959,
3958,
-3959,
3956,
-3957,
3956,
3957,
-3958,
-3957,
-3956,
3954,
-3955,
3954,
-3955,
-3954,
3952,
-3953,
-3952,
11955
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39157"
},
"arcs": [
[
-11572,
11956,
-7985,
-6627,
11957,
11958
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jets_giants",
"team_color": "green_blue",
"GEOID": "36085"
},
"arcs": [
[
-4875,
11561,
-11561,
11959,
11960,
11961,
11962,
-9477
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "39071"
},
"arcs": [
[
-595,
11963,
11964,
-11965,
11964,
11965,
-5902,
-6558,
-5380,
11966
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27077"
},
"arcs": [
[
11967,
-6146,
6145,
-6146,
-6145,
-8559,
11968,
11969,
-11970,
11969,
-11970,
11969,
11970
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16011"
},
"arcs": [
[
11971,
11972,
11973,
-11974,
11973,
11974,
-11975,
11974,
11975,
-5999,
5998,
-5999,
-5998,
-6218,
-8641,
-670,
-4703
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45045"
},
"arcs": [
[
11976,
11977,
-11978,
11977,
-11978,
11977,
11978,
11979,
11980,
-11981,
11980,
11981,
11982,
11983,
11984,
-11985,
11985,
11986,
11987,
11987,
11988,
11989,
9005,
-9020,
-9019,
9018,
-9869,
9867,
-9867,
9865,
9865,
-9865,
9863,
9863,
-9863,
9861,
-9861,
-9860,
-10317,
10315,
-10315,
10313,
-10313,
-10312,
10311,
-10312,
10307,
-10308,
-10311,
-10310,
10309,
-10310,
-10309,
-10308,
-10307,
10305,
10305,
-10305
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46085"
},
"arcs": [
[
11990,
11991,
11992,
-5667,
5665,
-5665,
5663,
11993,
11994,
11995,
-11996,
11995,
11996,
11997,
-11998,
11998,
11999,
12000,
-12001,
12000,
12001,
-12002,
12001,
12002,
12003,
12004,
-12005,
12004,
12005,
12006,
12007,
12008,
-12009,
12008,
12009,
12010,
12011,
12012,
12013,
12014,
12015,
12016
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "55121"
},
"arcs": [
[
-11260,
-1833,
-1612,
1610,
-1610,
1608,
-1608,
-8268,
12017,
12018,
12019
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06113"
},
"arcs": [
[
12020,
12021,
12022,
12023,
12024,
12025,
12025,
12026,
12027,
-12028,
12028,
12029,
-12030,
12029,
12030,
-12031,
12030,
12031,
-3488,
3486,
-3486,
-9618,
9616,
-9616,
9614,
-9614,
-7219,
-7218,
7217,
-7218,
-7217,
-7216,
7215,
-7216,
-7215,
7213,
-7214,
-7213
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48431"
},
"arcs": [
[
12032,
12033,
12034,
12035,
12036,
-5189
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48495"
},
"arcs": [
[
12037,
12038,
-8911,
12039,
12040
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "46071"
},
"arcs": [
[
-9496,
12041,
12042,
-12043,
12042,
-12043,
12043,
12044,
-12045,
12044,
-12045,
12044,
12045,
12046,
-12047,
12046,
12047,
12048,
12049,
12050,
12051,
12052,
-12053,
12052,
12053,
12054,
-12055,
12054,
12055
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49041"
},
"arcs": [
[
12056,
12057,
12058,
12059,
12060,
-8053
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51036"
},
"arcs": [
[
12061,
-10108,
10106,
-10107,
-10106,
-10884,
-10883,
10882,
-10883,
10882,
-10883,
10882,
-10883,
10882,
-10883,
10882,
-10883,
-10882,
-10881,
10880,
-10881,
-10880,
10878,
10878,
-10878,
-10877,
10876,
-10877,
-414,
412,
-413,
-412,
-986,
-985,
12062,
12063,
12064,
12065
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01023"
},
"arcs": [
[
12066,
-9709,
318,
319,
-319,
-318,
316,
-316,
-315,
314,
-315,
12067,
12068,
12069,
12070,
12071,
-9955
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18083"
},
"arcs": [
[
-4198,
-4197,
4196,
-4197,
12072,
-9250,
-9249,
9248,
12073,
12074,
-12075,
12074,
12075,
12076,
12077,
-12078,
12077,
-12078,
12077,
12078,
12079,
12080,
12081,
-12082,
12081,
12082,
-12083,
12082,
12083,
12084,
-12085,
12084,
12085,
12086,
12087,
12088,
12089,
12090,
12091,
12092,
12093,
12094,
-6299,
-6298,
6296,
-6296,
6294,
-6294,
1360,
-1361,
-1360,
12095,
12096,
12097,
12098
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31047"
},
"arcs": [
[
-7036,
12099,
-421,
-11676,
12100,
12101
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20057"
},
"arcs": [
[
12102,
12103,
12104,
12105,
12106,
12107
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "38105"
},
"arcs": [
[
-9945,
-2805,
12108,
12109,
12110,
12111,
12112,
12113,
12114,
12115,
12116,
12117,
12118,
-12119,
12119,
12120,
12121
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38017"
},
"arcs": [
[
-9339,
-8513,
-7828,
7827,
-7828,
-7827,
7826,
-7827,
-7826,
-6438,
-6437,
6436,
-6437,
-6436,
-6435,
6434,
-6435,
-6434,
6432,
-6433,
-6432,
-6431,
6429,
6429,
-6429,
6427,
-6427,
6425,
-6425,
6423,
12122,
12123,
-4645
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "17069"
},
"arcs": [
[
12124,
-6404,
12125,
-3570,
-3569,
12126,
-2832
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "31005"
},
"arcs": [
[
12127,
-11193,
-417,
12128
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48163"
},
"arcs": [
[
12129,
12130,
-1465,
-3004,
-10265
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "19103"
},
"arcs": [
[
-8853,
-1869,
12131,
12132,
12133,
12134,
-12135,
12134,
12135,
12136
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20133"
},
"arcs": [
[
12137,
12138,
-7973,
12139,
-7705
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21089"
},
"arcs": [
[
-3247,
3245,
-3245,
-3244,
-6546,
-6545,
12140,
12141,
12142,
12143,
-12144,
12143,
12144,
12145,
-12146,
12145,
12146,
12147,
-12148,
12148,
-3248
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20107"
},
"arcs": [
[
-11418,
12149,
12150,
12151,
12152
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49017"
},
"arcs": [
[
12153,
12154,
12155,
12156,
12157,
12158,
12159,
12160,
12161,
12162,
-10575,
10573,
-10573,
12163,
12164,
12165
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "32011"
},
"arcs": [
[
12166,
9289,
-9301,
-9300,
9299,
-9300,
-9299,
9297,
-9297,
9295,
-9295,
-7113,
12167
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31085"
},
"arcs": [
[
12168,
12169,
12170,
-5932,
12171
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08095"
},
"arcs": [
[
12172,
12173,
12174,
12175,
-1115
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05013"
},
"arcs": [
[
12176,
12177,
12178,
12179,
12180,
-12181,
12180,
12181,
12182,
-12183,
12182,
12183,
12184,
12185,
12186,
12187,
-10022,
-10021,
10019,
-10019,
-10018,
10017,
-10018,
-10017,
-10016,
10015,
-10016,
10014,
10014,
10014,
10014,
-10014
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21101"
},
"arcs": [
[
-2573,
-2572,
-2571,
-10634,
-10633,
10632,
-10633,
-10632,
10630,
-10630,
12188,
12189,
12190,
12191,
-12192,
12191,
12192,
12193,
12194,
-4122,
12195,
-4120,
4118,
-4118,
-9345,
9343,
-9343,
9341,
-9341,
2572
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28051"
},
"arcs": [
[
12196,
-12197,
12196,
12197,
12198,
12199,
12200,
12201,
-12202,
12201,
12202,
12203,
-5045,
12204,
12205,
12205,
12206,
12207,
-12208,
12207,
-12208,
12207,
-12208,
12207,
12208,
12209,
-12210,
12209,
12210,
12211,
12212,
12213,
-12214,
12214,
12215,
12216,
12217,
12218,
12219,
12220,
12221,
-12222,
12222,
12221,
12223
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28105"
},
"arcs": [
[
12224,
12225,
12226,
12227,
12227,
12228,
-4442,
12229,
12230,
-6375
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30027"
},
"arcs": [
[
-1911,
-1910,
1909,
-1910,
-1909,
-1908,
1907,
-1908,
-1907,
1906,
-1907,
-1906,
1905,
-1906,
-1905,
1903,
-1903,
1902,
-1903,
-1902,
1901,
-1902,
-1900,
1899,
1900,
-1901,
-1900,
-1899,
-1898,
1897,
-1898,
1897,
-1898,
-1897,
1895,
-1896,
-1895,
-1894,
1893,
-1894,
-1893,
1891,
-1891,
-1890,
1889,
12231,
12232,
12233,
12234,
12235,
12236,
-12237,
12237,
12238,
12239,
12240,
12241,
-12242,
12241,
12242,
12243,
12244,
12245,
12246,
12247,
-12248,
12248,
-1117,
12249,
12250,
12251
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "24023"
},
"arcs": [
[
12252,
12253,
-1801,
7479,
-7479,
7477,
-7477,
-7476,
7475,
-7476,
-7475,
12254,
12255,
-12256,
12255,
-12256,
12255,
12256,
-8419
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22119"
},
"arcs": [
[
-9609,
-9915,
-9914,
9913,
-9914,
-9913,
9912,
-9913,
-9912,
9911,
-9912,
12257,
12258
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26059"
},
"arcs": [
[
12259,
-6895,
12260,
-4299,
12261,
-576,
12262
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21141"
},
"arcs": [
[
-3877,
-3876,
12263,
12264,
12265,
12266,
12267
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "46033"
},
"arcs": [
[
12268,
12269,
12270,
12271,
-12272,
12271,
12272,
12273,
12274,
-12275,
12274,
12275,
12276
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "33013"
},
"arcs": [
[
-4101,
4099,
-4100,
-4099,
4098,
-4099,
12277,
12278,
12279,
12280,
12281,
-12282,
12282,
12283,
-12284,
12283,
12284,
12285,
12286,
7294,
-7295,
-7294
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "42133"
},
"arcs": [
[
12287,
12288,
12289,
-12290,
12289,
12290,
12291,
12291,
-1144,
-1143,
12292,
12293,
-12294,
12293,
12294,
12295,
-6506,
-7844,
12296,
-12288
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37161"
},
"arcs": [
[
12297,
12298,
-12299,
12298,
12299,
12300,
12301,
12302,
12303,
12304,
9537,
-9547,
9545,
12305,
12306,
12307,
12308,
-12309,
12308,
12309
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46005"
},
"arcs": [
[
12310,
-3911,
-7412,
12311,
-4350,
12312
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01043"
},
"arcs": [
[
-7450,
-8124,
-8123,
8122,
-8123,
-8122,
-8121,
8120,
-8121,
-8120,
-8119,
8118,
-8119,
8117,
-8117,
-8116,
8115,
-8116,
-8115,
-8114,
8113,
-8114,
-8113,
-8112,
8111,
-8112,
12313,
-9713,
12314
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13097"
},
"arcs": [
[
-5377,
12315,
12316,
-2493
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31097"
},
"arcs": [
[
-5626,
-6866,
12317,
-11860
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37187"
},
"arcs": [
[
12318,
12319,
12320,
12321,
12322,
12323,
12324,
-4947
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "46075"
},
"arcs": [
[
12325,
-12016,
-12015,
12014,
12326,
12327,
12328,
12329,
-12330,
12329,
12330,
12331,
12332,
-12333,
12332,
12333,
12334,
12335,
12336,
12336,
12336,
12337,
12338,
12339,
-12340,
12339,
12340,
12341,
-12342,
12341,
12342,
12343,
-12344,
12343,
12344,
-12345,
12344,
12345,
-12346,
12346,
-12043,
12347,
-12348,
12042,
-12043,
-12042,
-9495
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37007"
},
"arcs": [
[
12348,
12349,
12350,
12351,
12352,
12353,
12354,
5597,
-5618,
5616,
-5616,
5614,
-5614,
12355,
12356,
12357,
12358
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38007"
},
"arcs": [
[
12359,
12360,
-7075,
-9666,
12361
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31003"
},
"arcs": [
[
12362,
-10170,
-10988,
-10926,
12363,
-1598
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29073"
},
"arcs": [
[
12364,
-9352,
12365,
12366,
-3186,
-11755,
-8320,
-8319,
8318,
-8319
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21031"
},
"arcs": [
[
12367,
12368,
-1638,
-1637,
12369,
12370,
12371,
-12372,
-12371,
12370,
12372,
12373,
12374,
-12264,
3875,
-3876,
-3875,
-3874,
3873,
-3874,
-3872,
3871,
3872,
-3872,
-3871,
-3870,
3868,
12375,
12376,
-12377,
12377,
12378,
-12368
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56005"
},
"arcs": [
[
12379,
12380,
-9023,
12381,
-7415,
12382
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13211"
},
"arcs": [
[
12383,
-12384,
12383,
12384,
12385,
12386,
12387,
12388,
-12389,
12388,
12389,
12390,
10238,
-10239,
-10238,
-10237,
12391,
-4149,
-4148,
4146
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "05107"
},
"arcs": [
[
-11017,
12392,
-5351,
5349,
-5349,
-5348,
12393,
12394,
12395,
12396,
12397,
12398,
12399,
12400,
12401,
12402,
-12403,
12403,
12404,
-12405,
12405,
12406,
3197,
-3198,
-3197,
-3196,
3195,
-3196,
-3195,
-11018
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22093"
},
"arcs": [
[
12407,
12408,
12409,
12410,
12411,
12412,
12413
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06115"
},
"arcs": [
[
12414,
12415,
12416,
12416,
12417,
12418,
12419,
12420,
12421,
12422,
51,
-52,
-51,
49,
49,
12423,
12424,
-12425,
12424,
12425,
-5551,
5549,
-5549,
12426,
12427,
-12428,
12427,
12428,
12429,
12430,
12431,
-12432,
12431,
12432,
12433,
-12434,
12433,
12434,
12435
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01117"
},
"arcs": [
[
12436,
12437,
-12438,
12437,
12438,
-12439,
12438,
12439,
11873,
-11874,
-11873,
-9785,
9783,
-9783,
-9085,
12440,
12441,
-12442,
12442
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08091"
},
"arcs": [
[
12443,
12444,
12445,
-12446,
12445,
12446,
-2472,
-6362,
-6322
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "35009"
},
"arcs": [
[
12447,
-9426,
12448,
12449
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40149"
},
"arcs": [
[
12450,
-5157,
-5156,
5155,
-5156,
5155,
-10831,
12451
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37135"
},
"arcs": [
[
-10835,
-3086,
-2810,
-193,
-636
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "18131"
},
"arcs": [
[
12452,
-8226,
-5991,
12453,
-547
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26019"
},
"arcs": [
[
-9418,
12454,
-978,
12455,
12456
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bills",
"team_color": "#5486C1",
"GEOID": "36029"
},
"arcs": [
[
12457,
12458,
12459,
12460,
12461,
12461,
12462,
12463,
-12464,
12463,
-12464,
12464,
12465,
12466,
12467,
-12468,
12467,
12468,
12469,
-12470,
12469,
-12470,
12469,
12470,
12471,
-12472,
12471,
12472,
12473,
-12474,
12473,
12474,
12475,
-12476,
12475,
12476,
12477,
12478,
12479,
12480,
-12481,
12480,
12481,
12482
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "24031"
},
"arcs": [
[
9553,
-11935,
-11934,
11933,
-11934,
-11933,
-11932,
11931,
-11932,
11931,
-11932,
11930,
-11930,
11699,
-11700,
-11699,
6318,
-6319,
-6318,
6316,
-6316,
12483,
12484,
12485,
-12486,
12485,
12486,
12487,
12488,
12488,
12488,
12489,
-9555,
-9554
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51685"
},
"arcs": [
[
11604,
-11605,
11603,
-11604,
11603,
-11604
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51013"
},
"arcs": [
[
-6315,
2869,
-2870,
-2869,
2867,
12490,
-6974,
12491,
-12484
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "51035"
},
"arcs": [
[
12492,
3507,
-3508,
-3507,
3505,
-7932,
-7931,
7930,
-7931,
-7930,
12493,
-10976,
-10975,
-10973,
12494,
10971,
-10972,
10971,
-10972,
10971,
-10972,
-10971,
-11214
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "29183"
},
"arcs": [
[
12495,
12496,
12497,
-12498,
12498,
12499,
-12500,
12499,
-12500,
12499,
12500,
12501,
2299,
-2300,
-2299,
12502,
12503,
-9348,
-9347,
12504
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06069"
},
"arcs": [
[
12505,
12506,
12507,
12508,
12509,
-7748,
7746,
-7746,
-7745,
7744,
-7745,
-7744,
-7743,
7742,
-7743,
-7742,
-7741,
7740,
-7741,
7740,
-7741,
-7740,
7738,
7738,
-7738,
7736,
7736,
-7736,
7734,
-7734
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "ravens",
"team_color": "#AA54C1",
"GEOID": "24035"
},
"arcs": [
[
12510,
12511,
12512,
12513,
-12514,
12513,
12514,
12515,
-12516,
12515,
12516,
12517,
-12518,
12517,
12518,
12519,
12520,
-9395,
12521,
12522,
12522,
12523,
12524,
12525
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20013"
},
"arcs": [
[
12526,
756,
-772,
-8904,
12527,
12528
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13031"
},
"arcs": [
[
12529,
12530,
-4072,
4071,
-4072,
-4071,
-4070,
4069,
-4070,
-4069,
-4068,
4067,
-4068,
12531,
12532,
-12533,
12532,
-12533,
12532,
12533,
12534,
-12535,
12534,
12535,
12536,
-12537,
12536,
12537,
12538,
12539,
12540,
-8845
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21071"
},
"arcs": [
[
12541,
12542,
12543,
-7864,
-7863,
7861,
12544,
3633,
-3634,
-3633,
-3632,
3631,
-3632,
3631,
-3632,
-3631,
3629,
3629,
-3629,
3627,
3626,
-3626,
12545,
-12546,
12545,
12546
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30007"
},
"arcs": [
[
-2162,
-2161,
2160,
-2161,
-2160,
2158,
2158,
-2158,
2156,
-2156,
-7666,
7664,
-7664,
7663,
-7664,
-7663,
7661,
-7661,
-7660,
7659,
12547,
-2900
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13309"
},
"arcs": [
[
-11423,
-11422,
11420,
12548,
-8536,
12549,
12550,
12551,
12552,
12553,
-12554,
12553,
12554,
12555,
12556,
-12557,
12556,
12557,
12558,
-12559
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37049"
},
"arcs": [
[
-10944,
-10943,
10942,
12559,
-4954,
-10676,
-6877,
12560,
12561,
12562,
12563,
-12564,
12563,
12564
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29087"
},
"arcs": [
[
-4796,
-4795,
12565,
-8314,
8313,
-8314,
-8313,
8311,
-8311,
-8310,
8309,
-8310,
-8309,
758,
-759,
-758,
-757,
12566,
4795
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48295"
},
"arcs": [
[
12567,
-7189,
-5274,
12568
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41009"
},
"arcs": [
[
10,
-11,
-10,
12569,
12570,
-3436,
12571,
-1837,
-11
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "45041"
},
"arcs": [
[
12572,
12573,
12574,
12575,
-12576,
12575,
12576,
12577,
-12578,
12577,
12578,
-4383,
4381,
-4382,
-4381,
4379,
4379,
-4379,
-4378,
4377,
-4378,
-4377,
-4376,
4375,
-4376,
12579,
12580,
12581,
-12582,
12581,
12582,
-7677,
-7676,
7674,
-7674
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38061"
},
"arcs": [
[
-2804,
2802,
-2802,
-2801,
2800,
-2801,
2800,
-2801,
2800,
-2801,
-2800,
2798,
2798,
-2798,
-5402,
-5401,
5400,
-5401,
-5400,
12583,
12584,
12585,
12586,
12587,
12588,
12589,
12590,
12591,
-12109
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "49053"
},
"arcs": [
[
12592,
-10597,
12593,
12594
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30003"
},
"arcs": [
[
12595,
-2251,
12596,
12597,
-5300,
12598,
12599,
12600,
12601,
-12602,
12601,
12602,
12603,
12604,
12605,
-12606,
12606,
12607,
-12608,
12608,
12609
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42047"
},
"arcs": [
[
12610,
-5630,
-4736,
-3713,
3711,
-3711,
3709,
-3709,
497,
-498,
-497,
495,
-495
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "31165"
},
"arcs": [
[
12611,
12612,
-7927,
-10504,
-4613,
12613
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28031"
},
"arcs": [
[
12614,
-9717,
-4492,
12615,
12616,
-12617,
12616,
12617,
-12618,
12617,
-12618,
12617,
12618,
-10066,
12619
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18013"
},
"arcs": [
[
12620,
-9767,
-5374,
12621,
12622
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18019"
},
"arcs": [
[
-4456,
-10900,
10898,
12623,
12624,
12625,
12626,
12627,
12628,
-12629,
12628,
-11100,
11098,
-11098,
12629
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bengals",
"team_color": "#FA8B54",
"GEOID": "21021"
},
"arcs": [
[
12630,
12631,
-12632,
12631,
-12632,
12632,
12633,
-12634,
12633,
12634,
12635,
12636,
12637,
12638,
12639,
12640,
12641,
12642,
12643
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48087"
},
"arcs": [
[
12644,
12645,
-9978,
12646,
12647,
12648
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "texans",
"team_color": "#FA5454",
"GEOID": "48089"
},
"arcs": [
[
-5005,
12649,
12650,
-12651,
12650,
12651,
12652,
12653,
12654,
12655,
12656,
-12657,
12656,
12657,
-7602,
-7601,
-7600,
-11712,
12658,
12659,
12660
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17063"
},
"arcs": [
[
12661,
-10209,
-11365,
12662,
-6310
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27081"
},
"arcs": [
[
-2996,
12663,
-9140,
12664,
12665
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13109"
},
"arcs": [
[
-8846,
-12541,
12666,
12667,
-12668,
12667,
12668,
12669,
12670,
12671
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48497"
},
"arcs": [
[
12672,
12673,
-11697,
-4633,
-7172,
12674
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13307"
},
"arcs": [
[
-10226,
-9852,
-1033,
-1032,
12675,
12676
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13169"
},
"arcs": [
[
-10242,
-10241,
12677,
12678,
-6587,
-6597,
-11731,
12679,
12680,
10241
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13135"
},
"arcs": [
[
12681,
8521,
-8522,
-8521,
-4704,
4703,
-4710,
-4141,
12682,
-1876,
-1875,
-1884,
12683,
-12684,
12683,
12684
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "55095"
},
"arcs": [
[
12685,
12686,
12687,
12688,
-7871
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55045"
},
"arcs": [
[
12689,
12690,
-10303,
12691,
-9899,
-8409
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jets_giants",
"team_color": "green_blue",
"GEOID": "36079"
},
"arcs": [
[
12692,
-10120,
12693,
-5470,
-5469
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51700"
},
"arcs": [
[
-408,
-407,
-406,
405,
12694,
12695,
12696,
12697,
12698,
12699,
-9169,
-9168
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08011"
},
"arcs": [
[
-4466,
12700,
12701,
-11806,
12702
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40065"
},
"arcs": [
[
-10829,
-10828,
10827,
-10828,
-10827,
12703,
-12704,
12703,
12704,
12705,
12706,
-12707,
12706,
12707,
12708,
12709,
12710,
12711,
12712,
-12713,
12712,
12713,
12714,
-12715,
12714,
12715,
12716,
-12717,
12717,
-12718,
12717,
12718,
-12711,
12719,
12720,
12721,
12722,
12723,
12724,
12725,
-9980,
-7187
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30089"
},
"arcs": [
[
12726,
12727,
12728,
12729,
12730,
-11901,
-11900,
11899,
12731,
12732,
12733,
12734,
12735,
12736,
-12737,
12736,
12737,
-10456,
12738,
12739,
-12740,
12739,
12740,
12741,
12742,
-12742,
12741,
-12742,
12741,
12743,
12744,
12745,
12746,
12747,
-12748,
12747,
12748,
12749,
-12750,
12749,
12750,
12751,
12752,
12753,
12754,
-12755,
12754,
12755,
12756,
12756,
12757,
12758,
12759
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48173"
},
"arcs": [
[
-8751,
12760,
-12033,
-5188,
-10413
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05047"
},
"arcs": [
[
12761,
-5228,
-2399,
-2413,
2411,
-2411,
2409,
-2409,
-2408,
2407,
12762,
12763,
12764,
-12765,
12764,
12765,
12766
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40093"
},
"arcs": [
[
-2929,
12767,
12768,
12769,
-10544,
12770,
12771,
-9428
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47125"
},
"arcs": [
[
12772,
12773,
12774,
12775,
-12776,
12775,
12776,
12777,
12778,
12779,
12780,
-12781,
12780,
12781,
12782,
12782,
12783,
-10931,
-9379
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "53051"
},
"arcs": [
[
12784,
12785,
-11897,
-11905,
-11543,
-11655
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38055"
},
"arcs": [
[
-5399,
-8632,
-8223,
-4965,
12786,
-4506,
4504,
-4504,
-4503,
4502,
-4503,
-4502,
-4501,
12787,
12788,
12789,
-12584
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41027"
},
"arcs": [
[
12790,
12791,
12792,
-1280,
-1279,
-3440,
3438,
12793
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19197"
},
"arcs": [
[
-7070,
12794,
12795,
-2825,
12796
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48419"
},
"arcs": [
[
12797,
12798,
12799,
-12800,
12799,
12800,
12801,
12802,
12803,
12804,
-12805,
12804,
12805,
12806,
12807,
12808,
-12809,
12809,
-5891,
-5890,
5889,
-5890,
-5889,
12810,
-11503,
11501,
-11501,
-11500,
11499,
-11500,
11499,
-11500,
-11499,
11498,
-11499,
-11498,
-6681,
6680,
-6681,
-6680,
-6679,
6678,
-6679,
-6678,
12811
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29055"
},
"arcs": [
[
-12366,
-9351,
-7237,
-6077,
6075,
-6075,
12812,
12813
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "51017"
},
"arcs": [
[
12814,
-371,
-370,
368,
-369,
-368,
12815,
12816,
12817,
-12818,
12817,
-12818,
12817,
12818,
12819,
12820,
-4425,
-4424
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27111"
},
"arcs": [
[
-6422,
-7446,
12821,
-2398,
12822,
12823,
12824
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22075"
},
"arcs": [
[
12825,
-7586,
-7585,
12826,
12827,
12828,
-12829,
12828,
12829
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28115"
},
"arcs": [
[
12830,
-817,
12831,
-4767,
-1192
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22067"
},
"arcs": [
[
12832,
12833,
12834,
-12835,
12834,
12835,
12836,
12837,
12838,
-12839,
12838,
12839,
-9670,
-9688,
-9687,
9686,
-9687,
-9686,
9684,
-9684,
9682,
-9683,
-9682,
9681,
9682,
12840,
12841,
12841,
12842,
12843,
12844,
-12845,
12845,
12846,
12847,
-12848,
450,
-451,
-450,
449,
-450,
-449
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21029"
},
"arcs": [
[
12848,
12849,
12850,
12851,
12852,
-12853,
12852,
12853,
12854,
12855,
12856,
12857,
12858,
-11886,
12859,
12860,
-12849
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01047"
},
"arcs": [
[
2664,
12861,
11409,
-11416,
-11415,
11414,
-11415,
-11414,
-8841,
-8839,
-8838,
8836,
-8836,
-5917,
-5916,
5915,
-5916,
-5915,
5913,
5913,
-5913,
-312,
-2668,
-2667,
2666,
-2667,
-2666,
-2665
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48093"
},
"arcs": [
[
-6570,
12862,
5741,
-5742,
-5741,
12863,
-3114
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30053"
},
"arcs": [
[
-10457,
-12738,
-12737,
12736,
-12737,
-12736,
12734,
-12734,
12732,
-12732,
-11900,
-11899,
12864,
12865
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27021"
},
"arcs": [
[
-8561,
-9745,
9743,
-9743,
9741,
9741,
9741,
-9741,
9739,
-9739,
9737,
-9737,
-3055,
12866,
12867,
-12868,
12868,
-2392,
12869,
12870,
-12871,
12871,
12872,
-12873,
12873,
-3450
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08007"
},
"arcs": [
[
12874,
-2165,
12875,
-10993,
12876,
12877,
-12878,
12878
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28163"
},
"arcs": [
[
12879,
12880,
-12881,
12880,
12881,
12882,
-12883,
12882,
12883,
12884,
12884,
12885,
-12886,
12885,
12886,
-12887,
12886,
12887,
12888,
-12889,
12888,
-12889,
12888,
12889,
12890,
12891,
-8270,
3119,
-3120,
-3119,
-9212,
9210,
-9210,
-9209,
9207,
-9208,
-9207,
12892,
-12217,
12215,
-12215,
12213
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55087"
},
"arcs": [
[
12893,
12894,
12895,
12896,
-8428
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29107"
},
"arcs": [
[
-8823,
-8822,
12897,
12898,
12899,
12900,
12901,
12902,
-12903,
12903,
9285,
-9285,
-9284,
12904,
-1605,
1603,
12905,
8822
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37195"
},
"arcs": [
[
12906,
12907,
12908,
12909,
12910,
12911,
-12912,
12912,
12913,
12914,
-12907
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39117"
},
"arcs": [
[
-7284,
12915,
-9831,
9829,
-9829,
12916,
-6607
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "30039"
},
"arcs": [
[
12917,
12918,
12919,
12919,
12920,
12921,
-12922,
12921,
12922,
12923,
-12924,
12923,
12924,
12925,
12926,
-12927,
12927,
12928,
-12929,
12928,
-12929,
12928,
-12929,
12928,
12929,
12930,
12931,
12932,
-12933,
12933,
12934
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38031"
},
"arcs": [
[
-9613,
12935,
-9536,
12936
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05033"
},
"arcs": [
[
-234,
-11244,
12937,
12766,
-12766,
-12765,
12764,
-12765,
-12764,
12938,
462,
-463,
-462
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48053"
},
"arcs": [
[
12939,
12940,
-2174,
12941,
12942,
12943,
12944,
-12945,
12944,
12945,
12946,
12947,
12948,
12949,
-12950,
12950,
12951,
-12952,
12952
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "29186"
},
"arcs": [
[
12953,
12954,
12955,
12956,
-12957,
12956,
-12957,
12957,
12958,
12959,
12960,
12961,
12962,
12963,
12964,
12965,
12966,
12967
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48179"
},
"arcs": [
[
12968,
-9847,
12969,
12970
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17109"
},
"arcs": [
[
12971,
12972,
-4596,
-9561,
-891
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "19137"
},
"arcs": [
[
12973,
12974,
12975,
12976,
-9825
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05067"
},
"arcs": [
[
2058,
12977,
-9273,
12978,
12979,
12980,
12981,
-2069,
2067,
-2068,
-2067,
2065,
-2066,
-2065,
2063,
-2063,
-2062,
2061,
-2062,
-2061,
2060,
-2061,
-2060,
-2059
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48229"
},
"arcs": [
[
-297,
-296,
295,
12982,
12983,
12984,
-10840,
12985,
12986
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22079"
},
"arcs": [
[
-11916,
-11915,
11914,
-11915,
-11914,
11912,
12987,
12988,
-12989,
12988,
12989,
12990,
-12991,
12990,
12991,
-12991,
12992,
-9925,
9924,
-9925,
-9924,
12993,
12994,
12995,
-12996,
12996,
4785,
-4786,
-4785,
4783
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31111"
},
"arcs": [
[
-419,
-11192,
12997,
-7037,
-12102,
12998,
-12170,
12999
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "48067"
},
"arcs": [
[
-8783,
-8782,
8781,
-8782,
-8781,
8780,
-8781,
-8780,
8779,
-8780,
8779,
-8780,
-8779,
-8778,
8777,
-8778,
8777,
-8778,
-8777,
8775,
-8776,
-8775,
8773,
-8774,
-8773,
8771,
-8771,
-8770,
8769,
-8770,
-2453,
-2452,
13000,
13001,
13002,
13003,
8782
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47079"
},
"arcs": [
[
-10681,
13004,
-9382,
13005,
13006,
13006,
13007,
13008,
-13009,
13008,
-13009,
13008,
13009,
13010,
13010,
13010,
13011,
13012,
-13013,
13012,
-10094,
13013
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51840"
},
"arcs": [
[
13014,
13015
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37061"
},
"arcs": [
[
13016,
13017,
13018,
-10949,
10947,
13019,
13020,
13021,
13022,
-13023,
13022,
-13023,
13022,
13023,
8671,
-8672,
-8671
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "37087"
},
"arcs": [
[
13024,
13025,
13026,
-13027,
13026,
13027,
13028,
13029,
3265,
-3266,
3265,
-3266,
-3265,
3263,
-3263,
13030,
13031,
13032,
13033,
13034,
13035,
13036,
13037,
-13038,
13037,
13038,
-9309,
-9308,
9306,
-9306
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27037"
},
"arcs": [
[
-1520,
-1519,
-9305,
13039,
-6793,
13040,
13041,
-13042,
13041,
13042,
13043,
13044,
13045,
-13046,
13045,
13046,
13047
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41025"
},
"arcs": [
[
13048,
-909,
-8162,
-9476,
-1259,
-8436
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55001"
},
"arcs": [
[
13049,
-9384,
-7724,
13050,
13051,
-116,
13052,
13053,
13054
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29045"
},
"arcs": [
[
-11673,
13055,
13056,
13057,
-895,
13058,
-957,
13059
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21015"
},
"arcs": [
[
13060,
13061,
-7059,
-11105,
-2589,
-2588,
13062,
13063,
13064,
-1101,
1099,
13065
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21229"
},
"arcs": [
[
13066,
13067,
13068,
13069,
-13070,
13069,
13070,
13071,
-13072,
13071,
-13072,
13071,
-13072,
13072,
-12642,
13073,
13074,
13075,
13076,
13077,
13078,
-13079,
13079,
13080,
-13081,
13080,
-13081,
13080,
-13081,
13080,
-13081,
13081,
13082,
13083,
13066,
13066,
13066
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22009"
},
"arcs": [
[
-11913,
-11912,
11910,
13084,
13085,
-13086,
13086,
-13086,
13085,
13087,
13088,
13089,
-13090,
13089,
13090,
13091,
-11848,
-11847,
11845,
-11845,
-11065,
-9926,
-12993,
12990,
12991,
-12991,
12990,
-12991,
-12990,
-12989,
12988,
-12989,
-12988
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28137"
},
"arcs": [
[
13092,
-4771,
13093,
-5344,
-5343,
5342,
-5343,
5342,
-5343,
-5342,
-5341,
5340,
-5341,
-5340,
-5339,
13094,
13095,
13095,
13095,
13095,
13095,
13095,
13096,
13097,
13098,
-13099,
13098,
13099
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29227"
},
"arcs": [
[
-5368,
13100,
13101,
13102,
-3594
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31163"
},
"arcs": [
[
13103,
13104,
-7034,
13105
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46021"
},
"arcs": [
[
-7499,
-10212,
13106,
-7210,
13107
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "46063"
},
"arcs": [
[
13108,
-7150,
7148,
-7148,
7146,
-7146,
7144,
-7144,
-10673,
13109,
13110,
-6287
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26057"
},
"arcs": [
[
13111,
13112,
13113,
-10382,
-4751,
-4750,
13114
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19175"
},
"arcs": [
[
-6724,
-3015,
-6662,
-3592,
13115
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17127"
},
"arcs": [
[
-2835,
2833,
13116,
13117,
-13118,
13117,
-13118,
13118,
13119,
13120,
13121,
13122,
13123
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "31113"
},
"arcs": [
[
-11191,
-1425,
-7038,
-12998
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31121"
},
"arcs": [
[
13124,
13125,
13126,
-13127,
13126,
13127,
13128,
-10216,
-7811,
-7818,
-7817,
13129,
13130,
-13131,
13131,
13132,
-13125
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "31161"
},
"arcs": [
[
13133,
13134,
13135,
-10502,
-7925,
13136
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21039"
},
"arcs": [
[
-10677,
13137,
13138,
13139,
-13140,
13140,
13141,
13141,
13142,
13143,
-13144,
13143,
-13144,
13143,
13144
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "56025"
},
"arcs": [
[
-1068,
-6031,
13145,
-7413,
-9880
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13321"
},
"arcs": [
[
13146,
13147,
13148,
-9598,
-9597,
9596,
-9597,
9596,
-9597,
-9596,
-9604,
9603,
13149,
-7398,
-7402,
13150,
13151,
-11880
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18109"
},
"arcs": [
[
13152,
13153,
-9768,
-12621,
13154,
-10117,
13155
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48139"
},
"arcs": [
[
-8077,
-8076,
8075,
-8076,
-8075,
8072,
8073,
-8074,
8073,
-8074,
-8073,
8072,
-8073,
-8072,
8070,
-8070,
-8069,
8068,
-8069,
8068,
-8069,
-8068,
-8067,
-11256,
-11255,
11254,
13156,
13157,
13158,
13159,
-8136,
-11696,
13160
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13229"
},
"arcs": [
[
13161,
13162,
13163,
-13164,
13163,
13164,
-564,
-563,
561,
-561,
-560,
559,
-560,
558,
-558,
13165,
13166,
13167,
13168
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "18053"
},
"arcs": [
[
13169,
-1408,
-1382,
-3500,
13170,
13171,
13172,
13173,
13174
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "jags",
"team_color": "#54AAC1",
"GEOID": "12035"
},
"arcs": [
[
13175,
-832,
830,
-830,
828,
13176,
-6369,
6367,
6367,
-6367
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28077"
},
"arcs": [
[
13177,
-10069,
-10068,
13178,
-10399,
13179,
-5265,
-5264
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22127"
},
"arcs": [
[
13180,
-4518,
-1636,
-11917,
-4776,
-4775,
13181,
13182,
-13183,
13182,
-13183,
13182,
-13183,
13182,
13183,
-13184,
13183,
13184,
13185,
13185,
13186
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17073"
},
"arcs": [
[
13187,
-3241,
-7175,
13188,
-3813,
-5962,
5960
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "seahawks",
"team_color": "#5486C1",
"GEOID": "41041"
},
"arcs": [
[
-10058,
10056,
-10056,
13189,
-5057,
-10366,
13190
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "23031"
},
"arcs": [
[
13191,
13192,
-13193,
13192,
13193,
13194,
13195,
13196,
-13197,
13196,
13197,
13198,
13198,
13199,
13200,
13201,
-13202,
13202,
13203,
13204,
13205,
-13206,
13205,
13206,
13207,
-13208,
13208
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46029"
},
"arcs": [
[
13209,
13210,
-2993,
13211,
-3906
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13231"
},
"arcs": [
[
-4676,
-6702,
6700,
13212,
13213,
568,
-574
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13259"
},
"arcs": [
[
-6734,
-12677,
13214,
13215,
13216,
13217,
13218,
13219,
13220
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "34025"
},
"arcs": [
[
-11963,
-11962,
13221,
13222,
13223,
13224,
13225,
8600,
-8601,
-8600,
-8599,
13226,
-9480,
-9479,
9478,
-9479,
-9478
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "05021"
},
"arcs": [
[
13227,
13228,
-13229,
13228,
-13229,
13228,
13229,
13230,
-13231,
13230,
13231,
13232,
13232,
13233,
13234,
13235,
13236,
-13237,
13236,
13237,
-13238,
13237,
13238,
13239,
7542,
7543,
-7543,
-7542,
7540,
7540,
-7540,
13240,
-9192
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05045"
},
"arcs": [
[
-5196,
-9500,
13241,
-2073,
-2072,
13242,
13243,
13244,
13245,
13246,
13247,
-13246,
13248,
-8700,
-8708,
8707,
-8708,
13249,
13250,
13251,
13252,
13252,
13253,
13254,
-13255,
13254,
13255,
-13256,
13255,
13256
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40041"
},
"arcs": [
[
13257,
-4732,
-4611,
13258,
-231,
13259,
-6207
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19107"
},
"arcs": [
[
13260,
-2874,
13261,
-10620,
-7308,
13262
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17061"
},
"arcs": [
[
13263,
-8048,
13264,
13265,
-2296,
2294,
-2294,
2292,
-2293,
2291,
2291,
-2291,
-2290,
2289,
13266
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27075"
},
"arcs": [
[
13267,
13268,
-7482,
-7481,
-9373,
13269,
13270,
-13271,
13271
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13285"
},
"arcs": [
[
-10063,
-6696,
-6704,
-4044,
-4905,
13272,
13273,
13274,
13275,
13276
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "raiders_49ers",
"team_color": "red_black",
"GEOID": "06023"
},
"arcs": [
[
13277,
13278,
13279,
8853,
-8888,
-8887,
8886,
-8887,
-8886,
-8885,
8884,
-8885,
-8884,
8882,
-8882,
-8881,
8880,
-8881,
-8880,
8878,
-8878,
-8877,
8876,
-8877,
-8876,
8875,
-8876,
-8875,
8874,
-8875,
-8874,
8872,
-8872,
-8948,
13280
]
]
},
{
"type": "MultiPolygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47043"
},
"arcs": [
[
[
13281,
-13282,
13282
]
],
[
[
-10932,
-12784,
12782,
12782,
13283,
13284,
-13285,
13284,
13285,
-13286,
13286,
13287,
-13288,
13288,
13289,
-5335,
-11198
]
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27003"
},
"arcs": [
[
13290,
-7873,
13291,
13292,
13293,
-6337,
13294
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "46009"
},
"arcs": [
[
-10298,
13295,
13296,
13297,
13298,
13299,
13300,
-904
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47059"
},
"arcs": [
[
-7126,
-9004,
-9156,
-9155,
9153,
-9154,
-9153,
13301,
13302,
3252,
-3253,
-3252,
13303,
13304,
-13305,
13304,
13305,
13306,
13307,
13308,
13309,
-7130,
-7129,
7127,
7127,
-7127
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "51183"
},
"arcs": [
[
13310,
13311,
-13312,
13311,
13312,
13313,
13314,
13315,
13316,
-992,
-991,
990,
-991,
-990
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "18141"
},
"arcs": [
[
13317,
-10959,
-1422,
13318,
-4018,
-7899
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "38067"
},
"arcs": [
[
13319,
13320,
13321,
-13322,
13321,
13322,
13323,
13324,
13325,
-13326,
13325,
13326,
13327,
-13328,
13327,
13328,
-13329,
13328,
13329,
13330,
13331,
13332,
13333,
-1216,
-11830
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "46007"
},
"arcs": [
[
13334,
-12049,
13335,
13336
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22115"
},
"arcs": [
[
13337,
-12996,
-12995,
13338,
13339,
13340,
13341,
13342,
13343,
13344,
13345,
-13346,
13345,
13346,
13347,
13348,
-5897,
13349,
-5895,
13350,
13351
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "23019"
},
"arcs": [
[
13352,
-5022,
5020,
-5020,
13353,
13354,
13355,
13356,
-13357,
13357,
-11924,
11922,
-11922,
11920,
-11920,
13358,
13359,
13360
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "ravens",
"team_color": "#AA54C1",
"GEOID": "24041"
},
"arcs": [
[
13361,
-8571,
-8241,
-9396,
-12521,
12519,
-12519,
-12518,
12517,
-12518,
-12517
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13257"
},
"arcs": [
[
13362,
13363,
-13364,
13363,
13364,
-2084,
13365,
-6576
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "06065"
},
"arcs": [
[
-9950,
13366,
13367,
13368,
-5445,
-5444,
5443,
13369,
13370,
13371
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "05005"
},
"arcs": [
[
-8442,
-2349,
-7725,
-131,
-130,
-5558,
13372,
13373,
-13374,
13373,
13374,
13375,
-13376,
13375,
13376
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28007"
},
"arcs": [
[
-6377,
13377,
13378,
13379,
-12214,
-12213,
12211,
-12211,
-12210,
12209,
-12210,
-12209,
-12208,
12207,
-12208,
12207,
-12208,
12207,
-12208,
-12207,
12205,
12205,
-12205,
-5044,
-5043,
5042,
-5043,
-5042,
-5928
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19169"
},
"arcs": [
[
13380,
13381,
13382,
13383,
13384,
13385
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "20011"
},
"arcs": [
[
-12152,
13386,
13387,
-12138,
-7704
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "redskins",
"team_color": "#C15454",
"GEOID": "51049"
},
"arcs": [
[
-5827,
13388,
-7274,
-6812,
13389,
13390,
13391,
13392,
13393,
13394,
13395,
-5829,
-5828
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "45085"
},
"arcs": [
[
-11791,
-11790,
11789,
13396,
13397,
-13398,
13397,
13398,
13399,
13400,
12581,
-12582,
12581,
-12582,
-12581,
13401,
13402,
13403,
13404,
-13405,
-13404,
13403,
-13404,
13405,
13406,
13407,
-13408,
13407,
13408,
13409,
-13410,
13409,
13410,
13411,
-13412,
13411,
13412,
13413,
-13414,
13413,
13414,
-11792
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54109"
},
"arcs": [
[
-11125,
11123,
-11123,
-3553,
3551,
-3551,
-3550,
3549,
-3550,
3549,
-3550,
3549,
13415,
13416,
-13417,
13416,
13417,
-11632,
-11631,
11629,
-11629,
11627,
-11627,
-10141,
-10140,
10139,
-10140,
10139,
-10140,
10139,
-10140,
-10139,
-10138,
10137,
-10138,
-10137,
10135,
10134,
13418
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chargers",
"team_color": "#9FC8FA",
"GEOID": "06029"
},
"arcs": [
[
-5437,
-5436,
5435,
-5436,
5435,
-5436,
-5435,
-5434,
5433,
-5434,
5433,
-5434,
13419,
13420,
13421,
-9072,
-9071,
-9947,
-4224,
-4223,
4222,
-4223,
-4185,
13422,
13423,
13424
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48097"
},
"arcs": [
[
-2624,
-2623,
13425,
-12673,
13426,
11729,
-11730,
-11729,
-11728,
11727,
-11728,
-11727,
11725,
-11725,
-11723,
11723,
11722,
-11723,
-11722,
11720,
-11720,
2623
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "45075"
},
"arcs": [
[
13427,
13428,
-13429,
13428,
-8934,
-8933,
8931,
-9393,
13429,
13430,
13431,
13432,
13433,
13434,
13435,
-13436,
13435,
13436,
-5705,
-5704,
5703,
-5704,
-5703,
-5636,
5634,
-5634,
5632,
-5632,
-5631,
-6923,
-6922,
6921,
-6922,
6921,
-6922,
-6921,
6920,
-6921,
6919,
-6919,
6918,
-6919,
-6918,
6917,
-6918,
-6917,
-6916,
6915,
-6916,
-6915,
6913,
6913,
-6913,
-6912,
6911,
-6912,
-6911,
6910,
-6911,
6910,
-6911,
6910,
-6911,
-6910,
-6909,
-6908,
6907,
-6908,
6907,
-6908
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55119"
},
"arcs": [
[
13437,
13438,
13439,
13440,
13441,
13442
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27099"
},
"arcs": [
[
-3666,
-4870,
-1473,
-3343,
13443,
-3670
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27101"
},
"arcs": [
[
-9139,
13444,
-5858,
-3054,
13445
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "giants_patriots",
"team_color": "blue_red",
"GEOID": "44007"
},
"arcs": [
[
-5423,
13446,
13447,
-9520,
-9527,
-9526,
9525,
13448,
13449,
-13450,
13450,
13451,
13452,
-13453,
13452,
13453,
-11952
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29161"
},
"arcs": [
[
-12367,
-12814,
13454,
13455,
13456,
-3189,
3187,
-3187
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28117"
},
"arcs": [
[
-4763,
13457,
13458,
-13459,
13458,
-13459,
13459,
13460,
-1190,
-6457
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "21235"
},
"arcs": [
[
13461,
13462,
13462,
13463,
13464,
-13465,
13464,
-13465,
13464,
13465,
13466,
13467,
-13468,
13467,
13468,
13469,
13470,
13471,
-1931,
13472,
13473,
13474,
13475,
13476
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "18149"
},
"arcs": [
[
-13319,
-1421,
-12453,
-546,
-4020,
-4019
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48491"
},
"arcs": [
[
-2173,
13477,
13478,
13479,
13480,
13481,
13482,
13483,
-13484,
13483,
13484,
13485,
-13486,
13485,
13486,
13487,
13488,
13489,
13490,
12942,
-12943,
-12942
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "19131"
},
"arcs": [
[
-3346,
13491,
13492,
-4410,
-4409,
-13444
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13107"
},
"arcs": [
[
-11001,
11489,
-11489,
11487,
-11487,
10194,
-10195,
-10194,
10192,
-10192,
-10191,
10190,
-10191,
-10190,
-10189,
10188,
-10189,
10188,
13493,
-12530,
-8849,
-3023,
-3022,
-8534,
-8533,
-11008,
-11007,
11005,
-11006,
-11005,
-11004,
11003,
-11004,
11002,
-11002
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "22025"
},
"arcs": [
[
-1996,
13494,
13495,
13496,
13497,
13498,
13499,
13500,
13501,
13089,
-13090,
-13089,
-13088,
-13086,
13085,
-13087,
13085,
-13086,
-13085,
-11911,
-11910,
-1634,
13502,
13503,
-13504,
13504,
13505,
-13506,
13505,
13506
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "42025"
},
"arcs": [
[
-11824,
-11823,
11821,
-11821,
13507,
13508,
9529,
-9530,
-9529,
13509,
13510,
13511,
13512,
-13513,
13512,
13513,
13514,
-13515,
13514,
13515,
-11824,
11823
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31133"
},
"arcs": [
[
-12318,
-6865,
13516,
13517,
13518,
-11861
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47171"
},
"arcs": [
[
-9135,
13519,
13520,
13521,
13522,
13523,
-3258,
3256,
-3256,
3254,
-3254,
-3253,
13302,
-13302,
-9152
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "45083"
},
"arcs": [
[
-12307,
13524,
13525,
9009,
-9010,
-9009,
-9008,
9007,
-9008,
-9007,
-9006,
-11990,
13526
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "55073"
},
"arcs": [
[
-13440,
13527,
13528,
-13529,
13528,
-13529,
13528,
13529,
-9795,
13530,
-9383,
13531,
13532
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "32007"
},
"arcs": [
[
13533,
-1261,
13534,
13535,
13536,
-6453,
13537,
-9291,
-9290,
-12167
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "54007"
},
"arcs": [
[
13538,
13539,
-13540,
13539,
13540,
-9416,
13541,
10889,
-10890,
-10889,
13542,
13543,
13544,
13545
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "lions",
"team_color": "#549DFA",
"GEOID": "26165"
},
"arcs": [
[
13546,
13547,
13548,
-6383,
13549
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "48079"
},
"arcs": [
[
13550,
13551,
13552,
13553,
-9770,
13554
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "29085"
},
"arcs": [
[
13555,
-11023,
13556,
13557,
13558
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "29009"
},
"arcs": [
[
-3225,
-6641,
-3428,
13559,
-4609,
4111,
-4112,
-4111
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27123"
},
"arcs": [
[
13560,
-13047,
-13046,
13045,
-13046,
-13045,
-13044,
13043,
13561,
-13293
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "05081"
},
"arcs": [
[
-5989,
5986,
5987,
-5988,
-5987,
5986,
-5987,
-5986,
-5985,
-5984,
5983,
-5984,
-5983,
5981,
5980,
-5981,
-5980,
5978,
-5979,
5978,
-5979,
-5978,
5976,
-5976,
13562,
-13563,
13562,
-13563,
13562,
-13563,
13562,
13563,
-13564,
13564,
13563,
13565,
13566,
13567,
13568,
13569,
2431,
-2432,
-2431,
-2429,
2428,
2429,
-2429,
-2428,
8768,
-8769,
-8768,
-8767,
8762,
-8766,
8765,
-8766,
-8765,
-8761,
-8764,
-8763,
-8762,
8760,
-8761,
-8760,
-8759,
8758,
-8759,
-8758,
8756,
-8756,
-7366,
7365,
-7366,
-7365
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "32019"
},
"arcs": [
[
13570,
884,
869,
-884,
882,
-882,
-4588,
4586,
-9567,
-9230,
-9229,
-9841,
13571,
13572
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "dolphins",
"team_color": "#9FE5FA",
"GEOID": "12071"
},
"arcs": [
[
13573,
-2098,
13574,
13575
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "41033"
},
"arcs": [
[
-11811,
-11810,
11809,
-11810,
-11809,
-3001,
-3000,
13576,
13577,
13578,
13579,
13580,
13581,
-11812
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "saints",
"team_color": "#D5CB54",
"GEOID": "28113"
},
"arcs": [
[
-5266,
13582,
13583,
-505,
13584
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "47031"
},
"arcs": [
[
-2706,
-2705,
13585,
-5678,
-5677,
5676,
-5677,
-5676,
-3444,
-3443,
-3442,
3441,
13586,
-13587,
13586,
13587,
-13588,
13587,
-13588,
13587,
-13588,
13587,
13588,
13589,
13590,
8679,
-8680,
-8679,
-3727,
3725,
-3725
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16059"
},
"arcs": [
[
-10007,
10005,
-10005,
10003,
-10003,
10001,
-10001,
9999,
9999,
-9999,
9997,
9997,
-9997,
9995,
-9995,
-5792,
-5791,
5790,
-5791,
-5790,
-5789,
5788,
-5789,
13591,
13592,
13593,
13594,
-13595,
13594,
13595,
13596,
13597,
13598,
13599,
-13600,
13599,
13600,
13601,
-13602,
13601,
13602,
13603,
13604,
13605,
13606,
13607,
-13608,
13607,
13608,
13609,
13610,
13611,
13611,
13612,
13613,
13614,
13615,
13616,
13617,
-13618,
13617,
13618,
13619,
13620,
-2777,
2776,
-2777,
-2776,
-8640,
-3334,
3332,
-3332,
-3331,
3330,
-3331,
3330,
-3331,
-3330,
-3329,
3328,
-3329,
-3328,
-3327,
3326,
-3327,
3326,
-3327,
-3326,
3324,
-3324,
3322,
-3322,
3320,
-3320,
3318,
-3318,
3316,
-3316
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "colts",
"team_color": "#5490E9",
"GEOID": "21183"
},
"arcs": [
[
-10628,
-10627,
-10475,
13621,
13622,
13623,
13624,
-13623,
13622,
-13623,
13622,
-13623,
13622,
13625,
-13626,
13625,
13626,
12367,
-12379,
-12378,
12376,
-12377,
-12376,
-3869,
3869,
-3870,
3868,
-3869,
-3868,
-3867,
-3866,
3864,
13627
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "chiefs",
"team_color": "#E95454",
"GEOID": "31153"
},
"arcs": [
[
13628,
-13629,
13629,
-9822,
-7408,
13630,
-9971
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13071"
},
"arcs": [
[
-13151,
-7401,
-2734,
2732,
-2732,
-2731,
2730,
-2731,
13631,
13632,
13633,
13634,
13635,
13636
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "vikings",
"team_color": "#85549F",
"GEOID": "27167"
},
"arcs": [
[
-12825,
13637,
13638,
13639,
13640,
-13641,
13640,
13641,
13642,
-13643,
13642,
13643,
13644,
-13645,
13644,
13645,
13646,
-13647,
13646,
13647,
13648,
13648,
13649,
13650,
-13651,
13650,
-13651,
13650,
-13651,
13650,
-13651,
13650,
13651,
13652,
13653,
-13654,
13653,
13654,
13655,
-13656,
13655,
13656,
-13657,
13656,
-13657,
13656,
-6423
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17157"
},
"arcs": [
[
-7948,
-7961,
13657,
13658,
13659,
-13660,
13659,
13660,
13661,
-13662,
13662,
-12964,
12962,
-12962,
12960,
-12960,
-12959,
13663
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "patriots",
"team_color": "#FA5454",
"GEOID": "23011"
},
"arcs": [
[
13664,
13665,
-13666,
13665,
13666,
13667,
13668,
13669,
13670,
13671,
13672,
11917,
-11929,
13673,
-2608,
-1555
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "51173"
},
"arcs": [
[
-2525,
-2524,
13674,
13675,
13676,
13677,
-13678,
13677,
13678,
13679,
13680,
13681,
13682,
-11216,
-11215,
-10967,
10965,
-10965,
-10964,
10963,
13683,
2524
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "35041"
},
"arcs": [
[
13684,
-13552,
13685,
13686,
-18,
13687,
-12449
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "steelers",
"team_color": "#545454",
"GEOID": "42111"
},
"arcs": [
[
13688,
13689,
13690,
13690,
13691,
13692,
-13693,
13692,
13693,
-13694,
13693,
13694,
-10686,
-7967,
-1774,
-12254,
13695,
13696,
13697
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "titans",
"team_color": "#9FC8FA",
"GEOID": "51191"
},
"arcs": [
[
13698,
13699,
13700,
-8990,
-8989,
-11709,
-2531,
-2530,
2528,
-2528,
2526,
2526,
-2526,
-2525,
-13684,
-10964,
-10963,
10962,
-10963,
-10962,
13701,
-8992,
13702,
-13700,
13703,
13704,
-13705,
13705
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "panthers",
"team_color": "#D9D9D9",
"GEOID": "37081"
},
"arcs": [
[
13706,
-638,
-3596,
-932,
-945,
-9837
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "16001"
},
"arcs": [
[
-2055,
13707,
-6490,
-6489,
6487,
13708,
13709,
13710,
13711,
13712
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40039"
},
"arcs": [
[
-10546,
-5151,
-12451,
13713,
13714,
13715
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "browns",
"team_color": "#C17854",
"GEOID": "39101"
},
"arcs": [
[
13716,
-6608,
-12917,
-9828,
13717,
13718
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17149"
},
"arcs": [
[
-1658,
-1657,
13719,
-8051,
8049,
-8049,
-13264,
13720,
-6532,
-6531,
-6530,
-8133,
-8789,
-7287,
1657
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "bears",
"team_color": "#545470",
"GEOID": "17203"
},
"arcs": [
[
13721,
-11366,
-1545,
13722,
13723,
13724
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "13245"
},
"arcs": [
[
1110,
-8946,
8944,
-8944,
-8942,
8942,
8941,
-8942,
-8941,
-8940,
8939,
-8940,
8939,
-8940,
-10183,
10181,
-10181,
-11486,
-110,
-109,
-1112,
-1111
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "falcons",
"team_color": "#545454",
"GEOID": "01107"
},
"arcs": [
[
13725,
-4902,
-5906,
-2765,
2764,
-2765,
-2764,
2763,
-2764,
-2763,
-2762,
2761,
-2762,
2761,
-2762,
-2761,
-2760,
2759,
-2760,
-2759,
2758,
-2759,
2758,
-2759,
2758,
-2759,
-2758,
2756,
2756,
2756,
-2756,
-9708,
13726,
-4440
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "cowboys",
"team_color": "#546D9F",
"GEOID": "40045"
},
"arcs": [
[
13727,
13728,
13729,
-7190,
-12568,
13730,
-2743
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17145"
},
"arcs": [
[
-7960,
13731,
-4821,
4820,
-4821,
4819,
-4819,
4817,
4817,
-4817,
13732,
-13658
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "packers",
"team_color": "#54AD81",
"GEOID": "19075"
},
"arcs": [
[
13733,
-5888,
13734,
13735,
13736
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos",
"team_color": "#FA8B54",
"GEOID": "08107"
},
"arcs": [
[
-4931,
-9879,
13737,
13738,
13739,
13740,
-13741,
13740,
13741,
13742,
-13743,
13742,
13743,
13744,
13744,
13745,
13746,
13747,
-6347,
-8818,
-9463
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "eagles",
"team_color": "#78C154",
"GEOID": "34035"
},
"arcs": [
[
13748,
13749,
13750,
13751,
-13752,
13751,
13752,
4882,
-4883,
-4882,
4880,
-4881,
-4880,
4878,
-9486,
-9485,
9484,
-9485,
-9484,
13753,
13754
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "49ers",
"team_color": "#E95454",
"GEOID": "06011"
},
"arcs": [
[
13755,
13756,
13757,
13758,
-13759,
13758,
13759,
-12022,
13760,
13761,
13762,
-13763,
13762,
13763,
13764,
13765,
13766
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "rams",
"team_color": "#5486C1",
"GEOID": "17087"
},
"arcs": [
[
-2830,
-13124,
13122,
-13122,
13767,
-10198,
-10422
]
]
},
{
"type": "Polygon",
"properties": {
"team_name": "broncos"
View raw

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

View raw

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

View raw

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

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